diff --git a/src/input.cpp b/src/input.cpp index a97e387b..2b80f998 100644 --- a/src/input.cpp +++ b/src/input.cpp @@ -22,12 +22,6 @@ #include "RapiSender.h" -int espflash = 0; -int espfree = 0; - -long current_scale = 0; -long current_offset = 0; - class InputTask : public MicroTasks::Task { private: diff --git a/src/net_manager.cpp b/src/net_manager.cpp index 545725c7..10f4386d 100644 --- a/src/net_manager.cpp +++ b/src/net_manager.cpp @@ -61,7 +61,7 @@ static bool eth_connected = false; // Start Access Point // Access point is used for wifi network selection // ------------------------------------------------------------------- -void +static void startAP() { DBUGLN("Starting AP"); @@ -105,7 +105,7 @@ startAP() { // ------------------------------------------------------------------- // Start Client, attempt to connect to Wifi network // ------------------------------------------------------------------- -void +static void startClient() { DEBUG.print("Connecting to SSID: "); diff --git a/src/ohm.cpp b/src/ohm.cpp index d0ad9315..c60ea0c1 100644 --- a/src/ohm.cpp +++ b/src/ohm.cpp @@ -15,7 +15,7 @@ #endif String ohm_hour = "NotConnected"; -int evse_sleep = 0; +static int evse_sleep = 0; static MongooseHttpClient client;