1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-16 23:33:06 +01:00

Add status infos

This commit is contained in:
Norbert Walter
2022-01-08 19:19:10 +01:00
parent b1bdc6ac7b
commit 1bdb3ebfb9
4 changed files with 114 additions and 54 deletions

View File

@@ -425,7 +425,7 @@ double formatWind(double cv)
{
double rt = formatCourse(cv);
if (rt > 180)
rt = 180 - rt;
rt = (360 - rt) * -1;
return rt;
}
double formatKnots(double cv)