フィルターのクリア

How to access the Configure channel parameters in ThingSpeak

1 回表示 (過去 30 日間)
Jean Noël Raynaud
Jean Noël Raynaud 2020 年 7 月 4 日
編集済み: Rene Chan 2020 年 7 月 7 日
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

回答 (1 件)

Rene Chan
Rene Chan 2020 年 7 月 7 日
編集済み: Rene Chan 2020 年 7 月 7 日
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!

コミュニティ

その他の回答  ThingSpeak コミュニティ

カテゴリ

Help Center および File ExchangeConfigure Accounts and Channels についてさらに検索

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by