File Exchange にある、MQTT in MATLAB を活用して、ThingSpeak のデータを取得する方法を教えてください。

1 vue (au cours des 30 derniers jours)
Takafumi
Takafumi le 28 Nov 2017
Modifié(e) : michio le 28 Oct 2019
以下のツールを活用した例をおしえてください。 MQTT in MATLAB

Réponse acceptée

Takafumi
Takafumi le 28 Nov 2017
サンプル例です。CH 12397 のWeather Station のデータを取得します。
コードの1行目については、
ThingSpeak のページで、[Account]-[My Profile]から、[MQTT API Key]を作成します。
そのKey がパスワードになります。
コードの2行目は、チャネルIDを次のように指定します。
もしプライベートなチャネルの場合は、json の後に、json/<Read key> のように追記します。
myMQTT=mqtt('tcp://mqtt.thingspeak.com','Port',1883,'Username','xxxx','Password','xxxx')
mySub = subscribe(myMQTT,'channels/12397/subscribe/json')
read(mySub)

Plus de réponses (0)

Communautés

Plus de réponses dans  ThingSpeak Community

Catégories

En savoir plus sur Test and Measurement dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!