Skip to content

Commit a297164

Browse files
committed
Removed example touchpad note
1 parent 0147269 commit a297164

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

examples/Inkplate5/Advanced_Inkplate_Features/Inkplate_Touchpads/Inkplate_Touchpads.ino

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
1515
In this example, if you touch first pad, ti will decrese number showed on screen, if you touch thirs touch pad,
1616
it will increase the number, if you touch second touchpad, it will reset number to zero.
17-
18-
NOTE: You can not use touch pads when enclosure is fitted on the Inkplate - they are not that sensitive!
17+
Though with a bit of hacking you can get them to work!
1918
2019
Want to learn more about Inkplate? Visit www.inkplate.io
2120
Looking to get support? Write on our forums: http://forum.e-radionica.com/en/

examples/Inkplate6/Advanced_Inkplate_Features/Inkplate_Touchpads/Inkplate_Touchpads.ino

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
In this example, if you touch first pad, ti will decrese number showed on screen, if you touch thirs touch pad,
1616
it will increase the number, if you touch second touchpad, it will reset number to zero.
1717
18-
NOTE: You can not use touch pads when enclosure is fitted on the Inkplate - they are not that sensitive!
19-
2018
Want to learn more about Inkplate? Visit www.inkplate.io
2119
Looking to get support? Write on our forums: http://forum.e-radionica.com/en/
2220
15 July 2020 by e-radionica.com

examples/Inkplate6COLOR/Advanced_Inkplate_Features/Inkplate_Touchpads/Inkplate_Touchpads.ino

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
In this example, if you touch first pad, ti will decrese number showed on screen, if you touch thirs touch pad,
1616
it will increase the number, if you touch second touchpad, it will reset number to zero.
1717
18-
NOTE: You can not use touch pads when enclosure is fitted on the Inkplate - they are not that sensitive!
19-
2018
Want to learn more about Inkplate? Visit www.inkplate.io
2119
Looking to get support? Write on our forums: http://forum.e-radionica.com/en/
2220
15 July 2020 by e-radionica.com
@@ -35,9 +33,9 @@ int n = 0; // Variable that keeps track on how many times display is partia
3533
void setup()
3634
{
3735
Serial.begin(115200);
38-
display.begin(); // Init Inkplate library (you should call this function ONLY ONCE)
39-
display.clearDisplay(); // Clear frame buffer of display
40-
display.display(); // Put clear image on display
36+
display.begin(); // Init Inkplate library (you should call this function ONLY ONCE)
37+
display.clearDisplay(); // Clear frame buffer of display
38+
display.display(); // Put clear image on display
4139

4240
display.setTextColor(INKPLATE_BLACK);
4341
display.setCursor(10, 10);

0 commit comments

Comments
 (0)