Close

73 Results for "circuitpython"

  • Getting Started

  • Download and print the heart lamp (or order a print via thingiverse).Connect the Circuit Playground Bluefruit.Clone Flash CircuitPython 5 on to the Circuit Playground Bluefruit.Copy `code.py` and `lib/` .Optionally update the color options in `code.py`...
  • AMG8833 installation and test

  • - Pi 3V3 to sensor VIN - Pi GND to sensor GND - Pi SCL to sensor SCL - Pi SDA to sensor SDA 1.Python Installation of AMG88xx Library sudo pip3 install adafruit-circuitpython-amg88xx 2.Open i2c interface from Pi  sudo raspi-config 3.Interface Options--->I2C--->Enable ...
  • Reset the board

  • After you reset the board, it will first run boot.py and put the results in boot.txt.If you have attached a Qwiic NFCPROM, you will see results like this:Adafruit CircuitPython 4.0.0-alpha.1-4-gf09537b-dirty on 2018-10-01; Steiert Solutions FPGA Helper...
  • Audio

  • This is the class that generates tones. Tones can have a frequency in Hertz or can be specified in pitch/octave notation. For example, the call play_note("C4", 0.5) will play middle C for half a second. Alternatively, play_note("R", 1.0) will...
  • Circuit assembly

  • The circuit was built using components of TUSISTEMITA, like enclosure backplate, and Rpi Pico screw terminal breakboard. Once the app is downloaded for the first time, and electrical connections verified, the backplate could be attached to the enclosure...
  • The CIRCUITPY Drive

  • The CIRCUITPY Drive https://learn.adafruit.com/adafruit-esp32-s2-feather/the-circuitpy-drive The CIRCUITPY drive is where your code and the necessary libraries and files will live. You can edit your code directly on this drive and when you save it, it...
  • DIY

  • Required Hardware: 1. ESP-EYE         a. Optional ESP-EYE case 2. PyPortal         a. Optional PyPortal case 3. Two 3.3v usb to outler adapters and two usb to usb mini cables OR 4....
  • Code Step 1

  • Download Circuitpython FileHold the Bootsel button of the pico and plug it to your PC.Copy-paste the file into the Raspberry Pi Pico directory.The board will reconnect automatically.
  • Key features

  • Developed using CircuitPython, friendly and easy to learnCompatible with the most common operating systemsNo need to install apps for initial firmware downloadKey configuration done in a text fileSplash resistant and shockproofDetachable and replaceable...
  • Assembling the Hardware

  • Solder the wires (or JST connectors) to the Pi Picos. The red wire should go to VBUS, white one to GND, and green one to GP28 (pins 40, 38, 34 respectively). For the moss, just place the LED matrix on a surface and connect it to one of the Picos. Optionally...
  • Programming the Raspberry Pi Pico

  • The code for the tree is in the drzewo subdirectory. The code for the moss is in the mech subdirectory. Drzewo and mech are Polish for tree and moss. The code is written in CircuitPython and uses some additional libraries. The easiest...
  • Libraries, Secrets, Display

  • Libraries The Weather Radar uses several libraries, which you'll need to download first. Geotiler, to construct basemaps.datetime and pytz for date time and time zone support.requests, for http handling.Pillow and numpy for image handling and...
  • Programming

  • Select the right program either you need a game stick or a mouse : For a game stick : Select the arduino sketch in the files project : Joytostick_TRINKET_M0_v2.ino Set Up arduino IDE, see ADFRUIT's Trinket Information and follow instructions https://learn.adafruit.com/adafruit-trinket-m0-circuitpython-arduino/arduino-ide-setup...
  • Access Qwiic NFCPROM through Qwiic connector

  • Plug the Qwiic NFCPROM into the FPGA Helper using a Qwiic cable and run this python script on the FPGA Helper board:import board import busio i2c = busio.I2C(board.SCL, board.SDA) while not i2c.try_lock(): pass result = bytearray(32) i2c.writeto(83,...