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
I have a very simple use I intend for your python app.
I intend to use the app to capture the voltage/current etc every second for while the script is running. I don't need the every ms that it runs today.
is there a simple line I can change to only output one result every second (so my file isn't crazy huge)?
I tried playing around with some lines but unfortunately, couldn't find a simple way to do it.
Thanks!
The text was updated successfully, but these errors were encountered:
Hi. No, there is no way to control it easily. Hardware can be configured to send less often, but this is not implemented. You need to write own script that postprocesses the file to skip lines. You can just write a Python program, or modify the existing one, and put it in a pipeline.
If you known awk this should be very easy to do quickly.
Also, the logger now has argument parsers, (currently only have --crc and --verbose options), so if there are more people needing such function, we can easily implement it in the logger, to only print with specific frequency (sub-sampling).
Hey,
Sorry to bother.
I have a very simple use I intend for your python app.
I intend to use the app to capture the voltage/current etc every second for while the script is running. I don't need the every ms that it runs today.
is there a simple line I can change to only output one result every second (so my file isn't crazy huge)?
I tried playing around with some lines but unfortunately, couldn't find a simple way to do it.
Thanks!
The text was updated successfully, but these errors were encountered: