Skip to content

Commit

Permalink
fix: wind speed scale from 10 to 100
Browse files Browse the repository at this point in the history
  • Loading branch information
csouzapaz committed Feb 20, 2025
1 parent 1f9a44c commit 9a32e62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion platformio/stima_v4/master/include/tasks/lcd_task.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
#define TEMPERATURE_SCALE (100.0)
#define TEMPERATURE_OFFSET (27315.0)
#define RAIN_GAUGE_SCALE (10.0)
#define WIND_SPEED_SCALE (10.0)
#define WIND_SPEED_SCALE (100.0)
#define INPUT_VOLTAGE_SCALE (10.0)
#define SOIL_MOISTURE_SCALE (10.0)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ void WindSensorTask::Run() {
TaskState(state, UNUSED_SUB_POSITION, task_flag::normal);

// Start Serial
SerialWindSonic.begin(9600);
SerialWindSonic.begin(GWS_SERIAL_BAUD);

powerOff();

Expand Down

0 comments on commit 9a32e62

Please sign in to comment.