diff --git a/README.md b/README.md index a20e2c3..d4170ea 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,12 @@ -# Domoticz-Growatt-Webserver-PVOUTPUT-Plugin +# Domoticz-Growatt-Webserver-Plugin A Domoticz Python Plugin that can read data from the Growatt webserver interface into your Domoticz. -This version can optional upload LIVE data to PVOUTPUT - ![devices](https://github.com/sincze/Domoticz-Growatt-Webserver-Plugin/blob/master/Growatt-Image.png) ## ONLY TESTED FOR Raspberry Pi -With Python version 3.7 Domoticz V2020.1 (stable) +With Python version 3.5 & Domoticz V4.11214 (beta) / Domoticz V2020.1 (stable) ## Installation @@ -17,8 +15,8 @@ Assuming that domoticz directory is installed in your home directory. ```bash cd ~/domoticz/plugins -git clone https://github.com/HarryVerjans/domoticz-growatt-webserver-pvoutput-plugin -cd domoticz-growatt-webserver-pvoutput-plugin +git clone https://github.com/sincze/Domoticz-Growatt-Webserver-Plugin +cd Domoticz-Growatt-Webserver-Plugin # restart domoticz: sudo /etc/init.d/domoticz.sh restart @@ -44,11 +42,8 @@ sudo /etc/init.d/domoticz.sh restart | **Portal Password** | Password of the Inverter portal | | **Protocol** | For Growatt inverters this is usually HTTP | | **Debug** | default is 0 | -| **PVOUTPUT systemid** | default is "" | -| **PVOUTPUT apikey** | default is "" | ## Acknowledgements * Special thanks for all the hard work of [Dnpwwo](https://github.com/dnpwwo), for the examples and fixing the framework for COOKIE usage. -* Special thanks for all the hard work on the original project Domoticz import of [sincze](https://github.com/sincze) * Domoticz team diff --git a/plugin.py b/plugin.py index 3414878..1d4505b 100644 --- a/plugin.py +++ b/plugin.py @@ -1,20 +1,20 @@ -############################################################################################ +######################################################################################## # Growatt Inverter Python Plugin for Domoticz # -# # +# # # MIT License # -# # +# # # Copyright (c) 2018 tixi # -# # +# # # Permission is hereby granted, free of charge, to any person obtaining a copy # # of this software and associated documentation files (the "Software"), to deal # # in the Software without restriction, including without limitation the rights # # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # # copies of the Software, and to permit persons to whom the Software is # # furnished to do so, subject to the following conditions: # -# # +# # # The above copyright notice and this permission notice shall be included in all # # copies or substantial portions of the Software. # -# # +# # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # @@ -22,20 +22,19 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # # SOFTWARE. # -# # -# Author: sincze # -# # -# This plugin will read the status from the running inverter via the webservice. # -# # -# V 1.0.0. 25-08-2019 Initial Release # -# V 2.0.0. 17-08-2021 Added pvoutput upload between 06:00 and 23:00 # -############################################################################################ +# # +# Author: sincze # +# # +# This plugin will read the status from the running inverter via the webservice. # +# # +# V 1.0.0. Initial Release (25-08-2019) # +######################################################################################## """ - + -

Retrieve available Growatt Inverter information from the webservice


+

Retrieve available Growatt Inverter information from the webservice


@@ -47,8 +46,6 @@