C# 使用M2Mqtt库开发MQTT通信协议

直接上代码:

第一步:使用NugGet 安装 M2Mqtt 工具,选择最新版本即可;

第二步:输入服务器的IP 及端口,创建客户端:

cs 复制代码
        MqttClient client;
        public MqttApi()
        {
            // MQTT服务器IP地址
            string host = "172.16.60.122";
            int serverPort = 1883;
            // 实例化Mqtt客户端 
            client = new MqttClient(host, Convert.ToInt32(serverPort), false, null, null, MqttSslProtocols.TLSv1_2);
        }

第三步:设置主题,订阅主题,然后发送信息

cs 复制代码
   public void SendProgram()
   {
       // MQTT的主题 topic  设备类型
       string topic = "/fac/sensor/data";

       string clientId = Guid.NewGuid().ToString();
       client.Connect(clientId, "admin", "admin123");  // 设置用户名和密码(如果需要)

       // 订阅主题 "/mqtt/test", 订阅质量 QoS 2 
       client.Subscribe(new string[] { topic }, new byte[] { MqttMsgBase.QOS_LEVEL_EXACTLY_ONCE });

       // 发布消息
       //var msg = "{\"deviceCode\":\"SM001\",\"Program\":{\"ProgramName\":\"ee\",\"WaferMappingFileName\":\"rr\"}}";
       var msg = "{\"deviceCode\":\"SM001\",\"devicestatusInfo\":{\"description\":\"停止\",\"descriptioncode\":2,\"devicestatus\":1,\"preDeviceStatus\":\"\",\"preStatusStartTime\":\"\",\"remark\":\"\",\"statusStarTime\":1712651038054}}";

      var res=  client.Publish(topic, Encoding.UTF8.GetBytes(msg), MqttMsgBase.QOS_LEVEL_AT_LEAST_ONCE, false);

       // 处理消息接收事件(现在 回复消息 可以不订阅这个主题)
       client.MqttMsgPublishReceived += Client_MqttMsgPublishReceived;
   }

   public void Client_MqttMsgPublishReceived(object sender, MqttMsgPublishEventArgs e)
   {
       string message = Encoding.UTF8.GetString(e.Message);
       Console.WriteLine($"Mqtt Received: {message}");
   }

完成。

相关推荐
烦躁的大鼻嘎2 分钟前
【Linux】深入理解GCC/G++编译流程及库文件管理
linux·运维·服务器
乐大师2 分钟前
Deepin登录后提示“解锁登陆密钥环里的密码不匹配”
运维·服务器
ac.char9 分钟前
在 Ubuntu 上安装 Yarn 环境
linux·运维·服务器·ubuntu
敲上瘾9 分钟前
操作系统的理解
linux·运维·服务器·c++·大模型·操作系统·aigc
吾与谁归in11 分钟前
【C#设计模式(13)——代理模式(Proxy Pattern)】
设计模式·c#·代理模式
吾与谁归in12 分钟前
【C#设计模式(14)——责任链模式( Chain-of-responsibility Pattern)】
设计模式·c#·责任链模式
神仙别闹1 小时前
基于C#和Sql Server 2008实现的(WinForm)订单生成系统
开发语言·c#
soulteary1 小时前
突破内存限制:Mac Mini M2 服务器化实践指南
运维·服务器·redis·macos·arm·pika
爱吃青椒不爱吃西红柿‍️2 小时前
华为ASP与CSP是什么?
服务器·前端·数据库
hzyyyyyyyu3 小时前
内网安全隧道搭建-ngrok-frp-nps-sapp
服务器·网络·安全