Skip to content

Commit

Permalink
Update PageWindRose.cpp Fix #102
Browse files Browse the repository at this point in the history
Fix for #102
  • Loading branch information
norbert-walter authored Oct 21, 2024
1 parent 7cf5fb8 commit 078bae6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/obp60task/PageWindRose.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ int16_t lp = 80; // Pointer length
getdisplay().setFont(&DSEG7Classic_BoldItalic20pt7b);
getdisplay().setCursor(295, 65);
if(valid3 == true){
getdisplay().print(abs(value3 * 360 / PI), 0); // Value
getdisplay().print(abs(value3 * 180 / PI), 0); // Value
}
else{
getdisplay().print("---"); // Value
Expand Down Expand Up @@ -409,4 +409,4 @@ PageDescription registerPageWindRose(
true // Show display header on/off
);

#endif
#endif

0 comments on commit 078bae6

Please sign in to comment.