7 lines
175 B
Python
7 lines
175 B
Python
from opendbc.car.interfaces import CarControllerBase
|
|
|
|
|
|
class CarController(CarControllerBase):
|
|
def update(self, CC, CS, now_nanos):
|
|
return CC.actuators.as_builder(), []
|