您好,登錄后才能下訂單哦!
本篇內容主要講解“MQTT如何連接阿里云接收和發送數據”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“MQTT如何連接阿里云接收和發送數據”吧!
根據上一條的學習,如果沒看過可以去看一下上面的2.1中移4G模塊-ML302-OpenCpu開發-(MQTT連接阿里云-訂閱主題)
數據是可以接收了,那怎么發送呢。
int example_publish(void *handle) { int res = 0; const char *fmt = "/%s/%s/user/get"; char *topic = NULL; int topic_len = 0; char *payload = "{\"message\":\"hello!\"}"; //*** 對topic的拼接*** topic_len = strlen(fmt) + strlen(DEMO_PRODUCT_KEY) + strlen(DEMO_DEVICE_NAME) + 1; topic = HAL_Malloc(topic_len); if (topic == NULL) { cm_printf("[ALIYUN]: memory not enough\n"); return -1; } memset(topic, 0, topic_len); HAL_Snprintf(topic, topic_len, fmt, DEMO_PRODUCT_KEY, DEMO_DEVICE_NAME); //*** 對topic的拼接*** // 調用IOT_MQTT_Publish_Simple發送數據 res = IOT_MQTT_Publish_Simple(0, topic, IOTX_MQTT_QOS0, payload, strlen(payload)); if (res < 0) { cm_printf("[ALIYUN]: publish failed, res = %d\n", res); HAL_Free(topic); return -1; } HAL_Free(topic); return 0; }
IOT_MQTT_Publish_Simple函數
topic_name:topic名字
qos:qos
data:數據
len:發送數據長度
int IOT_MQTT_Publish_Simple(void *handle, const char *topic_name, int qos, void *data, int len)
這是一個比較簡單的MQTT發送程序
到此,相信大家對“MQTT如何連接阿里云接收和發送數據”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。