Reiko Randoja / LedOut

Dependents:   Telliskivi2_2014

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ledout.h Source File

ledout.h

00001 #ifndef LEDOUT_H
00002 #define LEDOUT_H
00003 
00004 #include "mbed.h"
00005 #include "PCA9555.h"
00006 #include "qed.h"
00007  
00008 class LedOut {
00009 public:
00010     LedOut(PCA9555 *ioExt, unsigned int pin);
00011  
00012     void set();
00013     void clear();
00014     void toggle();
00015     bool get();
00016  
00017 private:
00018     PCA9555 *extIO;
00019     unsigned int ledPin;
00020 };
00021 
00022 #endif