mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-09-11 09:03:41 +08:00
0e51ecbb7e
version: sunnypilot v2026.003.000 (dev)
date: 2026-09-09T15:43:49
master commit: b255314f5a
9 lines
172 B
Python
9 lines
172 B
Python
from enum import IntEnum
|
|
|
|
|
|
class VisionStreamType(IntEnum):
|
|
VISION_STREAM_NARROW_ROAD = 0
|
|
VISION_STREAM_CABIN = 1
|
|
VISION_STREAM_WIDE_ROAD = 2
|
|
VISION_STREAM_MAP = 3
|