i am able to find one device info like such
with dai.Device(pipeline) as device:
print(device.getConnectedCameras())
print(device.getMxId())
print(device.getOutputQueueNames())

but when i do the following
for device in depthai.Device.getAllAvailableDevices():
print(device.getConnectedCameras())
print(device.getMxId())
print(device)
print(device.getOutputQueueNames())

it doesnt work :/

  • erik replied to this.

    Hello CodingArcher,
    depthai.Device.getAllAvailableDevices() actually returns DeviceInfo objects not Device objects. Something like this should work:

    import depthai as dai
    for deviceInfo in dai.Device.getAllAvailableDevices():
        device = dai.Device(dai.Pipeline(), deviceInfo)
        print(device.getConnectedCameras())
        print(device.getMxId())
      2 years later

      I currently have the YOLO API running, and within a subprocess, I'm attempting to retrieve system information from the camera. However, I'm encountering an issue where it shows 'xlink is in use.' I am aware that this is due to the OnYOLO API being already active and running the inference. Is there a way to obtain system information while running both scripts simultaneously?

      • erik replied to this.

        Hi Timmm , what is YOLO API / OnYOLO API? Could you provide some links / code / full terminal output?

        My apologies, What I meant of yolo api is that, I am using yolo model for object detection on OAK-1. "Onyolo" is typo ,please ignore. So goal is to do object detection using yolo model and at the same time a separate script will write system info to a log file. Problem is when object detection script is running and simultaneously when I run system info script, it show " xlink is in use". Is there any way that i can run two script simultaneously?