Skip to content

Circuitpython code.py not work anymore #4400

@important0

Description

@important0

My OS Arch linux
Item ItsyBitsy M0 Express

What do I did ?

https://circuitpython.org/board/itsybitsy_m0_express/

  1. Update > adafruit-circuitpython-itsybitsy_m0_express-en_US-6.2.0-beta.3.uf2
  2. Update > update-bootloader-itsybitsy_m0-v3.13.0.uf2

Inside ItsyBitsy M0 Express

https://learn.adafruit.com/welcome-to-circuitpython/creating-and-editing-code

code.py

import board
import digitalio
import time
 
led = digitalio.DigitalInOut(board.D13)
led.direction = digitalio.Direction.OUTPUT
 
while True:
    led.value = True
    time.sleep(0.5)
    led.value = False
    time.sleep(0.5)


What happen ?
there is notting to work at all

Troubleshooting

https://learn.adafruit.com/welcome-to-circuitpython/troubleshooting

"MY" CircuitPython RGB Status Light

Green → Orange?

Then 2times flash blue&green

what do I did ?

Hardreset circuitpython
https://github.com/tuupola/circuitpython/blob/master/docs/wipy/tutorial/reset.rst

>>> import os
>>> os.mkfs('/flash')

Not working

what do I want ?

I want
・factry reset my ItsyBitsy M0 Express
・work for code.py

thank you for reading until end.

Metadata

Metadata

Assignees

No one assigned

    Labels

    supportissues that involve helping a user accomplish a task

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions