v1.2.0 release

This commit is contained in:
Kyle Gabriel
2020-08-20 16:39:13 -04:00
parent 5b67743915
commit 08a9fe4ce0
8 changed files with 48 additions and 94 deletions

View File

@ -73,7 +73,7 @@ void screen_off() {
}
void screen_on() {
if(!display) return;
if (!display) return;
display->displayOn();
}
@ -110,8 +110,7 @@ void screen_print(const char * text) {
}
void screen_update() {
if(display)
display->display();
if (display) display->display();
}
void screen_setup() {
@ -126,7 +125,7 @@ void screen_setup() {
}
void screen_loop() {
if(!display) return;
if (!display) return;
#ifdef T_BEAM_V10
if (axp192_found && pmu_irq) {