bike light demo
The bike light project is a great way for people to learn some basic electronic skills, become acquainted with Arduino, and create something impressive in the process. Check out the YouTube video below to see an example.
If you built one of our bike lights and you want to dive deeper into the programming side, upload the program below using the USB cable. To upload the program, you'll need to set up your computer with Codebender which hosts the it using their excellent web interface. You can find setup information here.
If you want to learn more about Arduino, then check out our Arno kit. You can find it here. With the Arno you can learn more about the hardware and software used in the Arduino platform. We have a bunch of information and projects to get you started. Begin your journey here.
The bike lights consists of a microcontroller (we like the Pro Micros that run the Atmega 32U4), a power source, and strip of programmable LEDs. The LEDs provide the real magic in this project. They have microchips embedded in them that allow them to become 'aware' of one another so that each LED knows where it is within the strip. This allows us to control them independently. The color and brightness of each LED is set by using three 8-bit values so that control the amount of red, blue, and green light that they emit.
This sketch runs through 18 different example settings. If you run it as-is, each setting will run for 10 seconds. If you find one you like, you can make your bike light run only that sketch by setting the variable doAll to false and ledMode to the setting number 1 through 18.
If you built one of our bike lights and you want to dive deeper into the programming side, upload the program below using the USB cable. To upload the program, you'll need to set up your computer with Codebender which hosts the it using their excellent web interface. You can find setup information here.
If you want to learn more about Arduino, then check out our Arno kit. You can find it here. With the Arno you can learn more about the hardware and software used in the Arduino platform. We have a bunch of information and projects to get you started. Begin your journey here.
The bike lights consists of a microcontroller (we like the Pro Micros that run the Atmega 32U4), a power source, and strip of programmable LEDs. The LEDs provide the real magic in this project. They have microchips embedded in them that allow them to become 'aware' of one another so that each LED knows where it is within the strip. This allows us to control them independently. The color and brightness of each LED is set by using three 8-bit values so that control the amount of red, blue, and green light that they emit.
This sketch runs through 18 different example settings. If you run it as-is, each setting will run for 10 seconds. If you find one you like, you can make your bike light run only that sketch by setting the variable doAll to false and ledMode to the setting number 1 through 18.