Skip to content

Commit

Permalink
Bump ver
Browse files Browse the repository at this point in the history
  • Loading branch information
htotoo committed May 12, 2024
1 parent 864badf commit 9ac4651
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Source/data/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>

<head>
<title>ESP32PP v0.9.2</title>
<title>ESP32PP v0.9.3</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
Expand Down Expand Up @@ -109,7 +109,7 @@
<body>
<div class="setupicon"><a href="setup.html">&#9881;</a></div>

<h1>ESP32 PP v0.9.2</h1>
<h1>ESP32 PP v0.9.3</h1>
<div id="connState">WS Connecting...</div>
<div id="connStatePP">PP not connected to ESP</div>
<div class="management">
Expand Down
3 changes: 2 additions & 1 deletion Source/main/orientation.c
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ float get_heading()
ESP_LOGI("Orientation_lsm", "Orientation_lsm ERROR");
}
}

ESP_LOGI("Orientation", "%f", ret);
return ret;
}

Expand All @@ -273,6 +273,7 @@ float get_heading_degrees()
float heading = get_heading() * 180 / M_PI + declinationAngle;
if (heading < 0)
heading += 360;
ESP_LOGI("heading", "%f", heading);
return heading;
}

Expand Down

0 comments on commit 9ac4651

Please sign in to comment.