https://github.com/tillsteinbach/carconnectivity-plugin-abrp
Plugin for connecting CarConnectivity with A Better Route Planner (ABRP). Enables vehicle telemetry of various brands in ABRP without additional OBD hardware or paid services.
https://github.com/tillsteinbach/carconnectivity-plugin-abrp
abrp route-planner route-planning routeplanner telemetry telemetry-data
Last synced: 4 days ago
JSON representation
Plugin for connecting CarConnectivity with A Better Route Planner (ABRP). Enables vehicle telemetry of various brands in ABRP without additional OBD hardware or paid services.
- Host: GitHub
- URL: https://github.com/tillsteinbach/carconnectivity-plugin-abrp
- Owner: tillsteinbach
- License: mit
- Created: 2025-01-03T14:31:50.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-05-05T04:34:55.000Z (15 days ago)
- Last Synced: 2025-05-05T05:30:30.150Z (14 days ago)
- Topics: abrp, route-planner, route-planning, routeplanner, telemetry, telemetry-data
- Language: Python
- Homepage: https://github.com/tillsteinbach/CarConnectivity
- Size: 60.5 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# CarConnectivity Plugin for ABRP - A Better Routeplanner
[](https://github.com/tillsteinbach/CarConnectivity-plugin-abrp/)
[](https://github.com/tillsteinbach/CarConnectivity-plugin-abrp/releases/latest)
[](https://github.com/tillsteinbach/CarConnectivity-plugin-abrp/blob/master/LICENSE)
[](https://github.com/tillsteinbach/CarConnectivity-plugin-abrp/issues)
[](https://pypi.org/project/carconnectivity-plugin-abrp/)
[](https://pypi.org/project/carconnectivity-plugin-abrp/)
[](https://www.paypal.com/donate?hosted_button_id=2BVFF5GJ9SXAJ)
[](https://github.com/sponsors/tillsteinbach)[CarConnectivity](https://github.com/tillsteinbach/CarConnectivity) is a python API to connect to various car services. If you want to automatically forward the data collected from your vehicle to [A Better Routeplanner (ABRP)](https://abetterrouteplanner.com) this plugin will help you.
### Install using PIP
If you want to use the CarConnectivity Plugin for ABRP, the easiest way is to obtain it from [PyPI](https://pypi.org/project/carconnectivity-plugin-abrp/). Just install it using:
```bash
pip3 install carconnectivity-plugin-abrp
```
after you installed CarConnectivity## Configuration
In your carconnectivity.json configuration add a section for the abrp plugin like this. A documentation of all possible config options can be found [here](https://github.com/tillsteinbach/CarConnectivity-plugin-abrp/tree/main/doc/Config.md).
```
{
"carConnectivity": {
"connectors": [
...
]
"plugins": [
{
"type": "abrp",
"config": {
"tokens": {
"TMBLJ9NY8SF000000": "1623fdc3-4aaf-49f5-b51a-1e55435435da2",
"TMLLJ9NY23F000000": "12afe123-59d4-8a3d-b9ef-29367de7f8749"
}
}
}
]
}
}
```
To retrieve your token go to your vehicle on [A Better Routeplanner (ABRP)[https://abetterrouteplanner.com) select "Live Data" and then link your vehicle using the "Generic" section. It will display you the token to paste in the configuration. You need to configure a mapping between the VIN and the token for each vehicle you want to connect to [ABRP[https://abetterrouteplanner.com)## Updates
If you want to update, the easiest way is:
```bash
pip3 install carconnectivity-plugin-abrp --upgrade
```