Skip to content

Commit 98f1b8c

Browse files
committed
Finished Inkplate 6FLICK examples
1 parent fcc4be4 commit 98f1b8c

File tree

26 files changed

+48
-34
lines changed

26 files changed

+48
-34
lines changed

.github/workflows/compile.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,46 @@ jobs:
77
strategy:
88
matrix:
99
include:
10+
- board:
11+
fqbn: Inkplate_Boards:esp32:Inkplate5
12+
additional-sketch-paths: |
13+
- examples/Inkplate5
14+
- board:
15+
fqbn: Inkplate_Boards:esp32:Inkplate6
16+
additional-sketch-paths: |
17+
- examples/Inkplate6
18+
- board:
19+
fqbn: Inkplate_Boards:esp32:Inkplate6V2
20+
additional-sketch-paths: |
21+
- examples/Inkplate6
22+
- board:
23+
fqbn: Inkplate_Boards:esp32:Inkplate10
24+
additional-sketch-paths: |
25+
- examples/Inkplate10
26+
- board:
27+
fqbn: Inkplate_Boards:esp32:Inkplate10V2
28+
additional-sketch-paths: |
29+
- examples/Inkplate10
30+
- board:
31+
fqbn: Inkplate_Boards:esp32:Inkplate6plus
32+
additional-sketch-paths: |
33+
- examples/Inkplate6PLUS
34+
- board:
35+
fqbn: Inkplate_Boards:esp32:Inkplate6plusV2
36+
additional-sketch-paths: |
37+
- examples/Inkplate6PLUS
1038
- board:
1139
fqbn: Inkplate_Boards:esp32:Inkplate6Flick
1240
additional-sketch-paths: |
1341
- examples/Inkplate6FLICK
42+
- board:
43+
fqbn: Inkplate_Boards:esp32:Inkplate6COLOR
44+
additional-sketch-paths: |
45+
- examples/Inkplate6COLOR
46+
- board:
47+
fqbn: Inkplate_Boards:esp32:Inkplate2
48+
additional-sketch-paths: |
49+
- examples/Inkplate2
1450
steps:
1551
- name: Checkout
1652
uses: actions/checkout@v3

examples/Inkplate6FLICK/Advanced/Communications/Inkplate6FLICK_Bluetooth_Peripheral_Mode/Inkplate6FLICK_Bluetooth_Peripheral_Mode.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ void setup() // Initialize everything
4949
Serial.begin(115200);
5050

5151
// Init Inkplate library (you should call this function ONLY ONCE)
52-
5352
display.begin();
5453

5554
// Init BT communication

examples/Inkplate6FLICK/Advanced/Communications/Inkplate6FLICK_Bluetooth_Serial/Inkplate6FLICK_Bluetooth_Serial.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ BluetoothSerial SerialBT; // Create SerialBT object for Bluetooth communi
3939

4040
void setup()
4141
{
42-
4342
display.begin(); // Init Inkplate library (you should call this function ONLY ONCE)
4443
display.clearDisplay(); // Clear frame buffer of display
4544
display.setTextSize(BIG_TEXT_SCALE); // Scale text to be 5 times bigger then original (5x7 px)

examples/Inkplate6FLICK/Advanced/Communications/Inkplate6FLICK_EasyC/Inkplate6FLICK_EasyC.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ const float temperatureOffset = 0.0;
3737

3838
void setup()
3939
{
40-
4140
display.begin(); // Init Inkplate library (you should call this function ONLY ONCE)
4241
display.clearDisplay(); // Clear frame buffer of display
4342
display.display(); // Put clear image on display

examples/Inkplate6FLICK/Advanced/DeepSleep/Inkplate6FLICK_Partial_Update_With_Deep_Sleep/Inkplate6FLICK_Partial_Update_With_Deep_Sleep.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ RTC_DATA_ATTR float decimal = PI;
4242

4343
void setup()
4444
{
45-
4645
display.begin(); // Init Inkplate library (you should call this function ONLY ONCE)
4746
createScreen(); // Function that contains everything that has to be written on screen
4847

examples/Inkplate6FLICK/Advanced/DeepSleep/Inkplate6FLICK_RTC_Alarm_With_Deep_Sleep/Inkplate6FLICK_RTC_Alarm_With_Deep_Sleep.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ Inkplate display(INKPLATE_1BIT); // Create an object on Inkplate library and als
2727

2828
void setup()
2929
{
30-
3130
display.begin(); // Init Inkplate library (you should call this function ONLY ONCE)
3231

3332
display.rtcClearAlarmFlag(); // Clear alarm flag from any previous alarm

examples/Inkplate6FLICK/Advanced/IO/Inkplate6FLICK_Internal_IO_Expander/Inkplate6FLICK_Internal_IO_Expander.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ Inkplate display(INKPLATE_1BIT); // Create an object on Inkplate library and als
3939

4040
void setup()
4141
{
42-
4342
display.begin(); // Init Inkplate library (you should call this function ONLY ONCE)
4443
display.pinModeIO(LED_PIN, OUTPUT,
4544
IO_INT_ADDR); // Set P1-7 (or GPB7) to output. On that pin, we sholud connect LED with current

examples/Inkplate6FLICK/Advanced/Other/Inkplate6FLICK_EEPROM_Usage/Inkplate6FLICK_EEPROM_Usage.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ Inkplate display(INKPLATE_1BIT); // Create object on Inkplate library and set li
2929

3030
void setup()
3131
{
32-
3332
display.begin(); // Init library (you should call this function ONLY ONCE)
3433

3534
// Init EEPROM library with 128 of EEPROM size.

examples/Inkplate6FLICK/Advanced/Other/Inkplate6FLICK_Read_Battery_Voltage/Inkplate6FLICK_Read_Battery_Voltage.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ Inkplate display(INKPLATE_1BIT); // Create an object on Inkplate library and als
2424

2525
void setup()
2626
{
27-
2827
display.begin(); // Init Inkplate library (you should call this function ONLY ONCE)
2928
display.setTextSize(2); // Scale text to be two times bigger then original (5x7 px)
3029
display.setTextColor(BLACK, WHITE); // Set text color to black and background color to white

examples/Inkplate6FLICK/Advanced/Other/Inkplate6FLICK_Read_Temperature/Inkplate6FLICK_Read_Temperature.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ Inkplate display(INKPLATE_1BIT); // Create an object on Inkplate library and als
2525

2626
void setup()
2727
{
28-
2928
display.begin(); // Init Inkplate library (you should call this function ONLY ONCE)
3029
display.setTextSize(2); // Scale text to be two times bigger then original (5x7 px)
3130
display.setTextColor(BLACK, WHITE); // Set text color to black and background color to white

0 commit comments

Comments
 (0)