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.
Dependencies: AdaFruit_RGBLCDShield MCP23017 mbed RTclock
Fork of MCP_test by
keyreaderadafruit.h
00001 #ifndef __KEYREADERADAFRUIT_H__ 00002 #define __KEYREADERADAFRUIT_H__ 00003 00004 #include "keys.h" 00005 #include "Adafruit_RGBLCDShield.h" 00006 #include "MCP23017.h" 00007 00008 class KeyReaderAdafruit 00009 : public Keys 00010 { 00011 public: 00012 KeyReaderAdafruit(I2C & in_cI2C); 00013 00014 virtual uint8_t readButtons(); 00015 00016 protected: 00017 MCP23017 m_cMCP; 00018 Adafruit_RGBLCDShield m_cLCD; 00019 00020 }; 00021 00022 #endif // __KEYREADERADAFRUIT_H__
Generated on Thu Jul 14 2022 00:55:23 by
1.7.2
