1
New Product Ideas / Re: MicroPython and or CircuitPython for the TinyZero
« on: June 10, 2019, 11:15:54 PM »
I was able to follow the non-uf2 installation instructions at https://learn.adafruit.com/welcome-to-circuitpython/non-uf2-installation. To install the adafruit-circuitpython-arduino_zero-en_US-4.0.1.bin image using bossac 1.7.0 on the tinyzero board.
The board shows up as a usb drive and has worked good so far. The repl works as well.
The board shows up as a usb drive and has worked good so far. The repl works as well.
Code: [Select]
Press any key to enter the REPL. Use CTRL-D to reload.
Adafruit CircuitPython 4.0.1 on 2019-05-22; Arduino Zero with samd21g18
>>> import board
>>> import digitalio
>>>
>>> led = digitalio.DigitalInOut(board.D13)
>>> led.direction = digitalio.Direction.OUTPUT
>>> led.value = True
>>>