ow-dash-cube/Core/Src/dashboard.c
2025-09-14 18:00:40 +02:00

27 lines
326 B
C

#include "dashboard.h"
#include "LCD_driver.h"
void run_dashboard_loop() {
init();
while(1) {
}
}
void init() {
LCD_Init();
// draw base
}
void update_values() {
// UART send 0201 04 4084 03
}
void update_values_setup() {
// UART send 0201 2F D58D 03
}
void update_adc() {
// UART send 0201 20 2462 03
}