From 177401f7c0a35f1af8f9a286065a49a813e4a9b5 Mon Sep 17 00:00:00 2001 From: John Janus Date: Fri, 6 Oct 2017 11:05:17 +0200 Subject: [PATCH] switch PUD off at the end --- simple_try.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/simple_try.c b/simple_try.c index fdfaa6b..32f4298 100644 --- a/simple_try.c +++ b/simple_try.c @@ -194,9 +194,9 @@ int main(void) { digitalWrite(CHNL1LED, HIGH); digitalWrite(CHNL2LED, HIGH); digitalWrite(INTROLED, HIGH); - pullUpDnControl(PWRBTN, PUD_DOWN); - pullUpDnControl(CHNL1BTN, PUD_DOWN); - pullUpDnControl(CHNL2BTN, PUD_DOWN); - pullUpDnControl(INTROBTN, PUD_DOWN); + pullUpDnControl(PWRBTN, PUD_OFF); + pullUpDnControl(CHNL1BTN, PUD_OFF); + pullUpDnControl(CHNL2BTN, PUD_OFF); + pullUpDnControl(INTROBTN, PUD_OFF); } -- 2.47.1