Search Results

by dunderMethods
Tue Jun 14, 2022 1:30 pm
Forum: Python
Topic: Help Synchronizing and logging multiple channels
Replies: 1
Views: 39966

Re: Help Synchronizing and logging multiple channels

I've come up with a solution but would still like to hear any thoughts. My solution involves creating a dictionary with one key per channel, all values set to False . sample_state = {ch: False for ch in lc_channels} Whenever a channel yields a new sample, my onVoltageRatioChange callback function ch...
by dunderMethods
Mon Jun 13, 2022 4:36 pm
Forum: Python
Topic: Help Synchronizing and logging multiple channels
Replies: 1
Views: 39966

Help Synchronizing and logging multiple channels

Hello, I am using a 1046_0 PhidgetBridge to read 3x Load Cells. My goal is to simply log data from each input at 120hz and write the data to CSV format. For my application it is important that there is a minimal time difference between samples in each row of sensor data - in other words I am trying ...