Files
IQ.Pilot/opendbc_repo/opendbc/car/mock/carstate.py
2026-07-20 11:06:57 -05:00

8 lines
235 B
Python

from opendbc.car import structs
from opendbc.car.interfaces import CarStateBase
class CarState(CarStateBase):
def update(self, *_) -> tuple[structs.CarState, structs.IQCarState]:
return structs.CarState(), structs.IQCarState()