This blog is a record of what I do, what I think and what I read. If you are interested to know about my professional experience, you can refer to the other blog of mine.
http://admi2camac.blogspot.com/
Wednesday, 1 February 2023
TTB02 Understanding and Using Breadboards
from machine import Pin
from time import sleep
blueLED = Pin(15, Pin.OUT)
while True:
blueLED.value(0)
sleep(1)
blueLED.value(1)
sleep(1)
#https://www.youtube.com/watch?v=eGdrtikKc5U
No comments:
Post a Comment