1
0
Fork 0
luxonis-cruft/scripts/get-devices.py

8 lines
142 B
Python
Raw Normal View History

2021-07-19 17:48:43 -06:00
#!/usr/bin/python3
import depthai
for device in depthai.Device.getAllAvailableDevices():
print(f"{device.getMxId()} {device.state}")