Thank jakaskerl
I follow the document
POE Device: bootloader vesion 0.0.22
Pi's /etc/dhcpcd.conf added
---
interface wlan0
metric 10
interface eth0
metric 100
static ip_address=192.168.5.10/24
static ip6_address=fd51:42f8:caae:d92e::ff/64
static routers=192.168.5.1
static domain_name_servers=192.168.5.1 8.8.8.8 fd51:42f8:caae:d92e::1
---
Command ifconfig shows eth0 has IP 192.168.5.10.
I can ping the device with this IP
Q1: But running the example in the document (Manually specify device IP) with IP 192.168.5.10, with output of device info, gives below error ???
DeviceInfo(name=192.168.5.10, mxid=, X_LINK_ANY_STATE, X_LINK_ANY_PROTOCOL, X_LINK_ANY_PLATFORM, X_LINK_SUCCESS)
Traceback (most recent call last):
File "test.py", line 17, in <module>
with dai.Device(pipeline, device_info) as device:
RuntimeError: Cannot find any device with given deviceInfo
Q2: There is a note under the example code above but give no instruction how to do it?
"Note that if OAK is already running flashed pipeline, you need to change device info XLink state to X_LINK_FLASH_BOOTED
in order to reach flash booted OAK camera."