Files
onepilot/system/hardware/pc/hardware.py
T
Vehicle Researcher 8069b6611d openpilot v0.11.1
2026-04-09 09:29:51 +00:00

13 lines
252 B
Python

from cereal import log
from openpilot.system.hardware.base import HardwareBase
NetworkType = log.DeviceState.NetworkType
class Pc(HardwareBase):
def get_device_type(self):
return "pc"
def get_network_type(self):
return NetworkType.wifi