This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

OPT8241-CDK-EVM not found by CameraSystem::scan()

Hello engineers,

I'm very new to the VoxelSDK and TIs evaluation module. I tried to get an instance of the camera connected by first scanning the environment, like the samples do.

#include "CameraSystem.h"

int main(int argc, char *argv[])
{
    Voxel::CameraSystem cameraSystem;
    const Voxel::Vector<Voxel::DevicePtr> &devices = cameraSystem.scan();
    std::cout << devices.size() << std::endl;
    return 0;
}

But the list of devices has always size = 0.

If I try to find the module within the VoxelViewer software everything works fine, so the module seems to be connected correctly. Also the device manager doesn't report any problems with the device.

Any suggestions what I'm doing wrong?

Best regards

Dennis