Configuration
Configure the Teslemetry Homebridge plugin
Basic Configuration
Configure the plugin through the Homebridge UI or by editing your config.json directly.
Required Settings
| Setting | Description |
|---|---|
| Access Token | Your Teslemetry API access token from teslemetry.com/console |
Optional Settings
| Setting | Default | Description |
|---|---|---|
| Platform Name | Teslemetry | The name for this platform instance |
| Prefix Accessory Names | true | Prefix accessory names with vehicle/site name for easier identification |
| Ignore Vehicles | - | List of vehicle VINs to exclude |
| Ignore Energy Sites | - | List of energy site IDs to exclude |
Example Configuration
{
"platforms": [
{
"platform": "Teslemetry",
"name": "Teslemetry",
"accessToken": "your-access-token-here",
"prefixName": true,
"ignoreVehicles": [],
"ignoreEnergySites": []
}
]
}