We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73a37ca commit 9dd276dCopy full SHA for 9dd276d
Adafruit_SSD1676.cpp
@@ -1,11 +1,6 @@
1
#include "Adafruit_SSD1676.h"
2
#include "Adafruit_EPD.h"
3
4
-
5
-#define EPD_CS 10
6
-#define EPD_DC 9
7
-#define EPD_RESET 5 // can set to -1 and share with microcontroller Reset!
8
-#define EPD_BUSY 6 // can set to -1 to not use a pin (will wait a fixed delay)
9
#define BUSY_WAIT 500
10
11
/**************************************************************************/
@@ -122,8 +117,8 @@ void Adafruit_SSD1676::update() {
122
117
uint8_t buf[1];
123
118
124
119
// display update sequence
125
- //buf[0] = 0xC7;
126
- //EPD_command(SSD1676_DISP_CTRL2, buf, 1);
120
+ buf[0] = 0xF4;
121
+ EPD_command(SSD1676_DISP_CTRL2, buf, 1);
127
128
EPD_command(SSD1676_MASTER_ACTIVATE);
129
busy_wait();
0 commit comments