File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,8 @@ WipperSnapper_Component_I2C::scanAddresses() {
158158 WS_DEBUG_PRINTLN (" [i2c]: Scanning I2C Bus for Devices..." );
159159 for (uint8_t address = 1 ; address < 127 ; ++address) {
160160 WS_DEBUG_PRINT (" [i2c] Scanning Address: 0x" );
161- WS_DEBUG_PRINTHEX (address); WS_DEBUG_PRINTLN (" " );
161+ WS_DEBUG_PRINTHEX (address);
162+ WS_DEBUG_PRINTLN (" " );
162163 _i2c->beginTransmission (address);
163164 uint8_t endTransmissionRC = _i2c->endTransmission ();
164165
Original file line number Diff line number Diff line change @@ -104,7 +104,8 @@ void WipperSnapper_LittleFS::parseSecrets() {
104104 if (i >= 3 ) {
105105 WS_DEBUG_PRINT (" WARNING: More than 3 networks in secrets.json, "
106106 " only the first 3 will be used. Not using " );
107- WS_DEBUG_PRINTLNVAR (altnetworks[i][" network_ssid" ].as <const char *>());
107+ WS_DEBUG_PRINTLNVAR (
108+ altnetworks[i][" network_ssid" ].as <const char *>());
108109 break ;
109110 }
110111 convertFromJson (altnetworks[i], WS._multiNetworks [i]);
You can’t perform that action at this time.
0 commit comments