From f748faa6e813f934449e6ca6e8212dc219da87dd Mon Sep 17 00:00:00 2001 From: Brendan Haines Date: Fri, 2 Dec 2016 19:43:25 -0700 Subject: [PATCH] removes remaining usb debug stuff --- Hohm_Phone.ino | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Hohm_Phone.ino b/Hohm_Phone.ino index 02c7d15..cbb84eb 100644 --- a/Hohm_Phone.ino +++ b/Hohm_Phone.ino @@ -18,8 +18,6 @@ // Low battery light threshold #define CHG_VLO 3900 -#define MAG_SENSE A1 - // Keypad pinout byte rowPins[4] = {5, 10, 9, 7}; byte colPins[3] = {6, 4, 8}; @@ -43,7 +41,6 @@ bool dialtoneActive = false; bool startDialtone = false; HardwareSerial *fonaSerial = &Serial; - Adafruit_FONA fona = Adafruit_FONA(GSM_RST); Keypad keypad = Keypad( makeKeymap(keys), rowPins, colPins, 4, 3 ); @@ -56,9 +53,6 @@ void inCall() { while (1) { if ( !digitalRead(BUT_END) || fona.getCallStatus() < 3 ) { // End button pressed fona.hangUp(); -#ifdef USB_DEBUG - Serial.println("Hanging up"); -#endif break; }