掌控板:实现mind+下Easy IoT上mqtt消息的通讯
程序员文章站
2022-06-09 08:55:20
...
简介
利用掌控板,实现Mind+下Easy IoT上mqtt消息的通讯。甲按A键(或触摸P)发送消息至topic1,同时监听topic0。乙监听topic1,接收到甲的消息后按A(或触摸P)回复消息给topic0甲显示。
这个实验要用到的硬件和软件有:
- 掌控板 ×2
- typeC数据线 ×2
- Mind+电脑端 1.6.5
图形化编程
C语言源码
/*!
* MindPlus
* mpython
*
*/
#include <MPython.h>
#include <DFRobot_Iot.h>
// 函数声明
void onButtonAPressed();
void obloqMqttEventT0(String& message);
// 静态常量
const String topics[5] = {"-yNQbCdMR","WvTwxCdGR","","",""};
const MsgHandleCb msgHandles[5] = {obloqMqttEventT0,NULL,NULL,NULL,NULL};
// 创建对象
DFRobot_Iot myIot;
// 主程序开始
void setup() {
mPython.begin();
myIot.setMqttCallback(msgHandles);
buttonA.setPressedCallback(onButtonAPressed);
myIot.wifiConnect("Zhao", "12345678");
display.setCursorLine(1);
display.printLine("WIFI正在连接");
while (!myIot.wifiStatus()) {yield();}
display.setCursorLine(1);
display.printLine("WIFI连接成功");
myIot.init("iot.dfrobot.com.cn","CG9UxjdGg","","jGr8xjdGRz",topics,1883);
myIot.connect();
while (!myIot.connected()) {yield();}
display.setCursorLine(2);
display.printLine("MQTT连接成功");
}
void loop() {
}
// 事件回调函数
void onButtonAPressed() {
myIot.publish(topic_1, "赵芳俪,你好");
display.setCursorLine(3);
display.printLine("钟苑发送成功");
}
void obloqMqttEventT0(String& message) {
display.setCursorLine(4);
display.printLine(message);
}
/*!
* MindPlus
* mpython
*
*/
#include <MPython.h>
#include <DFRobot_Iot.h>
// 函数声明
void obloqMqttEventT1(String& message);
void onButtonAPressed();
// 静态常量
const String topics[5] = {"Yhpn0aCZg","85OdBrOGg","","",""};
const MsgHandleCb msgHandles[5] = {NULL,obloqMqttEventT1,NULL,NULL,NULL};
// 创建对象
DFRobot_Iot myIot;
// 主程序开始
void setup() {
mPython.begin();
myIot.setMqttCallback(msgHandles);
buttonA.setPressedCallback(onButtonAPressed);
myIot.wifiConnect("Zhao", "12345678");
while (!myIot.wifiStatus()) {yield();}
display.setCursorLine(1);
display.printLine("WIFI连接成功");
myIot.init("iot.dfrobot.com.cn","CLqmAajZR","","jLqiAaCZRz",topics,1883);
myIot.connect();
while (!myIot.connected()) {yield();}
display.setCursorLine(2);
display.printLine("MQTT连接成功");
}
void loop() {
}
// 事件回调函数
void obloqMqttEventT1(String& message) {
display.setCursorLine(3);
display.printLine(message);
}
void onButtonAPressed() {
myIot.publish(topic_0, "赵芳俪收到");
display.setCursorLine(4);
display.printLine("赵芳俪发送成功");
}
实验效果图
上一篇: 第三章:MyBatis-Plus跟pagehelper的配置
下一篇: 一个提高编写代码效率的库
推荐阅读
-
Mind+上实现sIoT配置并实现sIoT上mqtt消息的通讯
-
mind+图形化编程Easy IoT上mqtt消息的通讯
-
物联网实验二- 实现mind+下Easy IoT上mqtt消息的通讯
-
Easy IoT上mqtt消息的配置与通讯
-
实现Easy IoT上MQTT消息的通讯
-
Mind+上实现Easy IoT配置和Easy IoT上mqtt消息的通讯
-
实现mind+下Easy IoT上mqtt消息的通讯
-
掌控板:实现mind+下Easy IoT上mqtt消息的通讯
-
实现Easy IoT配置以及实现Easy IoT上mqtt消息的通讯
-
在Mind+下使用Easy loT实现mqtt消息消息的通讯