Chris Styles / Mbed 2 deprecated EA_PCA9532_HelloWorld

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "PCA9532.h"
00003 
00004 PCA9532 leds (p28, p27, 0xc0);
00005 
00006 int main() {
00007 
00008     while (1) {
00009         leds.SetLed(0xffff, MODE_ON);
00010         wait (0.2);
00011         leds.SetLed(0xffff, MODE_OFF);
00012         wait (0.2);
00013     }
00014 
00015 }