lcd reinit

This commit is contained in:
Siwat Sirichai 2023-11-06 23:24:06 +07:00
parent 92aa347d53
commit fa088db00f
3 changed files with 7 additions and 0 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@
.vscode/c_cpp_properties.json
.vscode/launch.json
.vscode/ipch
.vs/

View File

@ -958,6 +958,11 @@ void trigger13()
ESP.restart();
}
void trigger14() {
Serial.print("page dashboard");
lcd_send_stop_bit();
}
void eeprom_pwm_update()
{
if (memcmp(pwm_states, pwm_states_eeprom, 16))

View File

@ -77,6 +77,7 @@ void trigger10();
void trigger11();
void trigger12();
void trigger13();
void trigger14();
void eeprom_retrieve_init();
void eeprom_pwm_update();