Skip to content

Commit

Permalink
V 4.42
Browse files Browse the repository at this point in the history
  • Loading branch information
InnuendoPi committed Feb 28, 2023
1 parent 2dc1640 commit c604cf0
Show file tree
Hide file tree
Showing 9 changed files with 137 additions and 132 deletions.
1 change: 0 additions & 1 deletion 0_SETUP.ino
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
void setup()
{
Serial.begin(115200);

// Serial.begin(9600);
// Debug Ausgaben prüfen
#ifdef DEBUG_ESP_PORT
Expand Down
12 changes: 9 additions & 3 deletions MQTTDevice4.ino
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,16 @@ extern "C"
#include "user_interface.h"
}

// #ifdef DEBUG_ESP_PORT
// #define DEBUG_MSG(...) \
// DEBUG_ESP_PORT.printf("%s ", timeClient.getFormattedTime().c_str()); \
// DEBUG_ESP_PORT.printf(__VA_ARGS__)
// #else
// #define DEBUG_MSG(...)
// #endif

#ifdef DEBUG_ESP_PORT
#define DEBUG_MSG(...) \
DEBUG_ESP_PORT.printf("%s ", timeClient.getFormattedTime().c_str()); \
DEBUG_ESP_PORT.printf(__VA_ARGS__)
#define DEBUG_MSG(...) DEBUG_ESP_PORT.printf( __VA_ARGS__ )
#else
#define DEBUG_MSG(...)
#endif
Expand Down
2 changes: 1 addition & 1 deletion NextionX2.h
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ void NextionComPort::dbgLoop()
}
else if ((length == 2) && (inputString[0] == 0x66)) // 0x66 preinit page event
{
debugSerial->write(" currentPageID ");
debugSerial->write("CurrentPageID ");
debugSerial->println(inputString[1], DEC);
}
}
Expand Down
Binary file modified build/MQTTDevice4.ino.bin
Binary file not shown.
Binary file modified build/MQTTDevice4.mklittlefs.bin
Binary file not shown.
254 changes: 127 additions & 127 deletions index_htm.h

Large diffs are not rendered by default.

Binary file modified tools/Firmware.zip
Binary file not shown.
Binary file modified tools/MQTTDevice4.ino.bin
Binary file not shown.
Binary file modified tools/MQTTDevice4.mklittlefs.bin
Binary file not shown.

0 comments on commit c604cf0

Please sign in to comment.