mirror of
https://github.com/lora-aprs/LoRa_APRS_Tracker.git
synced 2026-03-12 16:34:30 +01:00
After some tests, I could only find an incorrect ampere meter. I didn't find any function in the new PMU - so yeah, it's a just "nice to know" for me so I removed it. Maybe someone can program it somehow, but I've tried a lot... And a little QOL Update - i dont need the display to be always on... Push the middle Button (IO38) and the OLED Display will be deactivated or activated. (It was desired with the Issues). And ive added a timezone adapt - so the time is always right (does not include date!).
18 lines
647 B
C
18 lines
647 B
C
|
|
#ifndef DISPLAY_H_
|
|
#define DISPLAY_H_
|
|
|
|
void setup_display();
|
|
void sleep_display();
|
|
void awake_display();
|
|
void display_toggle(bool toggle);
|
|
|
|
void show_display(String header, int wait = 0);
|
|
void show_display(String header, String line1, int wait = 0);
|
|
void show_display(String header, String line1, String line2, int wait = 0);
|
|
void show_display(String header, String line1, String line2, String line3, int wait = 0);
|
|
void show_display(String header, String line1, String line2, String line3, String line4, int wait = 0);
|
|
void show_display(String header, String line1, String line2, String line3, String line4, String line5, int wait = 0);
|
|
|
|
#endif
|