Hi,
I have a OAK D Cm4 non POE and have used it in the past and it has been working great, but have tried to use it recently and can't seem to get the raspberry pi to find any camera devices.
This was the code i was using to find any cameras
import depthai as dai
def main():
try:
# Attempt to connect to any available device
with dai.Device() as device:
print("Device found:", device.getDeviceName())
except RuntimeError as e:
print("No device found or unable to connect:", e)
if __name__ == "__main__":
main()
But i just get no device found
What would you recommend i try next? not sure if i need to reimage the pi or not?
Thanks