You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for making well-documented scripts - easy to get started!
I would like to record signals from several modules (PTP syncronized in a DAQ frame). I can follow streaming.py for a single module, but how would that look like for multiple modules?
Do I open recorder for all modules or just the master? response = requests.put(host + "/rest/rec/open")
Looping through the different hosts, I can get all channels and make the setup: response = requests.put(host + "/rest/rec/channels/input", json = setup)
Hello,
Thanks for making well-documented scripts - easy to get started!
I would like to record signals from several modules (PTP syncronized in a DAQ frame). I can follow streaming.py for a single module, but how would that look like for multiple modules?
response = requests.put(host + "/rest/rec/open")response = requests.put(host + "/rest/rec/channels/input", json = setup)I had a look in the PTP multiframe example for C#, but that's only for two frames and slightly difficult to translate into python.
Best regards,
Oliver