Search found 7 matches

by eklektek
Fri Sep 15, 2023 2:47 pm
Forum: PicoLog
Topic: Applying predefined config when exporting.
Replies: 0
Views: 47952

Applying predefined config when exporting.

Again I'm exporting a large number of .picolog files to .csv and for each file I am having to apply the same configuration: 1) Output sample rate. 2) Decimal places 3) Time format 4) the Channels This has to be done for each file :roll: There must be a better way? perhaps someone could let me know, ...
by eklektek
Fri Sep 15, 2023 10:49 am
Forum: USB PC Data Loggers
Topic: .picolog file conversion
Replies: 4
Views: 44845

Re: .picolog file conversion

Should I find it curious that there is still no movement from Pico-Technology on the bulk export of .picolog files?
Looking at the forum it appears to-be one of the most commonly viewed threads. Perhaps someone from pico could comment, is it purely a resource/priority issue?
by eklektek
Thu Apr 06, 2023 12:27 pm
Forum: USB PC Data Loggers
Topic: temp_buffer = (ctypes.c_float * 2 * 15)()
Replies: 0
Views: 6062

temp_buffer = (ctypes.c_float * 2 * 15)()

Within tc08StreamingModeExample.py the python example code for the TC08 why is the sample buffer is defined as 2 * 15? temp_buffer = (ctypes.c_float * 2 * 15)() Shouldn't is be: temp_buffer = (ctypes.c_float * 15)() What am I not understanding? Is there any more comprehensive example code demonstrat...
by eklektek
Wed Apr 05, 2023 2:05 pm
Forum: General Software Discussions
Topic: Programming Pico TC-08 with MacOS solution
Replies: 1
Views: 2179

Re: Programming Pico TC-08 with MacOS solution

Billy thanks for the time you spent on this. Saved me lots of time. Having already installed PicoLog my first value for DYLD_LIBRARY_PATH was /Applications/PicoLog.app/Contents/Resources However then I finally understood the PicoTech instructions and found PicoSDK download for macOS which is here: <...
by eklektek
Mon Jan 30, 2023 12:24 pm
Forum: Projects
Topic: Replication of the TC-08 thermocouple circuit.
Replies: 0
Views: 12836

Replication of the TC-08 thermocouple circuit.

Has anyone put any effort into the creation/replication of the circuit used by the TC-08 to measure temperature?
by eklektek
Mon Jan 30, 2023 12:12 pm
Forum: USB PC Data Loggers
Topic: .picolog file conversion
Replies: 4
Views: 44845

Re: .picolog file conversion

As of today: 30th January 2023 does your previous answer still stand?
by eklektek
Wed Sep 21, 2022 4:26 pm
Forum: PicoLog
Topic: bulk conversion of .picolog to .csv
Replies: 0
Views: 13646

bulk conversion of .picolog to .csv

This must be a common requirement, however I've not found it directly addressed anywhere. I simply need some some code that I can call with the parameter of a .picolog filename which it will then convert to the filename.csv Ideally I would like this for a Mac, however can run in a vm if required. I ...