reduces delay on phone answer before checking for hangup button

This commit is contained in:
Brendan Haines 2016-11-01 23:31:18 -06:00
parent 93cb502f88
commit 8e75ca8522

View File

@ -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();
}
}