Skip to content

Commit

Permalink
[Thread Tutorial] Update type for temperature
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-potyondy committed Dec 10, 2024
1 parent c93d71d commit 96c90be
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/tutorials/thread_network/08_screen_u8g2/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ static void update_screen(void);

uint8_t global_temperature_setpoint = 0;
uint8_t local_temperature_setpoint = 22;
uint8_t measured_temperature = 0;
int measured_temperature = 0;

static void button_callback(returncode_t ret,
int btn_num,
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion examples/tutorials/thread_network/09_screen_final/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ static void update_screen(void);

uint8_t global_temperature_setpoint = 0;
uint8_t local_temperature_setpoint = 22;
uint8_t measured_temperature = 0;
int measured_temperature = 0;

bool callback_event = false;

Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion examples/tutorials/thread_network/10_screen_ipc/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ static void update_screen(void);

uint8_t global_temperature_setpoint = 0;
uint8_t local_temperature_setpoint = 22;
uint8_t measured_temperature = 0;
int measured_temperature = 0;

uint8_t prior_global_temperature_setpoint = 255;
uint8_t prior_local_temperature_setpoint = 255;
Expand Down

0 comments on commit 96c90be

Please sign in to comment.