Skip to content

Commit 14c0be7

Browse files
committed
Updated Inkplate 6 PLUS USB power factory programming
1 parent a80e127 commit 14c0be7

File tree

60 files changed

+123
-15
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+123
-15
lines changed

examples/Inkplate6PLUS/Advanced/Communications/Inkplate6PLUS_Bluetooth_Peripheral_Mode/Inkplate6PLUS_Bluetooth_Peripheral_Mode.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ void setup() // Initialize everything
5151

5252
// Init Inkplate library (you should call this function ONLY ONCE)
5353
// Uncomment this line if you have a USB Power Only Inkplate6PLUS
54+
// Must be called before display.begin()!
5455
//display.setInkplatePowerMode(INKPLATE_USB_PWR_ONLY);
5556
display.begin();
5657

examples/Inkplate6PLUS/Advanced/Communications/Inkplate6PLUS_Bluetooth_Serial/Inkplate6PLUS_Bluetooth_Serial.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ BluetoothSerial SerialBT; // Create SerialBT object for Bluetooth communi
4141
void setup()
4242
{
4343
// Uncomment this line if you have a USB Power Only Inkplate6PLUS
44+
// Must be called before display.begin()!
4445
//display.setInkplatePowerMode(INKPLATE_USB_PWR_ONLY);
4546
display.begin(); // Init Inkplate library (you should call this function ONLY ONCE)
4647
display.clearDisplay(); // Clear frame buffer of display

examples/Inkplate6PLUS/Advanced/Communications/Inkplate6PLUS_EasyC/Inkplate6PLUS_EasyC.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ const float temperatureOffset = 0.0;
3939
void setup()
4040
{
4141
// Uncomment this line if you have a USB Power Only Inkplate6PLUS
42+
// Must be called before display.begin()!
4243
//display.setInkplatePowerMode(INKPLATE_USB_PWR_ONLY);
4344
display.begin(); // Init Inkplate library (you should call this function ONLY ONCE)
4445
display.clearDisplay(); // Clear frame buffer of display

examples/Inkplate6PLUS/Advanced/Communications/Inkplate6PLUS_Second_SPI/Inkplate6PLUS_Second_SPI.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ void setup()
5757
{
5858
// Init Inkplate library (you should call this function ONLY ONCE)
5959
// Uncomment this line if you have a USB Power Only Inkplate6PLUS
60+
// Must be called before display.begin()!
6061
//display.setInkplatePowerMode(INKPLATE_USB_PWR_ONLY);
6162
display.begin();
6263

examples/Inkplate6PLUS/Advanced/DeepSleep/Inkplate6PLUS_Partial_Update_With_Deep_Sleep/Inkplate6PLUS_Partial_Update_With_Deep_Sleep.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ RTC_DATA_ATTR float decimal = PI;
4343
void setup()
4444
{
4545
// Uncomment this line if you have a USB Power Only Inkplate6PLUS
46+
// Must be called before display.begin()!
4647
//display.setInkplatePowerMode(INKPLATE_USB_PWR_ONLY);
4748
display.begin(); // Init Inkplate library (you should call this function ONLY ONCE)
4849
createScreen(); // Function that contains everything that has to be written on screen

examples/Inkplate6PLUS/Advanced/DeepSleep/Inkplate6PLUS_RTC_Alarm_With_Deep_Sleep/Inkplate6PLUS_RTC_Alarm_With_Deep_Sleep.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Inkplate display(INKPLATE_1BIT); // Create an object on Inkplate library and als
2828
void setup()
2929
{
3030
// Uncomment this line if you have a USB Power Only Inkplate6PLUS
31+
// Must be called before display.begin()!
3132
//display.setInkplatePowerMode(INKPLATE_USB_PWR_ONLY);
3233
display.begin(); // Init Inkplate library (you should call this function ONLY ONCE)
3334

examples/Inkplate6PLUS/Advanced/DeepSleep/Inkplate6PLUS_Wake_Up_Button/Inkplate6PLUS_Wake_Up_Button.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ void setup()
3636
{
3737
Serial.begin(115200);
3838
// Uncomment this line if you have a USB Power Only Inkplate6PLUS
39+
// Must be called before display.begin()!
3940
//display.setInkplatePowerMode(INKPLATE_USB_PWR_ONLY);
4041
display.begin();
4142

examples/Inkplate6PLUS/Advanced/DeepSleep/Inkplate6PLUS_Wake_Up_On_Touchscreen/Inkplate6PLUS_Wake_Up_On_Touchscreen.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ void setup()
4141
{
4242
Serial.begin(115200);
4343
// Uncomment this line if you have a USB Power Only Inkplate6PLUS
44+
// Must be called before display.begin()!
4445
//display.setInkplatePowerMode(INKPLATE_USB_PWR_ONLY);
4546
display.begin();
4647

examples/Inkplate6PLUS/Advanced/IO/Inkplate6PLUS_External_IO_Expander/Inkplate6PLUS_External_IO_Expander.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ Inkplate display(INKPLATE_1BIT); // Create an object on Inkplate library and als
3434
void setup()
3535
{
3636
// Uncomment this line if you have a USB Power Only Inkplate6PLUS
37+
// Must be called before display.begin()!
3738
//display.setInkplatePowerMode(INKPLATE_USB_PWR_ONLY);
3839
display.begin(); // Init Inkplate library (you should call this function ONLY ONCE)
3940
display.pinModeIO(LED_PIN,

examples/Inkplate6PLUS/Advanced/IO/Inkplate6PLUS_Internal_IO_Expander/Inkplate6PLUS_Internal_IO_Expander.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ Inkplate display(INKPLATE_1BIT); // Create an object on Inkplate library and als
4040
void setup()
4141
{
4242
// Uncomment this line if you have a USB Power Only Inkplate6PLUS
43+
// Must be called before display.begin()!
4344
//display.setInkplatePowerMode(INKPLATE_USB_PWR_ONLY);
4445
display.begin(); // Init Inkplate library (you should call this function ONLY ONCE)
4546
display.pinModeIO(LED_PIN, OUTPUT,

0 commit comments

Comments
 (0)