Skip to content

Commit 4de5c5e

Browse files
committed
Fixed epaper power up sequence
Default TPS65186 power up sequence had swapped VEE and VNEG sequence.
1 parent b1bf1d9 commit 4de5c5e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/Inkplate.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,12 @@ int Inkplate::einkOn()
104104
Wire.beginTransmission(0x48);
105105
Wire.write(0x01);
106106
Wire.write(B00101111);
107+
Wire.endTransmission();
108+
109+
// Modify power up sequence (VEE and VNEG are swapped)
110+
Wire.beginTransmission(0x48);
111+
Wire.write(0x09);
112+
Wire.write(B11100001);
107113
Wire.endTransmission();
108114

109115
delay(1);

0 commit comments

Comments
 (0)