Skip to content

Commit 41d179e

Browse files
committed
fix(examples): Add changes required to some examples
1 parent f46725e commit 41d179e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

libraries/ESP32/examples/DeepSleep/TouchWakeUp/TouchWakeUp.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Method to print the touchpad by which ESP32
4848
has been awaken from sleep
4949
*/
5050
void print_wakeup_touchpad() {
51-
touchPin = esp_sleep_get_touchpad_wakeup_status();
51+
touchPin = (touch_pad_t)esp_sleep_get_touchpad_wakeup_status();
5252

5353
#if CONFIG_IDF_TARGET_ESP32
5454
switch (touchPin) {

libraries/RainMaker/examples/RMakerCustomAirCooler/ci.json

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
2+
"targets": {
3+
"esp32": false
4+
},
25
"fqbn_append": "PartitionScheme=rainmaker_4MB",
36
"requires": [
47
"CONFIG_ESP_RMAKER_WORK_QUEUE_TASK_STACK=[1-9][0-9]*"

0 commit comments

Comments
 (0)