Effacer les filtres
Effacer les filtres

How to access the Configure channel parameters in ThingSpeak

1 vue (au cours des 30 derniers jours)
Jean Noël Raynaud
Jean Noël Raynaud le 4 Juil 2020
Modifié(e) : Rene Chan le 7 Juil 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

Réponses (1)

Rene Chan
Rene Chan le 7 Juil 2020
Modifié(e) : Rene Chan le 7 Juil 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!

Communautés

Plus de réponses dans  ThingSpeak Community

Catégories

En savoir plus sur Configure Accounts and Channels dans Help Center et File Exchange

Produits


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by