From: John Janus Date: Fri, 6 Oct 2017 09:05:17 +0000 (+0200) Subject: switch PUD off at the end X-Git-Url: https://git.johnzone.org/?a=commitdiff_plain;h=177401f7c0a35f1af8f9a286065a49a813e4a9b5;p=FakeRadio.git switch PUD off at the end --- 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); }