opendbc is a Python API for your car.
Control the gas, brake, steering, and more. Read the speed, steering angle, and more.
Docs · Contribute · Discord
Most cars since 2016 have electronically-actuatable steering, gas, and brakes thanks to LKAS and ACC. The goal of this project is to support controlling the steering, gas, and brakes on every single one of those cars.
While the primary focus is on supporting ADAS interfaces for openpilot, we're also interested in reading and writing as many things as we can (EV charge status, lock/unlocking doors, etc) such that we can build the best vehicle management app ever.
This README and the supported cars list are all the docs for the opendbc project. Everything you need to know to use, contribute, and extend opendbc are in these docs.
git clone https://github.com/commaai/opendbc.git
cd opendbc
pip3 install -e .[testing,docs] # install dependencies
scons -j8 # build with 8 cores
pytest . # run the tests
pre-commit run --all-files # run the linter
./test.sh # all-in-one for setup, build, lint, and test
examples/
contains small example programs that can read state from the car and control the steering, gas, and brakes.
examples/joystick.py
allows you to control a car with a joystick.
opendbc/dbc/
is a repository of DBC filesopendbc/can/
is a library for parsing and building CAN messages from DBC filesopendbc/car/
is a high-level library for interfacing with cars using Python
This guide covers everything from adding support to a new car all the way to improving existing cars (e.g. adding longitudinal control or radar parsing). If similar cars to yours are already compatible, most of this work is likely already done for you.
At its most basic, a car port will control the steering on a car. A "complete" car port will have all of: lateral control, longitudinal control, good tuning for both lateral and longitudinal, radar parsing (if equipped), fuzzy fingerprinting, and more. The new car support docs will clearly communicate each car's support level.
The first step is to get connected to the car with a comma 3X and a car harness. The car harness gets you connected to two different CAN buses and splits one of those buses to send our own actuation messages.
If you're lucky, a harness compatible with your car will already be designed and sold on comma.ai/shop. If you're not so lucky, start with a "developer harness" from comma.ai/shop and crimp on whatever connector you need.
Depending on , most of this basic structure will already be in place.
The entirery of a car port lives in opendbc/car/<brand>/
:
carstate.py
: parses out the relevant information from the CAN stream using the car's DBC filecarcontroller.py
: outputs CAN messages to control the car<brand>can.py
: thin Python helpers around the DBC file to build CAN messagesfingerprints.py
: database of ECU firmware versions for identifying car modelsinterface.py
: high level class for interfacing with the carradar_interface.py
: parses out the radarvalues.py
: enumerates the brand's supported cars
Start off by recording a route with lots of interesting events: enable LKAS and ACC, turn the steering weel both extremes, etc. Then, load up that route in cabana.
Use the longitudinal maneuvers report to evaluate your car's longitudinal control and tune it.
All opendbc development is coordinated on GitHub and Discord. Check out the #dev-opendbc-cars
channel and Vehicle Specific
section.
Short term
-
pip install opendbc
- 100% type coverage
- 100% line coverage
- Make car ports easier: refactors, tools, tests, and docs
- Expose the state of all supported cars better: #1144
Longer term
- Extend support to every car with LKAS + ACC interfaces
- Automatic lateral and longitudinal control/tuning evaluation
- Auto-tuning for lateral and longitudinal control
- Automatic Emergency Braking
Contributions towards anything here are welcome.
Every car port is eligible for a bounty:
- $2000 - Any car brand / platform port
- $250 - Any car model port
- $300 - Reverse Engineering a new Actuation Message
In addition to the standard bounties, we also offer higher value bounties for more popular cars. See those at comma.ai/bounties.
How do I use this? A comma 3X is custom-designed to be the best way to run and develop opendbc and openpilot.
Which cars are supported? See the supported cars list.
Can I add support for my car? Yes, most car support comes from the community. Read the guide here.
Which cars can be supported? Any car with LKAS and ACC. More info here.
How does this work? In short, we designed hardware to replace your car's built-in lane keep and adaptive cruise features. See this talk for an in-depth explanation.
- port: refers to the integration and support of a specific car
- lateral control: aka steering control
- longitudinal control: aka gas/brakes control
- fingerprinting: automatic process for identifying the car
- LKAS: lane keeping assist
- ACC: adaptive cruise control
- harness: car-specific hardware to attach to the car and intercept the ADAS messages
- panda: hardware used to get on a car's CAN bus
- ECU: computers or control modules inside the car
- CAN bus: a bus that connects the ECUs in a car
- cabana: our tool for reverse engineering CAN messages
- DBC file: contains definitions for messages on a CAN bus
- openpilot: an ADAS system for cars supported by opendbc
- comma: the company behind opendbc
- comma 3X: the hardware used to run openpilot
- How Do We Control The Car? by @robbederks from COMMA_CON 2021
- How to Port a Car by @jyoung8607 from COMMA_CON 2023
- commaCarSegments: a massive dataset of CAN data from 300 different car models
- cabana: our tool for reverse engineering CAN messages
- can_print_changes.py: diff the whole CAN bus across two drives, such as one without any LKAS and one with LKAS
- longitudinal maneuvers: a tool for evaluating and tuning longitudinal control
- opendbc data: a repository of longitudinal maneuver evaluations
Come work with us -- comma.ai/jobs
comma is hiring engineers to work on opendbc and openpilot. We love hiring contributors.