openpilot/tools
Willem Melching e9c4a75a5c
Remove dockerhub references from CI (#20038)
* cache from base image

* specify github repo
2021-02-08 11:53:47 +01:00
..
carcontrols Cereal cleanup (#20003) 2021-02-03 19:57:30 -08:00
clib NUI comma api intergration (#1186) 2020-03-01 22:06:33 -08:00
lib move to github container registry + CI speedup (#19621) 2020-12-31 14:57:01 -08:00
livedm enable flake8 E502: backslash is redundant between brackets 2020-05-31 17:41:18 -07:00
misc merge in tools 2020-01-17 10:07:22 -08:00
nui Cereal cleanup (#20003) 2021-02-03 19:57:30 -08:00
replay ui.py fix current steering angle 2021-02-04 22:39:49 +01:00
scripts script to add ssh keys 2020-10-15 13:35:05 +02:00
sim Remove dockerhub references from CI (#20038) 2021-02-08 11:53:47 +01:00
ssh Improve on-device CI reliability (#1922) 2020-07-25 02:12:19 -07:00
streamer enable flake8 E231: missing whitespace after comma 2020-05-31 12:49:11 -07:00
webcam Remove dockerhub references from CI (#20038) 2021-02-08 11:53:47 +01:00
LICENSE merge in tools 2020-01-17 10:07:22 -08:00
README.md Update config.py code (#19609) 2020-12-28 15:36:23 -08:00
__init__.py merge in tools 2020-01-17 10:07:22 -08:00
mac_setup.sh fix mac CI (#19829) 2021-01-18 17:28:30 -08:00
openpilot_build.sh build script that uses docker container (#1944) 2020-08-30 17:02:36 -07:00
openpilot_env.sh Setup script improvements to MacOS / Ubuntu (#2012) 2020-08-14 18:03:55 -07:00
steer.gif merge in tools 2020-01-17 10:07:22 -08:00
stream.gif merge in tools 2020-01-17 10:07:22 -08:00
ubuntu_setup.sh update libs (#20009) 2021-02-03 17:09:49 +01:00

README.md

openpilot tools

tools to facilitate development and debugging of openpilot

Imgur

Table of Contents

Requirements

openpilot tools and the following setup steps are developed and tested on Ubuntu 20.04, MacOS 10.14.2 and Python 3.8.2.

Setup

  1. Run ubuntu_setup.sh or mac_setup.sh, and make sure that everything completed correctly

  2. Compile openpilot by running scons in the openpilot directory or alternatively run ./openpilot_build.sh (uses a pre-configured docker container)

  3. Try out some tools!

Tool examples

Replay driving data

Hardware needed: none

unlogger.py replays data collected with dashcam or openpilot.

Unlogger with remote data:

# Log in via browser
python lib/auth.py

# Start unlogger
python replay/unlogger.py <route-name>
#Example:
#python replay/unlogger.py '3533c53bb29502d1|2019-12-10--01-13-27'

# In another terminal you can run a debug visualizer:
python replay/ui.py   # Define the environmental variable HORIZONTAL is the ui layout is too tall

Unlogger with local data downloaded from device or https://my.comma.ai:

python replay/unlogger.py <route-name> <path-to-data-directory>

#Example:

#python replay/unlogger.py '99c94dc769b5d96e|2018-11-14--13-31-42' /home/batman/unlogger_data

#Within /home/batman/unlogger_data:
#  99c94dc769b5d96e|2018-11-14--13-31-42--0--fcamera.hevc
#  99c94dc769b5d96e|2018-11-14--13-31-42--0--rlog.bz2
#  ...

Imgur

LogReader with remote data

from tools.lib.logreader import LogReader
from tools.lib.route import Route
route = Route('3533c53bb29502d1|2019-12-10--01-13-27')
log_paths = route.log_paths()
events_seg0 = list(LogReader(log_paths[0]))
print(len(events_seg0), 'events logged in first segment')

Debug car controls

Hardware needed: panda, giraffe, joystick

Use the panda's OBD-II port to connect with your car and a usb cable to connect the panda to your pc. Also, connect a joystick to your pc.

joystickd.py runs a deamon that reads inputs from a joystick and publishes them over zmq. boardd sends the CAN messages from your pc to the panda. debug_controls is a mocked version of controlsd.py and uses input from a joystick to send controls to your car.

Make sure the conditions are met in the panda to allow controls (e.g. cruise control engaged). You can also make a modification to the panda code to always allow controls.

Usage:

python carcontrols/joystickd.py

# In another terminal:
BASEDIR=$(pwd) selfdrive/boardd/boardd

# In another terminal:
python carcontrols/debug_controls.py

Imgur

Stream replayed CAN messages to EON

Hardware needed: 2 x panda, debug board, EON.

It is possible to replay CAN messages as they were recorded and forward them to a EON.  Connect 2 pandas to the debug board. A panda connects to the PC, the other panda connects to the EON.

Usage:

# With MOCK=1 boardd will read logged can messages from a replay and send them to the panda.
MOCK=1 selfdrive/boardd/tests/boardd_old.py

# In another terminal:
python replay/unlogger.py <route-name> <path-to-data-directory>

Imgur

Stream EON video data to a PC

Hardware needed: EON, comma Smays.

You can connect your EON to your pc using the Ethernet cable provided with the comma Smays and you'll be able to stream data from your EON, in real time, with low latency. A useful application is being able to stream the raw video frames at 20fps, as captured by the EON's camera.

Usage:

# ssh into the eon and run loggerd with the flag "--stream". In ../selfdrive/manager.py you can change:
# ...
# "loggerd": ("selfdrive/loggerd", ["./loggerd"]),
# ...
# with:
# ...
# "loggerd": ("selfdrive/loggerd", ["./loggerd", "--stream"]),
# ...

# On the PC:
# To receive frames from the EON and re-publish them. Set PYGAME env variable if you want to display the video stream
python streamer/streamerd.py

Imgur

Welcomed contributions

  • Documentation: code comments, better tutorials, etc..
  • Support for other platforms other than Ubuntu 20.04.
  • Performance improvements: the tools have been developed on high-performance workstations (12+ logical cores with 32+ GB of RAM), so they are not optimized for running efficiently. For example, ui.py might not be able to run real-time on most PCs.
  • More tools: anything that you think might be helpful to others.