I'm following the tutorials with Raspberry Pi OS Bullseye.
After installing depthai and dependencies, depthai_demo.py will run with "starting demo..." where video should be. Popup occurs with the following error:
File "/home/raspberrypi/depthai/depthai_demo.py", line 655, in run
self.instance.run_all(self.conf)
File "/home/raspberrypi/depthai/depthai_demo.py", line 131, in run_all
self.setup(conf)
File "/home/raspberrypi/depthai/depthai_demo.py", line 179, in setup
self.deviceInfo = getDeviceInfo(self._conf.args.deviceId,args.debug)
File "/home/raspberrypi/depthai/depthai_sdk/src/depthai_sdk/utils.py", line 141, in getDeviceInfo
raise RuntimeError("No DepthAI device found!")
RuntimeError: No DepthAI device found!
I've included permissions as documented in installation instructions:
echo 'SUBSYSTEM=="usb", ATTRS{idVendor}=="03e7", MODE="0666"' | sudo tee /etc/udev/rules.d/80-movidius.rules
sudo udevadm control --reload-rules && sudo udevadm trigger
I've tried both RPi 4b and RPi 3B+, multiple sets of cables (surely one works?), and tried forcing USB2.
lsusb shows 03e7, which means it does recognize it...
What am I missing? Apologies if this isn't the right place to put this discussion.
Taylor