|
3 years ago | |
---|---|---|
.. | ||
WemosD1_NRF24_Case | 3 years ago | |
html | 3 years ago | |
include | 3 years ago | |
scripts | 3 years ago | |
.gitignore | 3 years ago | |
CHANGES.md | 3 years ago | |
CircularBuffer.h | 3 years ago | |
README.md | 3 years ago | |
User_Manual.md | 3 years ago | |
ahoywifi.cpp | 3 years ago | |
ahoywifi.h | 3 years ago | |
app.cpp | 3 years ago | |
app.h | 3 years ago | |
config.h | 3 years ago | |
crc.cpp | 3 years ago | |
crc.h | 3 years ago | |
defines.h | 3 years ago | |
eep.h | 3 years ago | |
favicon.h | 3 years ago | |
hmDefines.h | 3 years ago | |
hmInverter.h | 3 years ago | |
hmRadio.h | 3 years ago | |
hmSystem.h | 3 years ago | |
main.cpp | 3 years ago | |
mqtt.h | 3 years ago | |
platformio.ini | 3 years ago | |
web.cpp | 3 years ago | |
web.h | 3 years ago |
README.md
OVERVIEW
This code is intended to run on a Wemos D1mini or similar. The code is based on 'Hubi's code, which can be found here: https://www.mikrocontroller.net/topic/525778?page=3#7033371
The NRF24L01+ radio module is connected to the standard SPI pins. Additional there are 3 pins, which can be set individual: CS, CE and IRQ These pins can be changed from the /setup URL
Compile
This code can be compiled using Visual Studio Code and PlatformIO Addon. The settings were:
- Board: Generic ESP8266 Module
- Flash-Size: 1MB (FS: none, OTA: 502kB)
- Install libraries (not included in the Arduino IDE 1.8.19):
- Time Arduino Time library (TimeLib.h)
- RF24 Optimized high speed nRF24L01+ driver class documentation
- PubSubClient A client library for MQTT messaging. By Nick O'Leary
- ArduinoJson Arduino Json library
Optional Configuration before compilation
- number of supported inverters (set to 3 by default)
defines.h
- DTU radio id
hmRadio.h
- unformated list in webbrowser
/livedata
config.h
,LIVEDATA_VISUALIZED
Flash ESP with firmware
- flash the ESP with the compiled firmware using the UART pins or any preinstalled firmware with OTA capabilities
- repower the ESP
- the ESP will start as access point (AP) if there is no network config stored in its eeprom
- connect to the AP, you will be forwarded to the setup page
- configure your WiFi settings, save, repower
- check your router or serial console for the IP address of the module. You can try ping the configured device name as well.
Usage
Connect the ESP to power and to your serial console (optional). The webinterface has the following abilities:
- OTA Update (over the air update)
- Configuration (Wifi, inverter(s), Pinout, MQTT)
- visual display of the connected inverters / modules
- some statistics about communication (debug)
The serial console will print the converted values which were read out of the inverter(s)
Compatiblity
For now the following inverters should work out of the box:
- HM350
- HM400
- HM600
- HM700
- HM800
- HM1200
- HM1500
USED LIBRARIES
ESP8266WiFi
1.0DNSServer
1.1.0Ticker
1.0ESP8266HTTPUpdateServer
1.0Time
1.6.1RF24
1.4.5PubSubClient
2.8ArduinoJson
6.19.4
Todo's See this post
- Wechsel zu AsyncWebServer und ElegantOTA für Stabilität
- klarer Scheduler / Task manager, der ggf. den Receive Task priorisieren kann
- Device Info Kommandos (Firmware Version, etc.) über das Dashboard anzeigen Device Information (
0x15
REQ_ARW_DAT_ALL
) SubCmd Kommandos #145 - AlarmData & AlarmUpdate Parsen und auf eigener Seite darstellen
------------------ SWIM LANE ---------------------------
- Device Control Kommandos aus dem Setup ermöglichen (TurnOn, TurnOff, Restart, ActivePower Limit, ReactivePower Limit, SetPowerFactor, etc.)
- Settings exportieren / importieren (API/UI)
- Settings in settings.ini speichern (LittleFS statt EEPROM) Settings in settings.ini speichern (LittleFS statt EEPROM) #164
- Homepage aufräumen nur ein Status (aktuell drei AJAX Calls /uptime, /time, /cmdstat)
- app.cpp aufräumen und in hmRadio / hmProtokollGen3 auslagern
- MI Wechselrichter unterstützen (miSystem, miInverter, miDefines, miProtokollGen2 etc.)
- nRF24 Interrupt Handling sinnvoll oder warum macht die nRF24 Bibliothek ständig
0x07
Statusabfragen NRF24 polling trotz aktiviertem IRQ #83 - Debug Level im Setup änderbar -auch Livedata Visualisierung abschalten ?
- MQTT Discovery (HomeAssistant) im Setup optional machen
- MQTT Subscribe nur beim Reconnect Das subscribe in der Reconnect Procedure sollte doch nur nach einem conect ausgeführt werden und nicht bei jedem Duchlauf #139