oled stuff

This commit is contained in:
2020-11-19 20:03:37 +01:00
parent 5605a3d1d5
commit 33fcf6c080
6 changed files with 61 additions and 3 deletions

View File

@ -39,20 +39,27 @@ void my_setup_2() {
logMsg("Application starting");
oledInit();
oled_P8x16Str(0, 0, "App starting");
oledClear();
oledPrint("App starting");
eepromInit();
oledPrint("eeprom init");
wizInit();
oledPrint("network init");
mqttCommInit();
oledPrint("mqtt init");
cmdHandlerInit();
oledPrint("cmdhandler init");
frontendInit();
frontendSetThreshold(240);
oledPrint("frontend init");
mbusCommInit();
oledPrint("Meterbus init");
oledPrint("App running");
}
void my_loop() {