Replies: 1 comment
-
I changed the grottext.py (see #356). does this helps? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using the Growatt Solar Inverter Binding (https://community.openhab.org/t/growatt-solar-inverter-binding-4-0-0-4-2-0/150600)
This requires, according to Readme.md to use the following setting:
[extension] // enable the 'grottext' extension
extension = True
extname = grottext
extvar = {"url": "http://127.0.0.1:8080/growatt"} // or ip address of openHAB (if remote)
This does NOT work for me.
I had to use:
extvar = {"ip": "127.0.0.1", "port" : "8080"}
AND changed in grottext.py:
url = "http://" + conf.extvar["ip"] + ":" + str(conf.extvar["port"] + "/growatt")
Beta Was this translation helpful? Give feedback.
All reactions