Rasperry Pi Pico Busylight
This is the GitHub repository for the project: https://buildcomics.com/ (TO Be Determined)
You will also find the "instructions" there!
Models
Find all the models for the Busylight here: https://www.prusaprinters.org/prints/64085-raspberry-pi-pico-busylight
Bill Of Materials (BOM)
- 1 x Raspberry Pi pico
- 1 x 5mm RGB led common cathode
- 1 x 86 Ohm 1/4w resistor
- 1 x 15 Ohm 1/4w resistor
- 1 x 39 Ohm 1/4w resistor
- The models (see above) 3d Printed
Wiring
I used one common cathode RGB LED 5mm wired with resistors. The led pinout goes as follows, counted from pin 1 as being the pin closest to the flat in the bottom of the LED:\ (Note, some RGB LEDS are wired Red, GND, Green, Blue)!
- Pin 1:RED, 68 ohm ==> GPIO 5
- Pin 2:CC, ==> GND
- Pin 3:BLUE, 15 ohm ==> GPIO 6
- Pin 4:GREEN, 39 ohm ==> GPIO 7
Note, the GPIO pins are based on the following piece of code in main.c. You can freely change these (apart from GPIO 0 & 1) by changing this code:
#define LED_1_RED_GPIO 5
#define LED_1_GREEN_GPIO 7
#define LED_1_BLUE_GPIO 6
Basic installation
- Download main.uf2 from the releases page: https://github.com/buildcomics/Busylight/releases
- Press the button on your raspberry pi Pico, and then connect it to your computer
- copy the "main.uf2" from the release page to the "RPI2" that shows up as a mass storage usb devcie
- To run this with your UC program, you need to download the appropriate driver from: https://www.plenom.com/downloads/download-software/ \
Main Code
The main code is based on Tinyusb: https://github.com/hathach/tinyusb
The device mimics a Plenom Kuando Busylight Omega model
I used https://github.com/mitrefccace/busylightapi as a reference to reverse engineer the protocol
Compiling the code
If you want to change the code and nteed to compile it, do the following: Assuming you have the raspberry pi pico c SDK installed(https://github.com/raspberrypi/pico-sdk)
The following (standard) commands will create "main.uf2" that can be copied onto the raspberry pi in bootsel mode:
- git clone [email protected]:buildcomics/Busylight.git
- cd Busylight
- mkdir build
- cd build
- cmake ..
- make
- Now press the button on your raspbery pi pico, connect it and copy the main.uf2 to the pico that should show up ass a mass storage device
Testing
Command to test HID descriptor of file:
sudo usbhid-dump -a 1:58 | grep -v : | xxd -r -p | hidrd-convert -o spec
using the hidrd tool from: https://github.com/DIGImend/hidrd
License
MIT License
Copyright (c) 2021 buildcomics
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.