I would like to sync the outputs of a Script and the SpatialLocationCalculator, but it seems like the sync node does not exist (I am working with the newest dai version).
sync = pipeline.create(dai.node.Sync)
sync.setSyncThreshold(timedelta(milliseconds=100))
spatialCalc.out.link(sync.inputs["s1"])
script1.outputs['featIdsBuf'].link(sync.inputs["s2"])
sync = pipeline.create(dai.node.Sync)
^^^^^^^^^^^^^
AttributeError: module 'depthai.node' has no attribute 'Sync'
sync = pipeline.create(dai.node.MessageDemux)
^^^^^^^^^^^^^^^^^^^^^
AttributeError: module 'depthai.node' has no attribute 'MessageDemux'