Update solax.markdown (#11696)

* Update solax.markdown

* grammar and simplify

* Apply suggestions from code review

Co-Authored-By: Franck Nijhof <frenck@frenck.nl>

Co-authored-by: Franck Nijhof <frenck@frenck.nl>
This commit is contained in:
Daniel Powell 2020-01-12 19:24:44 +10:00 committed by Franck Nijhof
parent 64dc7f5442
commit 44dc93d5da

View File

@ -56,3 +56,16 @@ sensors:
value_template: "{{ (states('sensor.power_now') | float) - (states('sensor.exported_power') | float) }}"
```
{% endraw %}
### Note
Inverter models with newer firmware (and also those using devices like PocketWifi) no longer expose an API when connected to your wireless network, they do however continue to expose it on their own broadcasted SSID. To use this sensor in this case it is necessary to set up a reverse proxy with something like Nginx and use a raspberry pi (or similar) with two network connections (one being wifi that connects to the inverters SSID).
Example Nginx configuration
```text
location / {
proxy_pass http://5.8.8.8;
}
```