Skip to content

Commit 33c9b1f

Browse files
committed
Added Wrover-e fix comment
1 parent 537f3a2 commit 33c9b1f

File tree

8 files changed

+33
-12
lines changed

8 files changed

+33
-12
lines changed

examples/Inkplate10/Advanced_Inkplate_Features/Inkplate_Low_Power/Inkplate_Low_Power.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ void setup()
5050
if (slide > 2)
5151
slide = 0; // We do not have more than 3 images, so roll back to zero
5252

53-
rtc_gpio_isolate(GPIO_NUM_12); // Isolate/disable GPIO12 on ESP32 (only to reduce power consumption in sleep)
53+
// Uncomment this line if your Inkplate is newer than Aug 2021 as newer Inkplates have ESP32 wrover-e chips
54+
// rtc_gpio_isolate(GPIO_NUM_12); // Isolate/disable GPIO12 on ESP32 (only to reduce power consumption in sleep)
5455
esp_sleep_enable_timer_wakeup(TIME_TO_SLEEP * uS_TO_S_FACTOR); // Activate wake-up timer -- wake up after 20s here
5556
esp_deep_sleep_start(); // Put ESP32 into deep sleep. Program stops here.
5657
}

examples/Inkplate10/Advanced_Inkplate_Features/Inkplate_Partial_Update_With_Deep_Sleep/Inkplate_Partial_Update_With_Deep_Sleep.ino

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,11 @@ void setup()
6565
}
6666
esp_sleep_enable_timer_wakeup(TIME_TO_SLEEP *
6767
uS_TO_S_FACTOR); // Set EPS32 to be woken up in 10 seconds (in this case)
68-
rtc_gpio_isolate(GPIO_NUM_12); // Isolate/disable GPIO12 on ESP32 (only to reduce power consumption in sleep)
69-
esp_deep_sleep_start(); // Put ESP32 into deep sleep (low power mode)
68+
69+
// Uncomment this line if your Inkplate is newer than Aug 2021 as newer Inkplates have ESP32 wrover-e chips
70+
// rtc_gpio_isolate(GPIO_NUM_12); // Isolate/disable GPIO12 on ESP32 (only to reduce power consumption in sleep)
71+
72+
esp_deep_sleep_start(); // Put ESP32 into deep sleep (low power mode)
7073
}
7174

7275
void loop()

examples/Inkplate5/Advanced_Inkplate_Features/Inkplate_Low_Power/Inkplate_Low_Power.ino

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ void setup()
4949
if (slide > 2)
5050
slide = 0; // We do not have more than 3 images, so roll back to zero
5151

52-
rtc_gpio_isolate(GPIO_NUM_12); // Isolate/disable GPIO12 on ESP32 (only to reduce power consumption in sleep)
52+
// Uncomment this line if your Inkplate is newer than Aug 2021 as newer Inkplates have ESP32 wrover-e chips
53+
// rtc_gpio_isolate(GPIO_NUM_12); // Isolate/disable GPIO12 on ESP32 (only to reduce power consumption in sleep)
54+
5355
esp_sleep_enable_timer_wakeup(TIME_TO_SLEEP * uS_TO_S_FACTOR); // Activate wake-up timer -- wake up after 20s here
5456
esp_deep_sleep_start(); // Put ESP32 into deep sleep. Program stops here.
5557
}

examples/Inkplate5/Advanced_Inkplate_Features/Inkplate_Partial_Update_With_Deep_Sleep/Inkplate_Partial_Update_With_Deep_Sleep.ino

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,11 @@ void setup()
6464
}
6565
esp_sleep_enable_timer_wakeup(TIME_TO_SLEEP *
6666
uS_TO_S_FACTOR); // Set EPS32 to be woken up in 10 seconds (in this case)
67-
rtc_gpio_isolate(GPIO_NUM_12); // Isolate/disable GPIO12 on ESP32 (only to reduce power consumption in sleep)
68-
esp_deep_sleep_start(); // Put ESP32 into deep sleep (low power mode)
67+
68+
// Uncomment this line if your Inkplate is newer than Aug 2021 as newer Inkplates have ESP32 wrover-e chips
69+
// rtc_gpio_isolate(GPIO_NUM_12); // Isolate/disable GPIO12 on ESP32 (only to reduce power consumption in sleep)
70+
71+
esp_deep_sleep_start(); // Put ESP32 into deep sleep (low power mode)
6972
}
7073

7174
void loop()

examples/Inkplate6/Advanced_Inkplate_Features/Inkplate_Partial_Update_With_Deep_Sleep/Inkplate_Partial_Update_With_Deep_Sleep.ino

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,11 @@ void setup()
6464
}
6565
esp_sleep_enable_timer_wakeup(TIME_TO_SLEEP *
6666
uS_TO_S_FACTOR); // Set EPS32 to be woken up in 10 seconds (in this case)
67-
rtc_gpio_isolate(GPIO_NUM_12); // Isolate/disable GPIO12 on ESP32 (only to reduce power consumption in sleep)
68-
esp_deep_sleep_start(); // Put ESP32 into deep sleep (low power mode)
67+
68+
// Uncomment this line if your Inkplate is newer than Aug 2021 as newer Inkplates have ESP32 wrover-e chips
69+
// rtc_gpio_isolate(GPIO_NUM_12); // Isolate/disable GPIO12 on ESP32 (only to reduce power consumption in sleep)
70+
71+
esp_deep_sleep_start(); // Put ESP32 into deep sleep (low power mode)
6972
}
7073

7174
void loop()

examples/Inkplate6PLUS/Advanced_Inkplate_Features/Inkplate_Partial_Update_With_Deep_Sleep/Inkplate_Partial_Update_With_Deep_Sleep.ino

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,11 @@ void setup()
6464
}
6565
esp_sleep_enable_timer_wakeup(TIME_TO_SLEEP *
6666
uS_TO_S_FACTOR); // Set EPS32 to be woken up in 10 seconds (in this case)
67-
rtc_gpio_isolate(GPIO_NUM_12); // Isolate/disable GPIO12 on ESP32 (only to reduce power consumption in sleep)
68-
esp_deep_sleep_start(); // Put ESP32 into deep sleep (low power mode)
67+
68+
// Uncomment this line if your Inkplate is newer than Aug 2021 as newer Inkplates have ESP32 wrover-e chips
69+
// rtc_gpio_isolate(GPIO_NUM_12); // Isolate/disable GPIO12 on ESP32 (only to reduce power consumption in sleep)
70+
71+
esp_deep_sleep_start(); // Put ESP32 into deep sleep (low power mode)
6972
}
7073

7174
void loop()

examples/InkplateColor/Advanced_Inkplate_Features/Inkplate_Low_Power/Inkplate_Low_Power.ino

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@ void setup()
5050
if (slide > 2)
5151
slide = 0; // We do not have more than 3 images, so roll back to zero
5252

53-
rtc_gpio_isolate(GPIO_NUM_12); // Isolate/disable GPIO12 on ESP32 (only to reduce power consumption in sleep)
53+
// Uncomment this line if your Inkplate is newer than Aug 2021 as newer Inkplates have ESP32 wrover-e chips
54+
// rtc_gpio_isolate(GPIO_NUM_12); // Isolate/disable GPIO12 on ESP32 (only to reduce power consumption in sleep)
55+
56+
5457
esp_sleep_enable_timer_wakeup(TIME_TO_SLEEP * uS_TO_S_FACTOR); // Activate wake-up timer -- wake up after 20s here
5558
esp_deep_sleep_start(); // Put ESP32 into deep sleep. Program stops here.
5659
}

test/test/test.ino

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@ void setup()
5050
Serial.println("Going to sleep...");
5151
esp_sleep_enable_timer_wakeup(SLIDES_CHANGE_SECONDS *
5252
USEC); // Set EPS32 to be woken up in SLIDES_CHANGE_SECONDS seconds (in this case)
53-
rtc_gpio_isolate(GPIO_NUM_12); // Isolate/disable GPIO12 on ESP32 (only to reduce power consumption in sleep)
53+
54+
// Uncomment this line if your Inkplate is newer than Aug 2021 as newer Inkplates have ESP32 wrover-e chips
55+
// rtc_gpio_isolate(GPIO_NUM_12); // Isolate/disable GPIO12 on ESP32 (only to reduce power consumption in sleep)
56+
5457
esp_deep_sleep_start();
5558
}
5659

0 commit comments

Comments
 (0)