From 07dc80963e8b6f963c0e9010e4271d300c0728fd Mon Sep 17 00:00:00 2001 From: kicker22004 Date: Mon, 25 Nov 2019 21:34:47 -0800 Subject: [PATCH] Correct Button order --- examples/Watchy_Button_Test/Watchy_Button_Test.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Watchy_Button_Test/Watchy_Button_Test.ino b/examples/Watchy_Button_Test/Watchy_Button_Test.ino index 5dc7d7b..a357edb 100644 --- a/examples/Watchy_Button_Test/Watchy_Button_Test.ino +++ b/examples/Watchy_Button_Test/Watchy_Button_Test.ino @@ -25,8 +25,8 @@ #define RTC_PIN GPIO_NUM_33 #define BTN_1 GPIO_SEL_39 #define BTN_2 GPIO_SEL_36 -#define BTN_3 GPIO_SEL_35 -#define BTN_4 GPIO_SEL_34 +#define BTN_3 GPIO_SEL_34 +#define BTN_4 GPIO_SEL_35 #define BTN_PIN_MASK BTN_1|BTN_2|BTN_3|BTN_4 DS3232RTC RTC(false);