Simple 8x8 LED Matrix controller which interfaces with a Processing GUI over serial to display sketches

Dependencies:   Multi_WS2811 mbed

Fork of Multi_WS2811_test by Ned Konz

Committer:
bikeNomad
Date:
Thu Dec 05 15:12:47 2013 +0000
Revision:
15:331e139672b5
Child:
18:d98353e8c61c
inlined bit writes

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bikeNomad 15:331e139672b5 1 #include "mbed.h"
bikeNomad 15:331e139672b5 2 #include "WS2812.h"
bikeNomad 15:331e139672b5 3
bikeNomad 15:331e139672b5 4 int main(void)
bikeNomad 15:331e139672b5 5 {
bikeNomad 15:331e139672b5 6 WS2812 lightStrip(60*4, PTD2, PTD3);
bikeNomad 15:331e139672b5 7 }