Close

86 Results for "circuitpython"

  • CRICKIT transcript

  • welcome @limor and @pt !pt3:01 PMlive vid is here folks' Prof. Fartsparkle3:02 PMhah. the talking heads are cuteawesome, thankslimor3:02 PMthank you @Sophi Kravitz  and the hackaday community for having me on this hackchat about creative robotics!@limor3:04...
  • Hack Chat Transcript, Part 1

  • OK, let's get started. I'm Dan Maloney, I'll be the moderator today. I want to welcome everyone to the Hack Chat today, especially our host, @Will Cogley, who does some really cool stuff with animatronics. Will, can you tell us a little about your background...
  • LED Matrix Shield Done

  • Today I sat down and wrote the CircuitPython driver for the IS31FL3728 chip that I used for this shield. The effect looks as expected: The code is rather simple too: class Matrix7x5: _ROWS = (3, 2, 4, 1, 0) _COLS = (6, 5, 0, 4, 1, 2, 3) _word = bytearray(2)...
  • Driving the Matrix

  • The whole point of building this device is cutting the costs, and the two main tricks for it are using a single-color matrix and simulate the 4 colors with 4 shades, and driving the matrix in software directly from the microcontroller. Obviously, for...
  • DIY Solar Panel Monitoring System

  • Specification: 1. Input Voltage - 0- 24V ( Can be extended up to 50V ) 2. Input Current: 0 -15A 3. Solar Panel Rating - 250W (12V ) / 500W ( 24V ) How It Works? The Solar panel voltage and current are sensed by the voltage and current sensor respectively....
  • Voidnet Viator Cyberdeck

  • ## BOM Other than the 3d printed parts (all FDM parts printed in black PETG, all Resin printed in Elegoo ABS-like clear-red) the following was used: ### Base- Raspberry Pi 4 (+SD card)- Corsair K65 RGB 60% mechanical keyboard (don't get too attached...
  • Making waves

  • So it seems like using the Mixer object along with wave files should let us play the tones simultaneously. Now we need to get some musical note wave files, how can we do that? I heard you like python so I made some wave files with python to play with...
  • Setting Up the Pi

  • Up until now I have been running all my tests on the Raspberry Pi that I used for my TMD-2 project. I'm moving to a new Pi so I though I would document the steps I have taken to get the Console running on the new image. I'm not going to detail getting...
  • Final Code

  • In the process of moving the shift keys around, I have simplified the code somewhat, made it better at handling some corner cases, and fixed some bugs. Just in case someone wants to make a similar build, I'm putting it below. In the future it might grow...