You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How to use the latest pypowerwall to connect to the Powerwall gateway TEDAPI interface:
First, you need to create a network route to get to that endpoint via your local network (or direct connect to the Gateway's WiFi access point):
# Change 192.168.0.100 to the lP address of the Powerwall gateway on your LAN# Linux Ubuntu and RPi - Can add to /etc/rc.local for persistence
sudo ip route add 192.168.91.1 via 192.168.0.100
# MacOS
sudo route add -host 192.168.91.1 192.168.0.100 # Temporary
networksetup -setadditionalroutes Wi-Fi 192.168.91.1 255.255.255.255 192.168.0.100 # Persistent# Windows - Using persistence flag - Administrator Shell
route -p add 192.168.91.1 mask 255.255.255.255 192.168.0.100
Next, find the Gateway WiFi password that is typically located on the QR code on the gateway itself. Use that to connect with something like this:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
How to use the latest pypowerwall to connect to the Powerwall gateway TEDAPI interface:
First, you need to create a network route to get to that endpoint via your local network (or direct connect to the Gateway's WiFi access point):
Next, find the Gateway WiFi password that is typically located on the QR code on the gateway itself. Use that to connect with something like this:
Research on TEDAPI: jasonacox/Powerwall-Dashboard#392
Beta Was this translation helpful? Give feedback.
All reactions