This commit is contained in:
Dominik Bartsch 2021-06-21 14:19:10 +02:00
commit ee72092a3a
2 changed files with 6 additions and 2 deletions

3
doku.txt Normal file
View File

@ -0,0 +1,3 @@
Hardware Timer didnt work https://github.com/khoih-prog/ESP8266TimerInterrupt#why-using-isr-based-hardware-timer-interrupt-is-better
=> Software Timer https://ullisroboterseite.de/esp8266-timing.html#timer

View File

@ -196,6 +196,7 @@ void setup() {
os_timer_setfn(&Timer1, timerCallback, &c);
os_timer_arm(&Timer1, 1, true);
Serial.println("Ready");
Serial.print("IP address: ");
Serial.println(WiFi.localIP());