Filter löschen
Filter löschen

How to access the Configure channel parameters in ThingSpeak

3 Ansichten (letzte 30 Tage)
Jean Noël Raynaud
Jean Noël Raynaud am 4 Jul. 2020
Bearbeitet: Rene Chan am 7 Jul. 2020
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

Antworten (1)

Rene Chan
Rene Chan am 7 Jul. 2020
Bearbeitet: Rene Chan am 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!

Communitys

Weitere Antworten in  ThingSpeak Community

Kategorien

Mehr zu ThingSpeak finden Sie in Help Center und File Exchange

Produkte


Version

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by