-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLCDPanel.h
71 lines (57 loc) · 2.08 KB
/
LCDPanel.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/***************************************************
* LCDPanel.h v1.0 - LCD/I2C communication for Arduino
*
* Copyright (c) 2018 Michael Zimmermann <http://www.kruemelsoft.privat.t-online.de>
* All rights reserved.
*
* Derived class from Adafruit_RGBLCDShield
* Original source (Adafruit_RGBLCDShield) written by Limor Fried/Ladyada for Adafruit Industries
* <http://http://www.adafruit.com/products/714>
*
* LICENSE
* -------
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
****************************************************/
#ifndef _KS_LCDPanel_h
#define _KS_LCDPanel_h
#include <inttypes.h>
#include "Adafruit_RGBLCDShield.h"
#include "Bounce2mcp.h"
#define BUTTON_FCT_BACK (BUTTON_LEFT | BUTTON_UP | BUTTON_DOWN)
#define BUTTON_A5 0x20
#define BUTTON_BACKLIGHT 5
#define LCD_BACKLIGHT 6
#define DEBOUNCE_TIME 5
class LCDPanel : public Adafruit_RGBLCDShield {
public:
LCDPanel() {};
void begin(uint8_t cols, uint8_t rows, uint8_t charsize = LCD_5x8DOTS);
Adafruit_MCP23017* getMCP() { return &i2c; }
uint8_t detect_i2c(uint8_t ui8_LcdAddr);
uint8_t readButtonA5();
void updateDebounce();
// Instantiate the Bounce objects
BounceMcp debouncer_Left;
BounceMcp debouncer_Right;
BounceMcp debouncer_Up;
BounceMcp debouncer_Down;
BounceMcp debouncer_OK;
protected:
Adafruit_MCP23017 i2c;
private:
// just a comment for variable used in Adafruit_RGBLCDShield:
// uint8_t _i2cAddr; ==> 0 = i2c is used; 255 = wired connection instead use of i2c
};
#endif