8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96b7dad commit 392f2d4Copy full SHA for 392f2d4
examples/08_blynk_timer.py
@@ -55,14 +55,14 @@
55
import blynktimer
56
import random
57
58
-BLYNK_AUTH = 'YourAuthToken'
+BLYNK_AUTH = 'YourAuthToken' # insert your Auth Token here
59
blynk = blynklib.Blynk(BLYNK_AUTH)
60
-timer = blynktimer.Timer()
+timer = blynktimer.Timer() # create a new Timer instance
61
62
WRITE_EVENT_PRINT_MSG = "[WRITE_VIRTUAL_WRITE] Pin: V{} Value: '{}'"
63
64
65
-# register two timers for different pins with different intervals
+# Code below: register two timers for different pins with different intervals
66
# first num is delay interval in seconds
67
# second num is function argument
68
# run_once flag that allows run timers once or periodically
0 commit comments