Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/AutoConnect/commit/3555d8493525b14321cd3d30ce065ea8419e85a9
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
2 deletions
examples/mqttRSSI/mqttRSSI.ino
examples/mqttRSSI_FS/mqttRSSI_FS.ino
@ -359,7 +359,7 @@ void setup() {
AutoConnectCheckbox & uniqueidElm = setting - > getElement < AutoConnectCheckbox > ( " uniqueid " ) ;
AutoConnectInput & hostnameElm = setting - > getElement < AutoConnectInput > ( " hostname " ) ;
if ( uniqueidElm . checked ) {
config . apid = String ( " ESP " ) + " _ " + String ( GET_CHIPID ( ) , HEX ) ;
config . apid = String ( " ESP " ) + " - " + String ( GET_CHIPID ( ) , HEX ) ;
Serial . println ( " apid set to " + config . apid ) ;
}
if ( hostnameElm . value . length ( ) ) {
@ -247,7 +247,7 @@ void setup() {
AutoConnectCheckbox & uniqueidElm = setting - > getElement < AutoConnectCheckbox > ( " uniqueid " ) ;
AutoConnectInput & hostnameElm = setting - > getElement < AutoConnectInput > ( " hostname " ) ;
if ( uniqueidElm . checked ) {
config . apid = String ( " ESP " ) + " _ " + String ( GET_CHIPID ( ) , HEX ) ;
config . apid = String ( " ESP " ) + " - " + String ( GET_CHIPID ( ) , HEX ) ;
Serial . println ( " apid set to " + config . apid ) ;
}
if ( hostnameElm . value . length ( ) ) {