https://github.com/0verbyte/twc-gen3
Tesla Wall Connector (gen 3) monitoring tool
https://github.com/0verbyte/twc-gen3
home-automation monitoring tesla tesla-api tesla-wall-connector
Last synced: about 1 year ago
JSON representation
Tesla Wall Connector (gen 3) monitoring tool
- Host: GitHub
- URL: https://github.com/0verbyte/twc-gen3
- Owner: 0verbyte
- License: mit
- Created: 2024-04-14T17:10:57.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-20T20:17:25.000Z (over 1 year ago)
- Last Synced: 2025-02-10T10:42:11.256Z (over 1 year ago)
- Topics: home-automation, monitoring, tesla, tesla-api, tesla-wall-connector
- Language: Go
- Homepage:
- Size: 2.85 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TWC Gen 3
Simple monitoring server for the Tesla Wall Connector Gen 3

# Features
- Auto discover Wall Connector on network during server startup
- Record Wall Connector stats to sqlite database every second
- Quickly view Wall Connector information as line chart
- Single binary to reduce infrastructure setup
# Deployment
To run the entire application as a single binary, run:
```
% make build
% ./twc-gen3
```
This will build and start the server, which is running at `http://127.0.0.1:8080`.
# Development
Install the following dependencies
- [Go](https://go.dev/doc/install)
- [NodeJS](https://nodejs.org/en/download)
Start the server with `go build && ./twc-gen3`. The web frontend is stored in `web` and can be started by
running `npm start` from this folder.