Skip to content

Commit

Permalink
Restored Debug Output
Browse files Browse the repository at this point in the history
  • Loading branch information
Martinius79 committed Oct 29, 2024
1 parent 086f293 commit c98cd45
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions EleksTubeHAX_pio/src/Mqtt_client_ips.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,10 @@ void checkMqtt() {
}

void callback(char* topic, byte* payload, unsigned int length) { // A new message has been received
#ifdef DEBUG_OUTPUT
Serial.print("Received MQTT topic: ");
Serial.print(topic); // long output
#endif
int commandNumber = 10;
char* command[commandNumber];
commandNumber = splitCommand(topic, command, commandNumber);
Expand Down

0 comments on commit c98cd45

Please sign in to comment.