1
0
forked from IQ.Lvbs/IQ.Pilot
Files
IQ.Pilot/system/hardware/pc/hardware.py
2026-08-22 23:42:42 -05: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