Skip to content

Unable to connect to OAK-D Pro PoE #1113

@krstp

Description

@krstp

For some reason by laptop does not recognize the camera. Also when trying to run depthai-viewer I get:

Image

I can connect to localhost:33333, there are also two ports open 2000 and 5060, where I can nc/telnet, but nothing beyond it.

The guide here does not help much: https://docs.luxonis.com/hardware/platform/deploy/poe-deployment-guide/

Any python script connection fail not recognizing the device.

import depthai as dai

# Try to boot the camera into DepthAI mode
try:
    # This might trigger firmware download/boot
    device_info = dai.DeviceInfo("169.254.1.222")
    device = dai.Device(dai.Pipeline(), device_info, maxUsbSpeed=dai.UsbSpeed.SUPER)
    print("Camera booted successfully!")
except Exception as e:
    print(f"Boot attempt: {e}")

results in: Boot attempt: Cannot find any device with given deviceInfo

and

import depthai as dai

# Try to connect to PoE camera with explicit device info
device_info = dai.DeviceInfo()
device_info.protocol = dai.XLinkProtocol.X_LINK_TCP_IP
device_info.name = "169.254.1.222"

try:
    # This might trigger camera boot/initialization
    device = dai.Device(device_info)
    print("Success!")
except Exception as e:
    print(f"Error: {e}")

Error: Cannot find any device with given deviceInfo

The device for sure flakes out to 169.254.1.222 IP...

Any ideas how to consume/connect to device. Currently I am testing on mac, where I setup statis LAN "router" to 169.254.1.100, so in theory it should be fine. I do use PoE injector.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions