Skip to content

Commit 7d9f0ff

Browse files
committed
rm println
1 parent c58dcf2 commit 7d9f0ff

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/Wippersnapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1248,7 +1248,7 @@ void Wippersnapper::runNetFSM() {
12481248
maxAttempts = 10;
12491249
while (maxAttempts >= 0) {
12501250
setStatusLEDColor(LED_IO_CONNECT);
1251-
int8_t mqttRC = WS._mqtt->connect(WS._username, WS._key);
1251+
int8_t mqttRC = WS._mqtt->connect();
12521252
if (mqttRC == WS_MQTT_CONNECTED) {
12531253
fsmNetwork = FSM_NET_CHECK_MQTT;
12541254
break;

src/network_interfaces/Wippersnapper_ESP32.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ class Wippersnapper_ESP32 : public Wippersnapper {
101101
/********************************************************/
102102
void setupMQTTClient(const char *clientID) {
103103
if (WS._mqttBrokerURL == nullptr) {
104-
WS_DEBUG_PRINTLN("IO ADAFRUIT TEST L114");
105104
WS._mqttBrokerURL = "io.adafruit.com";
106105
_mqtt_client->setCACert(_aio_root_ca_prod);
107106
} else {

0 commit comments

Comments
 (0)