12-13-2022 04:03 PM
hello
I developed a program that is a temperature datalogger. But in it the sending of temperature is done by channel, with the proper identification of each channel and one at a time. I have a getdata module in the program that receives and handles this signal perfectly. but now I need to develop a get data module, which formats the information in the same way, even receiving a complete package with the four temperatures and the four indicators of the sensor number every two seconds. so my scheme is very explanatory for my need. I could easily emulate what I want, which as I wrote, I don't know if it's possible....
in short, I receive a string that identifies the numbers of the sensors and their temperatures (04), and I need to pass these number of sensors and their temperatures, one by one, for use in the rest of the program in single indicator that spread the numbers in the other modules of program.
thank you
12-13-2022 04:25 PM - edited 12-13-2022 04:29 PM
@marques51 wrote:
hello
I developed a program that is a temperature datalogger. But in it the sending of temperature is done by channel, with the proper identification of each channel and one at a time. I have a getdata module in the program that receives and handles this signal perfectly. but now I need to develop a get data module, which formats the information in the same way, even receiving a complete package with the four temperatures and the four indicators of the sensor number every two seconds. so my scheme is very explanatory for my need. I could easily emulate what I want, which as I wrote, I don't know if it's possible....
in short, I receive a string that identifies the numbers of the sensors and their temperatures (04), and I need to pass these number of sensors and their temperatures, one by one, for use in the rest of the program in single indicator that spread the numbers in the other modules of program.
thank you
You explanation may sound simple to you but I don't understand it.
Please post your code for all of us to see. At a minimum give us a sample "data packet" that would be received from your channel wire and a little better explanation of what you need to do with it.
BTW: Logging temperatures is one of the things I have been doing for decades.
12-13-2022 09:19 PM
Trusted Enthusiast your solution works to me. I really apreciate your attention. The software is ready now thank you