├── .gitattributes ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── CNAME ├── LICENSE ├── README.md ├── RS485-WiFi-EPEver.ino.d1_mini.bin ├── RS485-WiFi-EPEver.ino.d1_mini.bin.gz ├── RS485-Wifi-Case-V2 ├── Base.stl ├── Lid.stl └── RS485-WiFi v2.step ├── Schematic └── Schematic_RS485 to wifi 1.5.pdf ├── _config.yml ├── epever-upower.yaml ├── epever.yaml ├── images ├── Board-Image.PNG ├── ESPHome flasher download.PNG └── Flashing.PNG ├── platformio.ini └── src ├── RS485-WiFi-EPEver.ino ├── config.h ├── gui.h ├── influxdb.h ├── mqtt.h ├── settings.cpp └── settings.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | rs485towifi.eplop.co.uk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/README.md -------------------------------------------------------------------------------- /RS485-WiFi-EPEver.ino.d1_mini.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/RS485-WiFi-EPEver.ino.d1_mini.bin -------------------------------------------------------------------------------- /RS485-WiFi-EPEver.ino.d1_mini.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/RS485-WiFi-EPEver.ino.d1_mini.bin.gz -------------------------------------------------------------------------------- /RS485-Wifi-Case-V2/Base.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/RS485-Wifi-Case-V2/Base.stl -------------------------------------------------------------------------------- /RS485-Wifi-Case-V2/Lid.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/RS485-Wifi-Case-V2/Lid.stl -------------------------------------------------------------------------------- /RS485-Wifi-Case-V2/RS485-WiFi v2.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/RS485-Wifi-Case-V2/RS485-WiFi v2.step -------------------------------------------------------------------------------- /Schematic/Schematic_RS485 to wifi 1.5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/Schematic/Schematic_RS485 to wifi 1.5.pdf -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/_config.yml -------------------------------------------------------------------------------- /epever-upower.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/epever-upower.yaml -------------------------------------------------------------------------------- /epever.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/epever.yaml -------------------------------------------------------------------------------- /images/Board-Image.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/images/Board-Image.PNG -------------------------------------------------------------------------------- /images/ESPHome flasher download.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/images/ESPHome flasher download.PNG -------------------------------------------------------------------------------- /images/Flashing.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/images/Flashing.PNG -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/RS485-WiFi-EPEver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/src/RS485-WiFi-EPEver.ino -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/src/config.h -------------------------------------------------------------------------------- /src/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/src/gui.h -------------------------------------------------------------------------------- /src/influxdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/src/influxdb.h -------------------------------------------------------------------------------- /src/mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/src/mqtt.h -------------------------------------------------------------------------------- /src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/src/settings.cpp -------------------------------------------------------------------------------- /src/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickey/RS485-WiFi-EPEver/HEAD/src/settings.h --------------------------------------------------------------------------------