百度IOT Hub (九) Paho C Client Subscribe Operation without SSL

本文展示了一个使用MQTT协议的C语言程序示例,该程序作为客户端订阅特定主题,接收并处理从服务器发送的消息。程序详细展示了如何创建客户端,设置连接选项,定义回调函数以及订阅和接收消息的过程。
  1. #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include "MQTTClient.h"

    #define ADDRESS     "tcp://sdmn79a.mqtt.iot.gz.baidubce.com:1883"
    #define CLIENTID    "MyMonitor_Sub_Any"
    /// MUST Be Subcribed by the different Clients Belonged in the Same Shadow
    #define TOPIC       "$baidu/iot/shadow/MyMonitor/update/accepted" 
    //#define PAYLOAD     "Hello World!"
    #define USER "sdmn79a/MyMonitor"
    #define PWD  "xxxxxxxxx"
    #define QOS         1
    #define TIMEOUT     10000L

    volatile MQTTClient_deliveryToken deliveredtoken;

    void delivered(void *context, MQTTClient_deliveryToken dt)
    {
        printf("Message with token value %d delivery confirmed\n", dt);
        deliveredtoken = dt;
    }

    int msgarrvd(void *context, char *topicName, int topicLen, MQTTClient_message *message)
    {
        int i;
        char* payloadptr;

        printf("Message arrived\n");
        printf("     topic: %s\n", topicName);
        printf("   message: ");

        payloadptr = message->payload;
        for(i=0; i<message->payloadlen; i++)
        {
            putchar(*payloadptr++);
        }
        putchar('\n');
        MQTTClient_freeMessage(&message);
        MQTTClient_free(topicName);
        return 1;
    }

    void connlost(void *context, char *cause)
    {
        printf("\nConnection lost\n");
        printf("     cause: %s\n", cause);
    }

    int main(int argc, char* argv[])
    {
        MQTTClient client;
        MQTTClient_connectOptions conn_opts = MQTTClient_connectOptions_initializer;
        int rc;
        int ch;

        MQTTClient_create(&client, ADDRESS, CLIENTID,
            MQTTCLIENT_PERSISTENCE_NONE, NULL);
        conn_opts.keepAliveInterval = 20;
        conn_opts.cleansession = 1;
        conn_opts.username = USER;
        conn_opts.password = PWD;
        conn_opts.MQTTVersion = MQTTVERSION_3_1_1;

        MQTTClient_setCallbacks(client, NULL, connlost, msgarrvd, delivered);

        if ((rc = MQTTClient_connect(client, &conn_opts)) != MQTTCLIENT_SUCCESS)
        {
            printf("Failed to connect, return code %d\n", rc);
            exit(EXIT_FAILURE);
        }
        printf("Subscribing to topic %s\nfor client %s using QoS%d\n\n"
               "Press Q<Enter> to quit\n\n", TOPIC, CLIENTID, QOS);
        MQTTClient_subscribe(client, TOPIC, QOS);

        do 
        {
            ch = getchar();
        } while(ch!='Q' && ch != 'q');

        MQTTClient_unsubscribe(client, TOPIC);
        MQTTClient_disconnect(client, 10000);
        MQTTClient_destroy(&client);
        return rc;
    }

  2. Connect Shadow : MyMonitor with MQTT.fx

  3. Run MQTTClient_subscribe

  4. Trigger $baidu/iot/shadow/MyMonitor/update via MQTT.fx

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值