Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanups #345

Merged
merged 2 commits into from
Apr 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions src/input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions src/net_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand Down Expand Up @@ -105,7 +105,7 @@ startAP() {
// -------------------------------------------------------------------
// Start Client, attempt to connect to Wifi network
// -------------------------------------------------------------------
void
static void
startClient()
{
DEBUG.print("Connecting to SSID: ");
Expand Down
2 changes: 1 addition & 1 deletion src/ohm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#endif

String ohm_hour = "NotConnected";
int evse_sleep = 0;
static int evse_sleep = 0;

static MongooseHttpClient client;

Expand Down