mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-21 16:27:19 +00:00
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:
parent
64dc7f5442
commit
44dc93d5da
@ -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;
|
||||
}
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user