Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/WLAN_Thermometer/commit/37f1fa9091d5729f2912df49159106f96a05227f?style=unified&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

Small changes for watchdog.

master
Holger Wirtz 4 years ago
parent 18b2f17f14
commit 37f1fa9091
  1. 3
      WLAN_Thermometer.ino

@ -166,7 +166,7 @@ void setup()
sched.addJob(show_time, KRATE_TIME);
sched.addJob(check_reset_ap_data, KRATE_RESET_AP_DATA);
sched.addJob(check_datetime, KRATE_CHECK_DATETIME);
sched.addJob(watchdog_reset, WDT_TIMEOUT / 2);
sched.addJob(watchdog_reset, WDT_TIMEOUT / 3);
get_sensor_data();
temp[MIN] = temp[ACT];
@ -178,6 +178,7 @@ void setup()
strcpy(date_string_old, "--:--:----");
watchdog_reset();
setup_screen();
show_time();
show_temperature();

Loading…
Cancel
Save