What Can CircuitPython Do?


What Can the SAM32 Do?


More than someone can list! To start...

How Do I Add New Libraries to the SAM32?


This is where CircuitPython really shines!

  1. Plug your board into your computer
  2. Drag the library file (either .py or .mpy ) onto the CIRCUITPY drive (your can organize libraries in a folder on the drive called lib , but it's not necessary)
  3. Done! 🎉

Everything pertaining to the library is contained in that single file- cool! That means if its a .py file, you can also open it, read the contents to see how that specific library works, and even make edits to suit your needs. NOTE: the .mpy file extension means the python library has been compressed. CircuitPython can still read these files, but you wont be able to edit them.

See 👇 for tips on finding new CircuitPython libraries

Is there a CircuitPython Library for My XYZ Device?