I just got my OAK-D S2. I've connected it to an M1 MacBook Pro and installed the python tools. When I run the Getting Started examples, I get:
% python
Python 3.12.2 (main, Feb 6 2024, 20:19:44) [Clang 15.0.0 (clang-1500.1.0.2.5)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from depthai_sdk import OakCamera
>>>
>>> with OakCamera() as oak:
... color = oak.create_camera('color', resolution='1080p')
... oak.visualize([color])
... oak.start(blocking=True)
...
…/OAK-D/.venv/lib/python3.12/site-packages/depthai_sdk/oak_camera.py:219: UsbWarning: Device connected in USB2 mode! This might cause some issues. In such case, please try using a (different) USB3 cable, or force USB2 mode 'with OakCamera(usb_speed='usb2') as oak:'
I've tried this with the included cable via a USB hub, and a couple different USB-C cables directly connected to the MacBook Pro. The warning implies a less than optimal connection.