Question: QUESTION 4 You had written beautiful CircuitPython code to toggle your microcontroller's built-in LED on and off, but your pesky younger sibling came by and

QUESTION 4 You had written beautiful CircuitPython code to toggle your microcontroller's built-in LED on and off, but your pesky younger sibling came by and mixed up the order of your program! Using the labels indicated, rearrange the code below so that it correctly toggles the built-in LED on for 750 ms, then off for 250 ms, and repeats that process indefinitely. time. sleep(0.75) x = digitalio. DigitalInOut (board. D13) import board import time import digitalio x.direction = digitalio. Direction.OUTPUT x.value = False x.value = True while True: time. sleep(0.25)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
