|
|
@ -1528,7 +1528,7 @@ void rc_controller(void) { |
|
|
|
|
|
|
|
|
// Calculate uptime
|
|
|
// Calculate uptime
|
|
|
int hours = uptime / 3600; |
|
|
int hours = uptime / 3600; |
|
|
int minutes = uptime / 60; |
|
|
|
|
|
|
|
|
int minutes = (uptime / 60) % 60; |
|
|
int seconds = uptime % 60; |
|
|
int seconds = uptime % 60; |
|
|
|
|
|
|
|
|
u8g2_left.setFont(u8g2_font_5x7_tf); |
|
|
u8g2_left.setFont(u8g2_font_5x7_tf); |
|
|
|