Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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
Generated on Sun Jul 17 2022 01:53:50 by
1.7.2