bugfix: variable name shadowing

This commit is contained in:
Starbeamrainbowlabs 2022-06-30 21:59:25 +01:00
parent bbb6d542f3
commit a6dc9699d2
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 4 additions and 4 deletions

View File

@ -103,7 +103,7 @@ void connect_wifi() {
* @return void * @return void
*/ */
void connect_mqtt() { void connect_mqtt() {
int delay = 1000; int backoff_delay = 1000;
while(true) { while(true) {
Serial.print("MQTT: "); Serial.print("MQTT: ");
mqtt = PubSubClient(); mqtt = PubSubClient();
@ -142,9 +142,9 @@ void connect_mqtt() {
int error_code = mqtt.state(); int error_code = mqtt.state();
Serial.println("failed, error code "+String(error_code)); Serial.println("failed, error code "+String(error_code));
delay(delay); delay(backoff_delay);
delay += 1000; backoff_delay += 1000;
if(delay > 60 * 1000) delay = 60 * 1000; if(backoff_delay > 60 * 1000) backoff_delay = 60 * 1000;
} }
Serial.println("ok"); Serial.println("ok");