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: SX1276Lib AdaFruit_RGBLCD MCP23017 mbed
Fork of AdaFruit_RGBLCD by
Diff: LCDadafruit/lcdadafruit.h
- Revision:
- 33:319cbac3b6eb
- Parent:
- 32:a2472bbe7c92
--- a/LCDadafruit/lcdadafruit.h Wed Jul 29 12:14:42 2015 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,30 +0,0 @@ -#ifndef __LCDADAFRUIT_H__ -#define __LCDADAFRUIT_H__ - -#include "lcd.h" -#include "Adafruit_RGBLCDShield.h" -#include "MCP23017.h" - -class LCDadafruit - : public LCD -{ -public: - LCDadafruit(I2C & in_cI2C); - virtual int _putc(int c); - - virtual uint8_t columns(); - virtual void clear(); - virtual void createChar(uint8_t location, uint8_t charmap[]); - virtual void home(); - virtual uint8_t rows(); - virtual void setCursor(uint8_t in_nX, uint8_t in_nY); - virtual void showBlink(bool in_bBlink); - virtual void showCursor(bool in_bShow); - virtual void showDisplay(bool in_bBlink); - -protected: - MCP23017 m_cMCP; - Adafruit_RGBLCDShield m_cLCD; -}; - -#endif // __LCDADAFRUIT_H__