Skip to content

Commit 4f8f957

Browse files
committed
Change reset pins to 8 as to not require 2 fritzings
1 parent 18ae1e6 commit 4f8f957

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/ThinkInk_gray4/ThinkInk_gray4.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#define EPD_CS 9 // can be any pin, but required!
1414
#define EPD_BUSY 7 // can set to -1 to not use a pin (will wait a fixed delay)
1515
#define SRAM_CS 6 // can set to -1 to not use a pin (uses a lot of RAM!)
16-
#define EPD_RESET 5 // can set to -1 and share with chip Reset (can't deep sleep)
16+
#define EPD_RESET 8 // can set to -1 and share with chip Reset (can't deep sleep)
1717

1818
//ThinkInk_154_Grayscale4_T8 display(EPD_DC, EPD_RESET, EPD_CS, SRAM_CS, EPD_BUSY);
1919
//ThinkInk_213_Grayscale4_T5 display(EPD_DC, EPD_RESET, EPD_CS, SRAM_CS, EPD_BUSY);

examples/ThinkInk_mono/ThinkInk_mono.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#define EPD_CS 9
1313
#define EPD_DC 10
1414
#define SRAM_CS 6
15-
#define EPD_RESET 5 // can set to -1 and share with microcontroller Reset!
15+
#define EPD_RESET 8 // can set to -1 and share with microcontroller Reset!
1616
#define EPD_BUSY 7 // can set to -1 to not use a pin (will wait a fixed delay)
1717

1818
//ThinkInk_154_Mono_D67 display(EPD_DC, EPD_RESET, EPD_CS, SRAM_CS, EPD_BUSY);

examples/ThinkInk_partial/ThinkInk_partial.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#define EPD_CS 9
1313
#define EPD_DC 10
1414
#define SRAM_CS 6
15-
#define EPD_RESET 5 // can set to -1 and share with microcontroller Reset!
15+
#define EPD_RESET 8 // can set to -1 and share with microcontroller Reset!
1616
#define EPD_BUSY 7 // can set to -1 to not use a pin (will wait a fixed delay)
1717

1818
//ThinkInk_290_Grayscale4_T5 display(EPD_DC, EPD_RESET, EPD_CS, SRAM_CS, EPD_BUSY);

examples/ThinkInk_tricolor/ThinkInk_tricolor.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#define EPD_CS 9 // can be any pin, but required!
1414
#define EPD_BUSY 7 // can set to -1 to not use a pin (will wait a fixed delay)
1515
#define SRAM_CS 6 // can set to -1 to not use a pin (uses a lot of RAM!)
16-
#define EPD_RESET 5 // can set to -1 and share with chip Reset (can't deep sleep)
16+
#define EPD_RESET 8 // can set to -1 and share with chip Reset (can't deep sleep)
1717

1818
//ThinkInk_154_Tricolor_Z17 display(EPD_DC, EPD_RESET, EPD_CS, SRAM_CS, EPD_BUSY);
1919
//ThinkInk_154_Tricolor_RW display(EPD_DC, EPD_RESET, EPD_CS, SRAM_CS, EPD_BUSY);

0 commit comments

Comments
 (0)