How to access the Configure channel parameters in ThingSpeak
1 view (last 30 days)
Show older comments
Hello,
I tring to acces the Configure channel parameters to change the Output data type of a field.
I whant to use uint32
I could not find the button.
Thank for your help.
Jean Noël
0 Comments
Answers (1)
Rene Chan
on 7 Jul 2020
Edited: Rene Chan
on 7 Jul 2020
ThingSpeak channel fields are untyped. So there is no type configuration to set in channel setting. Instead, you just convert to the type you need after reading the data. In MATLAB, you can use the uint32 function. For example, the following snippet reads 5 minutes worth of pressure data from the public Natick Weather channel (12397), and convert them to uint32.
pressure = thingSpeakRead(12397,'fields', [6], 'Numminutes',5)
uint32(pressure)
We are curious about your use case for setting specific data type for fields. If you don't mind sharing, what are your main reasons for wanting to do so. Thanks!
0 Comments
Communities
More Answers in the ThingSpeak Community
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!