Fix comment.

This commit is contained in:
iabdalkader 2020-01-02 19:42:51 +02:00
parent 21c464e2b9
commit 63642dd0b5

View File

@ -12,7 +12,7 @@ blue_led = LED(3)
def tick(timer):
blue_led.toggle()
tim = Timer(2, freq=1) # create a timer object using timer 4 - trigger at 1Hz
tim = Timer(2, freq=1) # create a timer object using timer 2 - trigger at 1Hz
tim.callback(tick) # set the callback to our tick function
while (True):