How to install CircuitPython on the Seeeduino Xiao Board (SAMD21)
educ8s.tv educ8s.tv
123K subscribers
24,316 views
0

 Published On Premiered Oct 13, 2020

Dear friends welcome to another tutorial. Today I am going to show how to install CircuitPython on the Seeeduino Xiao board! Yes, believe it or not, we can program this tiny board using Python, a staggering achievement of engineering.

📥 CircuitPython Bootloader ▶ https://circuitpython.org/board/seeed...
📥 Mu Editor ▶ https://codewith.mu/
📥 Putty ▶ https://www.putty.org/


BLINK PROGRAM CODE

import time, board
from digitalio import DigitalInOut, Direction

led = DigitalInOut(board.LED_INVERTED)
led.direction = Direction.OUTPUT

while True:
led.value = True
time.sleep(1)
led.value = False
time.sleep(1)

Want to learn to program?
👨‍💻 Check my new YouTube channel: https://bit.ly/3tku2n0

🎮 My Android Game: http://bit.ly/QuizOfKnowledge

show more

Share/Embed