I am a beginner with macros and also with the pico tc-08.
I am using this instrument to measure the temperature and I need that the data is recorded.
I modified the default macro to copy paste every value and record it.
The problem is that I am not sure if the settings are good for the thermocouple I am using.
I need to configure the channel 1 at type T and channel 2 at type K.
In the macro there is this line that I tried to modify:
Call usb_tc08_set_mains(tc08_handle, True)
ok = usb_tc08_set_channel(tc08_handle, 0, Asc("T"))
ok = usb_tc08_set_channel(tc08_handle, 1, Asc("T"))
ok = usb_tc08_set_channel(tc08_handle, 2, Asc("K"))
ok = usb_tc08_set_channel(tc08_handle, 3, Asc("mV"))
Call Timer1_Timer
I am not sure that the value is processed as type T or K because when I try to change the channel to measure mV it give my a constant value of "65535".
So I needed some help to find the correct setting.