mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-26 17:46:14 +01:00
Minor fix removing misleading message
This commit is contained in:
parent
a33b463c74
commit
d72636b4ec
|
@ -220,7 +220,9 @@ void mqttCallback(char *topic, byte *payload, unsigned int length)
|
|||
}
|
||||
default: // invalid command / message
|
||||
{
|
||||
DIAG(F("MQTT Invalid DCC-EX command: %s"), (char *)payload);
|
||||
// this may be the echo comming back on the main channel to which we are also subscribed
|
||||
// si just ignore for now
|
||||
// DIAG(F("MQTT Invalid DCC-EX command: %s"), (char *)payload);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -404,7 +406,7 @@ bool MQTTInterface::setupNetwork()
|
|||
IPAddress ip = Ethernet.localIP(); // reassign the obtained ip address
|
||||
DIAG(F("IP: %d.%d.%d.%d"), ip[0], ip[1], ip[2], ip[3]);
|
||||
DIAG(F("Port:%d"), IP_PORT);
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
@ -92,7 +92,7 @@ The configuration file for DCC-EX Command Station
|
|||
//
|
||||
//#define IP_ADDRESS { 192, 168, 1, 200 }
|
||||
|
||||
//
|
||||
|
||||
// ENABLE_MQTT: if set to true you have to have an Arduino Ethernet card (wired). This
|
||||
// is not for Wifi. You will need the Arduino Ethernet library as well as the PubSub
|
||||
// library from <add link here> or get via the libray manager either from the IDE
|
||||
|
|
Loading…
Reference in New Issue
Block a user