jsgoecke / tesla

Provides a wrapper around the API to easily query and command a Telsa car. As of now this has been used with a Model S, a Model X, and a Model 3.
MIT License
325 stars 72 forks source link

[Question] Powerwall Applicability #20

Closed johnnyman727 closed 5 years ago

johnnyman727 commented 7 years ago

Hi @jsgoecke,

I was wondering if you have any insight into how adaptable this library could be for controlling a Tesla Powerwall. What would be the challenges with that endeavour?

CWNE88 commented 6 years ago

What control are you looking to do with the Powerwall?

I've done monitoring but only via its own HTTP server, then doing the SNMP via a separate box.

Given that the setup and operation of it is done on client side javascript (about 42000 lines of it), you might be able to take that road and dig into the code.

jnoxon commented 5 years ago

The local API for the Tesla Energy Gateway is pretty well documented and not difficult to use, at least for data collection. That's the route I've taken. The advantage of getting it from the Tesla backend would be access to historical data, which is something I'd be interested in as well.

johnnyman727 commented 5 years ago

Thanks for the feedback, everyone.