CIRCUITPY(G:) is present.
CircuitPython installed for the board is: adafruit-circuitpython-unexpectedmaker_feathers2-en_US-6.1.0-rc.0.uf2. I have also tried version 6.0.0
Mu is installed and Adafruit mode selected.
This test code will run in REPL (without the while loop, but with multiple print/sleep statements) but there is no serial output from the usb download.
- Code: Select all | TOGGLE FULL SIZE
import board
import time
while True:
print("hello")
time.sleep(2)
When attempting to run this blink code from usb download the led does not blink, but I can get the board to blink with statements in REPL.
- Code: Select all | TOGGLE FULL SIZE
import board
import digitalio
import time
led = digitalio.DigitalInOut(board.LED)
led.direction = digitalio.Direction.OUTPUT
while True:
led.value = True
time.sleep(2)
led.value = False
time.sleep(2)
print("hello")
One observation is that while G: shows the 6.1.0 version, the REPL tag shows 6.0.0
Press any key to enter the REPL. Use CTRL-D to reload.
Adafruit CircuitPython 6.0.0 on 2020-11-16; FeatherS2 with ESP32S2
Another finding is that the print code will run correctly with serial output in Mu when the Python mode is selected.
What do you recommend?