• 咸鱼ESP32实例—MQTT 点亮LED


    咸鱼ESP32实例—MQTT 点亮LED


    请叫我点灯侠 QAQ


    材料及接线

    ESP32在这里插入图片描述
    **通讯猫调试软件 **

    (自己弄个服务器)用猫方便看,后面自己弄个网页看看。另外请自行百度下载谢谢。

    在这里插入图片描述

    构造函数

    构造函数
    client=simple. MQTTClient (client_id, server, port)
    构建 MQTT 客户端对象。
    client_id: 客户端 ID,具有唯一性;server: 服务器地址,可以是 IP 或者网址;port:服务器端口。(服务器通常采用的端口,可以自定义。)
    使用方法
    client.connect()
    连接到服务器。
    client.publish(TOPIC,message)
    发布。TOPIC:主题编号;message: 信息内容,例:‘Hello~’
    client.subscribe(TOPIC)
    订阅。TOPIC:主题编号。
    client.set_callback(callback)
    设置回调函数。callback:订阅后如果接收到信息,就执行相名称的回调函数。
    client.check_msg()
    检查订阅信息。如收到信息就执行设置过的回调函数 callback。
    构造函数
    client=simple. MQTTClient (client_id, server, port)
    构建 MQTT 客户端对象。
    client_id: 客户端 ID,具有唯一性;server: 服务器地址,可以是 IP 或者网址;port:服务器端口。(服务器通常采用的端口,可以自定义。)
    使用方法
    client.connect()
    连接到服务器。
    client.publish(TOPIC,message)
    发布。TOPIC:主题编号;message: 信息内容,例:‘Hello~’
    client.subscribe(TOPIC)
    订阅。TOPIC:主题编号。
    client.set_callback(callback)
    设置回调函数。callback:订阅后如果接收到信息,就执行相名称的回调函数。
    client.check_msg()
    检查订阅信息。如收到信息就执行设置过的回调函数 callback。

    示例代码

    MQTT连接后,通过发送发布消息控制ESP32开发板的LED。

    抛砖引玉哈,里面的几个库是在固件里的没法展示。有兴趣的朋友可以自己简化代码。这只是一个参考哈,毕竟板子没发布我也不能写太多。

    提示:MQTT库搜一下github,ztcomm库之前3.5寸屏应该是发过。不能再写多了,写多了官方找我了就(QAQ)

    main.py

    from machine import Pin
    import socket
    import network
    import struct
    import time
    import json
    import ztcomm
    
    from mqttclient import MQTTClient
    import _thread
    
    # wifi的账号密码
    SSID="XXX"
    PASSWORD="XXX"
    # LED引脚
    led=Pin(2, Pin.OUT, value=0)
    # 初始化
    wlan=None
    mymac=None
    zt=None
    config=None
    wifilist=None
    # MQTT信息
    SERVER = '0,0,0,0'  #IP地址
    CLIENT_ID = 'esp32client' # 名称
    TOPIC = 'xx'        #  主题号
    username='xx'      #  账号
    password='xx'  #  密码
    state = 0
    c=None
    
    # 打开json文件读取内容(就是wifi和MQTT的信息啦)
    
    def zt_config():
      global SSID,PASSWORD,SERVER,CLIENT_ID,TOPIC,username,password,config
      with open('ztconfig.json','r') as f:
        config = json.loads(f.read())
      SSID=config['SSID']
      PASSWORD=config['PASSWORD']
      SERVER=config['SERVER']
      CLIENT_ID=config['CLIENT_ID']
      TOPIC=config['TOPIC']
      username=config['username']
      password=config['password']
      f.close()
    
    
    
    # 链接wifi
    def connectWifi(ssid,passwd):
      global wlan,mymac,zt
      restr='0'
      nn=0
      try:
        wlan=network.WLAN(network.STA_IF)         #创建wlan对象
        wlan.active(True)                         #激活
        wlan.disconnect()                         #断开最后的wifi连接
        wlan.connect(ssid,passwd)                 #连接wifi
        time.sleep(8)
        while(wlan.ifconfig()[0]=='0.0.0.0'):
          time.sleep(1)
          nn+=1
          print('network config err ap:%s|num:%d' % (ssid,nn))
          if(nn>5):
            wlan.active(False)
            return False
            break
               
        s=wlan.config('mac')
        mymac=('%02x-%02x-%02x-%02x-%02x-%02x') %(s[0],s[1],s[2],s[3],s[4],s[5])  # 获取mac地址
        time.sleep(4)
        ptstr='ip:%s,mask:%s\r\ngateway:%s,dns:%s\r\nmac:%s' %(wlan.ifconfig()[0],wlan.ifconfig()[1],wlan.ifconfig()[2],wlan.ifconfig()[3],mymac.upper())
        print(ptstr)    # 输出ip mask gateway dns mac
        return True
        
      except Exception as e:
        print(Exception,'BBB:',e,type(Exception),type(e))
        wlan.active(False) 
        
    def disconnect():
      global wlan
      wlan.disconnect()
      wlan.active(False)
    
    # 点灯函数,其他的可以不看,看这个就行~
    def sub_cb(topic, msg):
      global state
      print((topic, msg))
      if msg == b"on":
        led.value(1)
        state = 0
        print("1")
      elif msg == b"off":
        led.value(0)
        state = 1
        print("0")
      elif msg == b"toggle":
        led.value(state)
        state = 1 - state
    
        
    def waitmqmsg(c):
      while True:
        c.wait_msg()
        time.sleep(1)
    
    
    
    def main():
      global wlan,zt,c,config,wifilist
     
      shunum=-1
      
      zt=ztcomm.ztcomm()
      try:
        zt_config()
        time.sleep(1)
        
    
        #连接成功后返回IP、MAC等信息
        if connectWifi(SSID,PASSWORD):
          led.value(1)
          
          server=SERVER
          c = MQTTClient(CLIENT_ID, server,0,username,password)     #连接
          c.set_callback(sub_cb)                    #执行回调函数
          c.connect()                               #连接服务器
          c.subscribe(TOPIC)                        #订阅主题
          tpstr="Connected to %s, subscribed to %s topic" % (server, TOPIC)
          print(tpstr)
          
          # 发数据
          headstr=('(%s,%s,%s,%s,%s)') %(wlan.ifconfig()[0],wlan.ifconfig()[1],wlan.ifconfig()[2],wlan.ifconfig()[3],mymac.upper())
          # 组字符
          a="xxx"
          pubstr='%s-%s-%s' %(TOPIC,headstr,a)
          c.publish(TOPIC,pubstr)
          # 接受数据(开了个线程接受数据)
          _thread.start_new_thread(waitmqmsg(c), ())
          led.value(0)
    
    
    # 防停止运行
        while True:   
          time.sleep(1)
          
      except Exception as e:
    
        print(Exception,':AAAA:',e,type(Exception),type(e))      
      finally:
        if(c is not None):
          c.disconnect()
        disconnect()
    
    if __name__ == '__main__':
        main()
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156

    ztconfig

    {"SSID": "wifi账号", "PASSWORD": "wifi密码", "CLIENT_ID": "x", "username": "x", "SERVER": "ip地址", "TOPIC": "名称", "password": "密码"}
    
    • 1

    效果展示

    在这里插入图片描述

    连接成功后通讯猫会显示开发板的各种信息(IP dns mac),测试开发板LED为打开状态,在发布主题下面输入toggle翻转LED状态
    在这里插入图片描述
    也可以输入‘on’和‘off’来控制开关灯。此时在串口会返回数据
    在这里插入图片描述

  • 相关阅读:
    XCTF1-web unseping
    大数据讲课笔记1.2 Linux用户操作
    springboot整合mybatis & druid
    MICCAI 2022:使用自适应条形采样和双分支 Transformer 的 DA-Net
    IEEE出版社旗下期刊的投稿整理——(更新ing)
    express演示前端解决跨域的方法jsonp、cors
    08-Stream流计算
    数学公式识别
    Allegro172版本DFM规则之DFA Package spacing
    uni-app 之 安装uView,安装scss/sass编译
  • 原文地址:https://blog.csdn.net/weixin_45020839/article/details/125994236