Search found 5 matches

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: 202

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: 1199

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: 7721

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: 2
Views: 13704

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: 8321

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 ...