Let's make a smart bike!
This project was made for Treehacks 2019. The Devpost page can be found here.
- Raspberry Pi Zero W
- 3A Switching DC-DC Buck Converter
- CD4050B Non-Inverting Level Shifter
- Allows communication between Pi (3.3V) and SK6812 LEDs (5V)
- SK6812 RGBW LEDs
- Snubbing Diode (for LEDs)
- 1000uF Bypass Capacitor (for LEDs)
- Adafruit LSM9DS1 9dof Sensor Breakout Board
- Cute lil switches
- Neo-M8N GPS
The Raspberry Pi was running rasbpian stretch-lite, flashed using the Etcher utility. SSH over USB was set up immediately to make things less painful.
All of the following can be installed with pip3 from pypi.org.
- Scheduling crontab tasks (like launching the LED script on @reboot) requires the use of
sudo crontab config_file_name
, instead of regularcrontab config_file_name
in order to get the crontab to run as root. - If installing a package with
pip3
works OK but the program says there is "no module such-and-such," trysudo pip3
instead. - The Adafruit GPS Library doesn't actually work with GNSS receivers like the Neo-M8N, since all the messages have different headers (sad). GNSS receivers are more robust since they can receive from non-gps constellations like GLONASS and Beidou, so someone should probably build a CircuitPython library for GNSS receivers at some point.
- The default baud rate for our Neo-M8N receiver was 38400 baud. If stuff doesn't work at first (messages about Unicode characters not being in the charset), it's usually because the baud rate is wrong and the program is receiving gibberish.