2020-02-07 21:51:17 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
void screen_print(const char * text);
|
2020-02-08 00:12:55 +00:00
|
|
|
|
|
|
|
|
/// @return how many msecs can we sleep before we want service again
|
|
|
|
|
uint32_t screen_loop();
|
|
|
|
|
|
2020-02-08 04:59:21 +00:00
|
|
|
void screen_setup(), screen_on(), screen_off(), screen_press();
|
|
|
|
|
|
|
|
|
|
// Show the bluetooth PIN screen
|
|
|
|
|
void screen_start_bluetooth(uint32_t pin);
|
|
|
|
|
|
|
|
|
|
// restore our regular frame list
|
2020-02-21 12:57:08 +00:00
|
|
|
void screen_set_frames();
|
|
|
|
|
|
|
|
|
|
bool is_screen_on();
|