mirror of
https://github.com/EyeTrackVR/EyeTrackVR.git
synced 2025-11-04 14:39:42 +08:00
6 lines
105 B
Python
6 lines
105 B
Python
from enum import Enum
|
|
|
|
class CameraState(Enum):
|
|
CONNECTING = 0
|
|
CONNECTED = 1
|
|
DISCONNECTED = 2 |