From 8e75ca8522e5b5b8a82cf7c9c0ea7e45eb51ab50 Mon Sep 17 00:00:00 2001 From: Brendan Haines Date: Tue, 1 Nov 2016 23:31:18 -0600 Subject: [PATCH] reduces delay on phone answer before checking for hangup button --- Hohm_Phone.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Hohm_Phone.ino b/Hohm_Phone.ino index d58dcc6..a0f3552 100644 --- a/Hohm_Phone.ino +++ b/Hohm_Phone.ino @@ -169,7 +169,7 @@ void loop() { while ( digitalRead(BUT_ANS) & !digitalRead(GSM_RING) ) delay(10); // Wait for answer button or end ring/call if ( !digitalRead(BUT_ANS) ) { fona.pickUp(); - delay(500); + delay(50); inCall(); } }