Skip to content

Commit

Permalink
all files: rename evse.cpp/evse.h to main.cpp/main.h
Browse files Browse the repository at this point in the history
  • Loading branch information
dingo35 committed Oct 20, 2024
1 parent 651e69f commit 46fc67c
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion SmartEVSE-3/include/meter.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

#define __EVSE_METER

#include "evse.h"
#include "main.h"


extern struct EMstruct EMConfig[EM_CUSTOM + 1];
Expand Down
2 changes: 1 addition & 1 deletion SmartEVSE-3/src/OneWire.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include <string.h>
#include <Preferences.h>

#include "evse.h"
#include "main.h"
#include "utils.h"
#include "OneWire.h"
#include "OneWireESP32.h"
Expand Down
2 changes: 1 addition & 1 deletion SmartEVSE-3/src/glcd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include <SPI.h>
#include <WiFi.h>

#include "evse.h"
#include "main.h"
#include "glcd.h"
#include "utils.h"
#include "meter.h"
Expand Down
2 changes: 1 addition & 1 deletion SmartEVSE-3/src/evse.cpp → SmartEVSE-3/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

#include <soc/rtc_io_struct.h>

#include "evse.h"
#include "main.h"
#include "glcd.h"
#include "utils.h"
#include "OneWire.h"
Expand Down
2 changes: 1 addition & 1 deletion SmartEVSE-3/src/network.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include <ArduinoJson.h>
#include <Preferences.h>

#include "evse.h"
#include "main.h"
#if SMARTEVSE_VERSION == 3
#include "OneWire.h"
#endif
Expand Down
2 changes: 1 addition & 1 deletion SmartEVSE-3/src/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include <stdio.h>
#include <stdlib.h>

#include "evse.h"
#include "main.h"
#include "utils.h"

unsigned long pow_10[10] = {1, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 100000000, 1000000000};
Expand Down

0 comments on commit 46fc67c

Please sign in to comment.