2025-11-23 18:15:56 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
void display_init(void);
|
|
|
|
|
void display_clear(void);
|
2025-12-01 20:18:55 +00:00
|
|
|
void display_raw(int pos, uint16_t mask);
|
|
|
|
|
void display_char(int pos, char c);
|
|
|
|
|
void display_text(const char *txt);
|
|
|
|
|
void display_digit(int pos, uint8_t val);
|
2025-11-23 18:15:56 +00:00
|
|
|
void display_number(int num);
|
2025-12-01 20:18:55 +00:00
|
|
|
void display_set_time(int horas, int minutos);
|