HI!
Great! Then I at least know it should be possible which is a step forward. We have tried using both static IP and a configured DHCP server. Do you use the internal Windows DHCP server or a third party program?
May you also share which hardware components you are using on the machines and exactly which Windows version you are using? Maybe it is a hardware issue. I did try the prebuilt Luxonis Raspberry Pi image and were able to run the devices successfully multiple times in a row however.
I am also interested in how you installed Depthai and its dependencies. There is an MSI installer and Chocolatey is also mentioned as an alternative. We used Conda and downloaded Depthai using the following environment.yml file:
name: depthai_24
channels: # Channels are listed in prioritized order, do not change!
- conda-forge
- defaults
dependencies:
- python>=3.12,<3.13
- numpy
- opencv
# Pysimplegui and pillow required by DepthAI utilities (eg. device manager)
- pysimplegui
- pillow
- pip
- pip:
# Install prebuilt wheel (win_amd64) from:
- https://artifacts.luxonis.com/artifactory/luxonis-python-snapshot-local/depthai/depthai-2.24.0.0.dev0+3f39768ab74394fa629ad6b4bfbf4d9a9f99eb6c-cp312-cp312-win_amd64.whl
variables:
DEPTHAI_WATCHDOG: 4500
DEPTHAI_PROTOCOL: tcpip
Thanks!