CoderDojo – Die Arduino Session

CoderDojo – Die Arduino Session

Am 2.11.2013 fand wieder ein CoderDojo in München statt. Dabei haben wir auch Arduino Blinkenlights mit einem 32er LED Streifen gebastelt. Hier ist das kurze Programm welches von den teilnehmenden Kinder erstellt wurde. Dabei werden die LEDs nacheinander an und...

BlinkenHose BUS350

#include “LPD8806.h” #include “SPI.h” int dataPin = 11; int clockPin = 13; LPD8806 strip = LPD8806(32, dataPin, clockPin); void setup() { // Start up the LED strip strip.begin(); // Update the strip, to start they are all ‘off’...
Build your own backlight

Build your own backlight

After playing with the Arduino and the LPD8806 LED strip for a while I hooked it up to the Arduino Ethernet (Arduino Uno with EthernetShield will also do) to build my own backlight for the iMac. This is the part, which runs on the Arduino and accepts UDP datagram...

Arduino first steps with a LPD8806 LED Belt

#include “LPD8806.h” #include “SPI.h” // Example to control LPD8806-based RGB LED Modules in a strip! int dataPin = 2; int clockPin = 3; // Set the first variable to the NUMBER of pixels. 32 = 32 pixels in a row // The LED strips are 32 LEDs...