Using the following code, print the line “HELLO, WORLD!” into the serial port once, print an empty line, and lastly, print the names of the members in your group repeatedly. No wiring of electrical components is necessary in this challenge. You are simply going to connect the Metro board to the computer.
1 Metro M0 Express
Click on the "Serial" button to open the serial console. The serial console is useful for printing out text and debugging your programs. Additionally, if you have errors in your code, the serial console will print these errors.
import time
print("__________\n")
while True:
__________
__________
time.sleep(1)
Note: \n means newline.
import time
print("Hello, World!\n")
while True:
print("Farnia")
print("Katie")
time.sleep(1)