You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 29, 2023. It is now read-only.
1. Inside the attached function, delay() won’t work and the value returned by millis() will not increment. Serial data received while in the function may be lost. You should declare as volatile any variables that you modify within the attached function.
27
27
28
28
2. Typically global variables are used to pass data between an ISR and the main program. To make sure variables shared between an ISR and the main program are updated correctly, declare them as volatile.
29
29
30
-
## Installation
31
-
1. Navigate to (https://github.com/khoih-prog/ESP8266TimerInterrupt) page.
30
+
### Installation
31
+
32
+
#### Use Arduino Library Manager
33
+
34
+
The suggested and easiest way is to use `Arduino Library Manager`. Search for `ESP8266TimerInterrupt`, then select / install the latest version.
35
+
36
+
#### Manual Install
37
+
1. Navigate to [ESP8266TimerInterrupt](https://github.com/khoih-prog/ESP8266TimerInterrupt).
32
38
2. Download the latest release `ESP8266TimerInterrupt-master.zip`.
33
39
3. Extract the zip file to `ESP8266TimerInterrupt-master` directory
34
40
4. Copy whole folder to Arduino libraries' directory such as `.Arduino/libraries/ESP8266TimerInterrupt-master`.
@@ -127,8 +133,6 @@ void loop()
127
133
## TO DO
128
134
129
135
1. Search for bug and improvement.
130
-
2. Similar features for Arduino (UNO, Mega, etc...) and ESP32
131
-
132
136
133
137
## DONE
134
138
@@ -138,6 +142,7 @@ For current version v1.0.2
138
142
2. Fix compatibility issue causing compiler error while using Arduino IDEs before 1.8.10 and ESP8266 cores 2.5.2 and before
139
143
3. More hardware-initiated software-enabled timers
140
144
4. Longer time interval
145
+
5. Similar features for Arduino (UNO, Mega, etc...) and ESP32
0 commit comments