Hi,
I recently got an OAK-FFC-6P board and an AR0234 camera. However I can not get the board to find and access the camera.
I already updated the board's firmware and OS to the most recent versions:
root@keembay:~# fip-version
0x103v1.13.1
root@keembay:~# mender -show-artifact
Release-20240411132536
On the host PC, I installed the recommended DepthAI version for the board:
$ python
Python 3.9.19 | packaged by conda-forge | (main, Mar 20 2024, 12:50:21)
[GCC 12.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import depthai
>>> print(depthai.__version__)
2.23.0.0.dev0+ff929745dc99589a560217f857f49d8bf00a5463
I have cloned the depthai-python
repository and checked out the rvc3_develop
branch. (commit ff92974
)
Yet the camera test utility is unable to find the camera:
$ ./cam_test.py -cams cama,c
Enabled cameras:
cama : color
DepthAI version: 2.23.0.0.dev0+ff929745dc99589a560217f857f49d8bf00a5463
DepthAI path: /home/user/miniconda3/envs/oak/lib/python3.9/site-packages/depthai.cpython-39-x86_64-linux-gnu.so
Connected cameras: []
USB speed: UNKNOWN
IR drivers: []
Traceback (most recent call last):
File "/home/user/depthai-python/utilities/./cam_test.py", line 308, in <module>
device.startPipeline(pipeline)
RuntimeError: Cannot find camera given socket: 0 and name: '' (startPipeline)
The camera is connected to camera port A like this:
I also tried connecting the camera to the other ports B to F (i.e. unplugging the board, changing camera connection, replugging the board, re-executing the tool), but the line Connected cameras:
kept having an empty list.
Any help would be very appreciated!
Best regards