|
刚刚开始接触Arduino的平台。在学校的时候就看同学在玩这个,因为那时候在学习51单片机就没有过多的接触。后面工作了开始用STM32开发项目,接触了一些物联网控制的项目。在调试了一些WIFI模块(ESP8266,EWM3162)的时候慢慢的了解了WIFI的一些概念,比如AT模式,IP地址,端口号,与服务器的握手等等。感觉开发还是有一点小吃力。 本人是电子专业,学习重点是在单片机编程发现。但是物联网是一个由 下位机硬件,上位机软件,服务器构成的一个系统。自己如果开发APP和服务器的程序太困难了。而且不适合初学者。所以开始介绍今天的东西:
1.作为硬件开发怎么在没有软件开发功底的情况下开发物联网设备?
因为现在已经有了很多软件的团队开始开发我们需要的云平台设备。
eg:阿里巴巴的阿里小智
中国移动的物联网平台 http://open.iot.10086.cn/
还有yeelink平台 http://www.yeelink.net/index 这个是今天利用的平台
备注:记住要注册
资料链接:
开始我们先按照网络资料配置一个LED灯的例程。
材料:
1.Arduion UNO 开发板 2.Arduion 配套的 W5100扩展版 3.注册yeelink账号 下载APP
网络链接:http://bbs.yeelink.net/forum.php?mod=viewthread&tid=345&extra=page%3D1
按照网络链接的方式配置,可以实现一个LED控制
2.下面是在Arduion IDE开发软件下面的程序
/*
Yeelink sensor client power switch example
*/
#include <SPI.h>
#include <Ethernet.h>
#include <Wire.h>
#include <math.h>
byte buff[2];
// for yeelink apiapi.yeelink.net LED /v1.0/device/10964/sensor/18179/datapoints
#define APIKEY "----------------------------" // 此处替换为你自己的API KEY
#define DEVICEID -------- // 此处替换为你的设备编号
char flag =0; //定义开关循环控制变量
String SENSORID[]={" --------"," --------"}; // 把sensor ID 依次替在这里,程序定义为数组,几个开关就写几个
byte ledPin[]={6,7}; //端口定义
// assign a MAC address for the ethernet controller.
byte mac[] = { 0x00, 0x1D, 0x72, 0x82, 0x35, 0x9D};
// initialize the library instance:
EthernetClient client ;
char server[] = "api.yeelink.net"; // name address for yeelink API
unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds
boolean lastConnected = false; // state of the connection last time through the main loop
const unsigned long postingInterval = 3*1000; // delay between 2 datapoints, 30s
String returnValue = "";
boolean ResponseBegin = false;
void setup() {
pinMode(6, OUTPUT);
pinMode(7, OUTPUT);
for(int i=0;i<2;i++) //I<7,几个开关,就把7改成几,其实就是循次数
{ pinMode(ledPin[i],OUTPUT);}
Wire.begin();
// start serial port:
Serial.begin(57600);
// start the Ethernet connection with DHCP:
if (Ethernet.begin(mac) == 0) {
Serial.println("Failed to configure Ethernet using DHCP");
for(;;)
;
}
else {
Serial.println("Ethernet configuration OK");
}
}
void loop() {
// if there's incoming data from the net connection.
// send it out the serial port. This is for debugging
// purposes only:
if (client.available()) {
char c = client.read();
// Serial.print(c);
if (c == '{')
ResponseBegin = true;
else if (c == '}')
ResponseBegin = false;
if (ResponseBegin)
returnValue += c;
}
if (returnValue.length() !=0 && (ResponseBegin == false))
{
Serial.println(returnValue);
if (returnValue.charAt(returnValue.length() - 1) == '1') {
Serial.println("turn on the LED");
digitalWrite(ledPin[flag], HIGH);
}
else if(returnValue.charAt(returnValue.length() - 1) == '0') {
Serial.println("turn off the LED");
digitalWrite(ledPin[flag], LOW);
}
returnValue = "";
flag++;
}
// if there's no net connection, but there was one last time
// through the loop, then stop the client:
if (!client.connected() && lastConnected) {
Serial.println();
Serial.println("disconnecting.");
client.stop();
}
// if you're not connected, and ten seconds have passed since
// your last connection, then connect again and send data:
if(!client.connected() && (millis() - lastConnectionTime > postingInterval)) {
// read sensor data, replace with your code
//int sensorReading = readLightSensor();
Serial.print("yeelink:");
//get data from server
// getData();
if (flag<2)
{
//get data from server
getData();
}
else
{
//put data to server
if(flag=3) {flag =0;}
}
}
// store the state of the connection for next time through
// the loop:
lastConnected = client.connected();
}
// this method makes a HTTP connection to the server and get data back
void getData(void) {
// if there's a successful connection:
if (client.connect(server, 80)) {
Serial.println("connecting...");
// send the HTTP GET request:
client.print("GET /v1.0/device/");
client.print(DEVICEID);
client.print("/sensor/");
//client.print(SENSORID2);
//SENSORID[flag]={"19581","19582"};
client.print(SENSORID[flag]);
client.print("/datapoints");
client.println(" HTTP/1.1");
client.println("Host: api.yeelink.net");
client.print("Accept: *");
client.print("/");
client.println("*");
client.print("U-ApiKey: ");
client.println(APIKEY);
client.println("Content-Length: 0");
client.println("Connection: close");
client.println();
Serial.println("print get done.");
}
else {
// if you couldn't make a connection:
Serial.println("connection failed");
Serial.println();
Serial.println("disconnecting.");
client.stop();
}
// note the time that the connection was made or attempted:
lastConnectionTime = millis();
}
其中
#define APIKEY "----------------------------" // 此处替换为你自己的API KEY
这个是在yeelink平台的编号,在自己的账号里面可以找到
#define DEVICEID -------- // 此处替换为你的设备编号
这个设备号是一个设备一个号码
String SENSORID[]={" --------"," --------"}; // 把sensor ID 依次替在这里,程序定义为数组,几个开关就写几个
这个应该是对设备的命令,这里用来区分控制的端口
概括:
1.这个平台下面有自己开发的APP,可以在官方网站下面下载。
2.可以控制的信号只有数字信号,检测的信号有模拟和数字的信号
2016年1月14
|
|