Skip to content

Commit a0f3b22

Browse files
committed
Add Inkplate 6 COLOR
1 parent 70f8b32 commit a0f3b22

File tree

5 files changed

+740
-5
lines changed

5 files changed

+740
-5
lines changed

src/boards/Inkplate6/waveforms.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,7 @@
99
{0, 0, 0, 0, 1, 1, 2, 0, 0}, {0, 0, 0, 0, 0, 0, 2, 0, 0}};
1010

1111

12-
#ifndef E_INK_WIDTH
1312
#define E_INK_WIDTH 800
14-
#endif
15-
#ifndef E_INK_HEIGHT
1613
#define E_INK_HEIGHT 600
1714
#endif
18-
1915
#endif
20-
#endif
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/**
2+
**************************************************
3+
*
4+
* @file Inkplate6COLORBoardFile.h
5+
* @brief Wrrapper for the different Inkplate boards and
6+
* it's classes.
7+
*
8+
*
9+
* @copyright GNU General Public License v3.0
10+
* @authors Borna Biro for soldered.com
11+
***************************************************/
12+
13+
// Header guard.
14+
#ifndef __INKPLATE6COLOR_BOARD_SELECT_H__
15+
#define __INKPLATE6COLOR_BOARD_SELECT_H__
16+
17+
// Board select check.
18+
#ifdef ARDUINO_INKPLATECOLOR
19+
20+
// Include Inkplate10 board header file.
21+
#include "Inkplate6COLORDriver.h"
22+
23+
// Wrapper for different Inkplate boards.
24+
class InkplateBoardClass : public EPDDriver
25+
{
26+
public:
27+
InkplateBoardClass(){};
28+
};
29+
30+
#endif
31+
#endif

0 commit comments

Comments
 (0)