Hello community,
I have an OAK-1-Lite which is connected via a USB-3 to USB-C cable to my Laptop. The Laptop is connected to a power station and the USB-Port is a SuperSpeed port.
I have tried running my own code and the rgb_preview but both codes give me the following error message:
"RuntimeError: Cannot find any device with given deviceInfo"
I have also tried running the dephtai-viewer but it also can't find my camera.
The last thing I have tried is running the code from the following site to discover all connected devices:
https://docs.luxonis.com/software/depthai/examples/device_information/
But I also got an error saying "Couldn't find any available devices.
What is weird to me, is that the camera itself gets recognized by my laptop. When checking the Device Manager I have a Movidius MyriadX listed under USB-devices.
I have also tried running the following code snippet from a different ask but it didn't list anything:
import depthai
for device in depthai.Device.getAllAvailableDevices():
print(f"{device.getMxId()} {device.state}")
Is there a step in the configuration that I have forgotten or is there something faulty with my camera?
Best wishes,
Johnny