Skip to content

Commit f91724c

Browse files
committed
Added support for Arduino Robot Control board support
1 parent f8c0ae9 commit f91724c

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/LcdScreen.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3535
LcdScreen EsploraTFT(7, 0, 1);
3636
#endif
3737

38+
#if ARDUINO_AVR_ROBOT_CONTROL
39+
LcdScreen LottieLemonTFT(LCD_CS, DC_LCD, RST_LCD);
40+
#endif
41+
3842
LcdScreen::LcdScreen(uint8_t CS, uint8_t RS, uint8_t RST)
3943
: Arduino_ILI9163(CS, RS, RST)
4044
{ }

src/LcdScreen.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,10 @@ class LcdScreen : public Arduino_ILI9163 {
145145
extern LcdScreen EsploraTFT;
146146
#endif
147147

148+
#if ARDUINO_AVR_ROBOT_CONTROL
149+
extern LcdScreen LottieLemonTFT;
150+
#endif
151+
148152
#if defined(__SD_H__) // Arduino SD library
149153

150154
#define BUFFPIXEL 20

0 commit comments

Comments
 (0)