Files
IQ.Pilot/iqpilot/system/hardware/pc/hardware.py
2026-08-27 20:17:33 -05:00

13 lines
258 B
Python

from iqpilot.cereal import log
from iqpilot.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