Hello, it seems that the code there has only capability to synch one device as the 'self' argument, are you recommending adding a second camera argument to that code?
My ideal solution is using an external FSYNCH signal to adjust the frame capture within the 33 ms time window of capture. I would like to use frame synch mode `<`camera.initialControl.setFrameSyncMode(dai.CameraControl.FrameSyncMode.INPUT)~
There is documentation https://docs.luxonis.com/projects/hardware/en/latest/pages/guides/sync_frames/ which mentions using synch mode to synch multiple devices but I am having difficulties.
Is there example code using this mode to synch two cameras during recording, all I have found is code used to detect a trigger in order to take a snapshot. This is not too helpful im my case because I must record and use FSYNCH to synch frames at the same time.
The FSYNCH code available that I have found uses the older depthai SDK, where a new queue is made and checks if there is an element in the queue. Form what I understand the queue should have an element arriving for each frame, so checking (wait(lambda: oakQueue.has() == True) should always return true while recording. Is there another way to access the information from the FSYNCH?
Thank you!