kevinzhang19701 发表于 2021-2-27 14:51:42

WiFi IoT模块开箱上电之小转盘

本帖最后由 kevinzhang19701 于 2021-3-3 12:31 编辑

模块买到手好几天了,乘周末有时间开箱上电试试。



材料:DFRduino UNO R3一枚、IO 传感器扩展板 V7.1一枚、Gravity:WIFI IoT模块一枚、DMS-MG90舵机一枚。

打算从EasyIoT上向设备发送字符,控制舵机转起来,一个简单的小转盘,协议用MQTT。







WiFi模块拨到I2C模式,连接扩展板I2C端口。舵机连接数字端口9。在https://github.com/DFRobot/DFRobot_WiFi_IoT_Module下载库文件(我下载的是ZIP格式)。



下面处理代码部分,涉及ID/密码的地方我用星号代替。

#include <Servo.h>
#include <SoftwareSerial.h>
#include "DFRobot_WiFi_IoT_Module.h"

DFRobot_WiFi_IoT_Module_I2C IoT;

Servo myservo;
int pos = 0;

String flag01 = ""; // compare if new data sent from EasyIoT

// WiFi SSID and password
const char *WIFI_SSID                     = "Linksys19544";
const char *WIFI_PASSWORD          = "********";

// setup EasyIoT essential parameters
const char *EASY_IOT_SERVER      = "iot.dfrobot.com.cn";
const char *EASY_IOT_PORT            = "1883";
const char *EASY_IOT_ID                  = "********";
const char *EASY_IOT_PWD             = "********";
const char *SUBSCRIBE_TOPIC      = "auwZY6AWg";
const char *PUBLISH_TOPIC             = "auwZY6AWg";
const char *EASY_IOT_SEND_MESSAGE= "";

String receiveMessage = "";

// setup CallBack function (for listening info sent by EasyIoT)
void callback(const char *topic, const char *message)
{
receiveMessage = (String)message;
}

// main initialization
void setup()
{
   Serial.begin(115200);

   // initialize IoT port
   while(IoT.begin() != 0)
   {
   Serial.println("IoT init ERROR!!!!");
   delay(100);
   }
   Serial.println("IoT init Success");

   // connect to WiFi
   while(IoT.connectWifi(WIFI_SSID, WIFI_PASSWORD) != 0)
   {
   Serial.print(".");
   delay(100);
   }
   Serial.println("Wifi Connect Success");

   // initialize MQTT (EasyIoT)
   while(IoT.MQTTBegin(EASY_IOT_SERVER, EASY_IOT_PORT, EASY_IOT_ID, EASY_IOT_PWD) != 0)
   {
   Serial.print(".");
   delay(100);
   }
   Serial.println("MQTT Connect Success");

   // invoke callback function for listening
   IoT.setCallBack(callback);

   // subscribe a topic (listening info from this device)
   while(IoT.subscribe(SUBSCRIBE_TOPIC) != 0)
   {
   Serial.print("?");
   delay(100);
   }
   Serial.println("Subscribe Topic Success");

   // initial servo to 0 degree
   myservo.attach(9);
   myservo.write(pos);
   delay(15);
   pinMode(13, OUTPUT);
   digitalWrite(13, HIGH);
}

// regular works
void loop()
{
   if(strcmp(flag01.c_str(), receiveMessage.c_str()) !=0)
   {
   flag01 = doJob(receiveMessage);
   }
   IoT.loop();
   delay(100);
}
String doJob(String code)
{
   if (code.equals("1"))
    {
       pos = 0;
       myservo.write(pos);
       delay(15);
    }
   if (code.equals("2"))
   {
   pos = 45;
   myservo.write(pos);
   delay(15);
   }
   if (code.equals("3"))
   {
   pos = 90;
   myservo.write(pos);
   delay(15);
   }
   if (code.equals("4"))
   {
   pos = 135;
   myservo.write(pos);
   delay(15);
   }
   if (code.equals("5"))
   {
   pos = 180;
   myservo.write(pos);
   delay(15);
   }
   return code;
}
编译的时候出现了很多错误,处女座的同学比较紧张,见下图:





看了一下,基本上都是字符类型转换的错误,编译可以正常通过,正常导入UNO板子。

WiFi模块灯会从红色转到蓝色,最后停在绿色。







在浏览器打开EasyIoT(https://iot.dfrobot.com.cn/):



第一个设备(auwZY6AWg),向其发送字符(1~5,),分别对应舵机的0度、45度、90度、135度,以及180度。



搭建过程中记录的几个小视频:


http://openkevin.net/dfrobot/dfrobot01.mp4

http://openkevin.net/dfrobot/dfrobot02.mp4

http://openkevin.net/dfrobot/dfrobot03.mp4

http://openkevin.net/dfrobot/dfrobot04.mp4

http://openkevin.net/dfrobot/dfrobot05.mp4

http://openkevin.net/dfrobot/dfrobot06.mp4

除了PC浏览器端可以向设备发送控制字符外,也可以使用EasyIoT微信小程序。不过,昨天晚上还行,今天我这里显示的就是空白了,不知道是不是微信小程序不太稳定。



总体来说,该模块上手还比较容易,连接无线路由器也很快速。除了有点小贵,其他都挺好。

一会儿再试试HTTP协议,向上位机发送点数据看看,先写到这里。


页: [1]
查看完整版本: WiFi IoT模块开箱上电之小转盘