Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/AutoConnect/commit/3ba2ed1335ca050f34868ffd0ac9afe9a2277fd7?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
7 additions and
7 deletions
examples/mqttRSSI/mqttRSSI.ino
examples/mqttRSSI_FS/mqttRSSI_FS.ino
examples/mqttRSSI_NA/mqttRSSI_NA.ino
@ -114,7 +114,7 @@ static const char AUX_mqtt_setting[] PROGMEM = R"raw(
" type " : " ACInput " ,
" type " : " ACInput " ,
" value " : " " ,
" value " : " " ,
" label " : " ESP host name " ,
" label " : " ESP host name " ,
" pattern " : " ^([a-zA-Z0-9]([a-zA-Z0-9-])*[a-zA-Z0-9]){1,3 2}$ "
" pattern " : " ^([a-zA-Z0-9]([a-zA-Z0-9-])*[a-zA-Z0-9]){1,24 }$ "
} ,
} ,
{
{
" name " : " save " ,
" name " : " save " ,
@ -184,7 +184,7 @@ bool mqttConnect() {
" abcdefghijklmnopqrstuvwxyz " ; // For random generation of client ID.
" abcdefghijklmnopqrstuvwxyz " ; // For random generation of client ID.
char clientId [ 9 ] ;
char clientId [ 9 ] ;
uint8_t retry = 10 ;
uint8_t retry = 3 ;
while ( ! mqttClient . connected ( ) ) {
while ( ! mqttClient . connected ( ) ) {
if ( serverName . length ( ) < = 0 )
if ( serverName . length ( ) < = 0 )
break ;
break ;
@ -205,8 +205,8 @@ bool mqttConnect() {
Serial . println ( " Connection failed: " + String ( mqttClient . state ( ) ) ) ;
Serial . println ( " Connection failed: " + String ( mqttClient . state ( ) ) ) ;
if ( ! - - retry )
if ( ! - - retry )
break ;
break ;
delay ( 3000 ) ;
}
}
delay ( 3000 ) ;
}
}
return false ;
return false ;
}
}
@ -66,7 +66,7 @@ bool mqttConnect() {
" abcdefghijklmnopqrstuvwxyz " ; // For random generation of client ID.
" abcdefghijklmnopqrstuvwxyz " ; // For random generation of client ID.
char clientId [ 9 ] ;
char clientId [ 9 ] ;
uint8_t retry = 10 ;
uint8_t retry = 3 ;
while ( ! mqttClient . connected ( ) ) {
while ( ! mqttClient . connected ( ) ) {
if ( serverName . length ( ) < = 0 )
if ( serverName . length ( ) < = 0 )
break ;
break ;
@ -86,8 +86,8 @@ bool mqttConnect() {
Serial . println ( " Connection failed: " + String ( mqttClient . state ( ) ) ) ;
Serial . println ( " Connection failed: " + String ( mqttClient . state ( ) ) ) ;
if ( ! - - retry )
if ( ! - - retry )
break ;
break ;
delay ( 3000 ) ;
}
}
delay ( 3000 ) ;
}
}
return false ;
return false ;
}
}
@ -102,7 +102,7 @@ bool mqttConnect() {
" abcdefghijklmnopqrstuvwxyz " ; // For random generation of client ID.
" abcdefghijklmnopqrstuvwxyz " ; // For random generation of client ID.
char clientId [ 9 ] ;
char clientId [ 9 ] ;
uint8_t retry = 10 ;
uint8_t retry = 3 ;
while ( ! mqttClient . connected ( ) ) {
while ( ! mqttClient . connected ( ) ) {
if ( mqttserver . value . length ( ) < = 0 )
if ( mqttserver . value . length ( ) < = 0 )
break ;
break ;
@ -123,8 +123,8 @@ bool mqttConnect() {
Serial . println ( " Connection failed: " + String ( mqttClient . state ( ) ) ) ;
Serial . println ( " Connection failed: " + String ( mqttClient . state ( ) ) ) ;
if ( ! - - retry )
if ( ! - - retry )
break ;
break ;
delay ( 3000 ) ;
}
}
delay ( 3000 ) ;
}
}
return false ;
return false ;
}
}