nodeMCU+樹莓派+阿里云IOT實現(xiàn)局域網(wǎng)溫濕度數(shù)據(jù)采集

一诈豌、功能說明

  1. 使用nodeMCU + DHT11 自動采集溫濕度數(shù)據(jù)仆救,采用JSON格式
  2. 上傳溫濕度數(shù)據(jù)到局域網(wǎng)的樹莓派
  3. 樹莓派接收J(rèn)SON數(shù)據(jù),存入數(shù)據(jù)庫队询,上傳阿里云IOT

功能花里胡哨不是特別實用派桩,2020年課設(shè)閑的無聊做的一個玩意,有些內(nèi)容太久遠(yuǎn)了忘記了蚌斩,想起來再添加吧

二铆惑、電路設(shè)計

1.nodeMCU與DHT11

image.png

2.實物

image.png

三、Arduino添加對ESP8266的支持

  1. 在文件->首選項->附加開發(fā)板管理器網(wǎng)站添加:

http://arduino.esp8266.com/stable/package_esp8266com_index.json

image.png

  1. 打開工具->開發(fā)板->開發(fā)板管理器

  2. 等待開發(fā)板管理器啟動完成后送膳,移動到開發(fā)板管理器的最下方员魏,可以看到一個esp8266 by esp8266 Community,右下角有個選擇版本叠聋,選好2.0.0之后點擊安裝撕阎。

4.工具->開發(fā)板->Esp8266Module
選擇nodeMCU1.0


image.png

四、nodeMCU代碼

// Import required libraries
#include "ESP8266WiFi.h"
#include <aREST.h>
#include "DHT.h"

// DHT11 sensor pins
#define DHTPIN 5
#define DHTTYPE DHT11

// The port to listen for incoming TCP connections 
#define LISTEN_PORT 80

// WiFi parameters
const char* ssid = "Wifi_Name";
const char* password = "Wifi_Passwd";

// Variables to be exposed to the API
float temperature;
float humidity;

//int id for trans to String and number the data 
int id = 0;

// Create aREST instance
aREST rest = aREST();

// Initialize DHT sensor
DHT dht(DHTPIN, DHTTYPE, 15);

// Create an instance of the server
WiFiServer server(LISTEN_PORT);

void setup(void)
{  
  // Start Serial
  Serial.begin(115200);
  
  // Init DHT 
  dht.begin();
  
  // Init variables and expose them to REST API
  rest.variable("temperature",&temperature);
  rest.variable("humidity",&humidity);
    
  // Set device name
  rest.set_name("esp8266");
  
  // Connect to WiFi
  WiFi.begin(ssid, password);
  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(".");
  }
  Serial.println("");
  Serial.println("WiFi connected");
 
  // Start the server
  server.begin();
  Serial.println("Server started");

}

void loop() {
  
  //Number the data from no.0 begin
  //set_id is const String.Using force format
  //id -> int
  //id_str -> String
  String id_str = (String) id;
  id = id + 1;
  rest.set_id(id_str);
  
  // Reading temperature and humidity
  humidity = dht.readHumidity();
  temperature = dht.readTemperature();

  //Print the Data
  Serial.println("=======================================");
  Serial.print("This is No.");
  Serial.print(id_str);
  Serial.println("data");
  Serial.print("temperature is :");
  Serial.print(temperature);
  Serial.print("℃");
  Serial.print("  ");
  Serial.print("humidity is :");
  Serial.print(humidity);  
  Serial.println("H");
  Serial.print("API IP is :");
  Serial.println(WiFi.localIP());
  Serial.println("=======================================");
  Serial.println("\n");
  //delay nearly 1 second
  delay(1000);
  
  // Handle REST calls
  WiFiClient client = server.available();
  if (!client) {
    return;
  }
  while(!client.available()){
    delay(1);
  }
  rest.handle(client);
  
}

五碌补、樹莓派服務(wù)器端代碼

#import libraries
import urllib.request
import json
import json.decoder
import datetime
import pymysql
import socket
import re
from linkkit import linkkit

#API IP
url_temp = 'http://ESP8266_IP/temperature'
url_hum = 'http://ESP8266_IP/humidity'
# http headers
firefox_headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0'}

#Ali JSON settings
lk = linkkit.LinkKit(
    host_name="cn-shanghai",
    product_key="",
    device_name="",
    device_secret="")

# ALI connect
lk.thing_setup("tsl.json")
lk.connect_async()


# http requeset and get data
# http Response is a Json and actually type is str
# turn it into dict and split the data.
# while insert into databases.if get No database error then create it.
# finally print the data 
while True:
    try:
        #Temp Request
        temp_request = urllib.request.Request(url_temp,headers = firefox_headers)
        temp_response = urllib.request.urlopen(temp_request,timeout=3)
        #Hum Request
        hum_request = urllib.request.Request(url_hum,headers = firefox_headers)
        hum_response = urllib.request.urlopen(hum_request,timeout=3)

        #Str DATA
        temp_response_str = temp_response.read().decode('utf-8')
        hum_response_str = hum_response.read().decode('utf-8')

    except socket.timeout:
        print("time out ! Please Check Connection")
        exit(1)

    #str->dict
    try:
        temp_response_dict = json.loads(temp_response_str)
        hum_response_dict = json.loads(hum_response_str)
    except json.decoder.JSONDecodeError:
        print("Get an Error while receving json data!")
        print("Please Check Connection")
        exit(1)

    #result data type<dict>
    temp_result = temp_response_dict['temperature']
    temp_id = temp_response_dict['id']
    hum_result = hum_response_dict['humidity']
    hum_id = hum_response_dict['id']
    time = datetime.datetime.now()

    # MysqlConnetcion
    try:
        conn = pymysql.connect(host='localhost',user='mysql_users',passwd='mysql_passwd',db='mysqldatabase',charset='utf8')
    except:
        print("Mysql Connection Error!Please Check Mysql")
        exit(1)

    cur = conn.cursor()

    sql_create_table = """
    CREATE TABLE dht11(
    TIME TIMESTAMP,
    TEMP_ID INT(10),
    TEMP_VALUE INT(10),
    HUM_ID INT(10),
    HUM_VALUE INT(10))
    """

    into = "INSERT INTO dht11(temp_id,temp_value,hum_id,hum_value,time) VALUES (%s,%s,%s,%s,%s)"
    values = (temp_id,temp_result,hum_id,hum_result,time)

    # excute mysql
    try:
        cur.execute(into,values)
    except:
        try:
            cur.execute(sql_create_table)
        finally:
            cur.execute(into,values)
        exit(1)

    conn.commit()
    conn.close()

    # update to ALI
    prop_data = {
        "CurrentTemperature":  round(temp_result, 2),
        "CurrentHumidity":  round(hum_result, 2)
    }
    try:
        rc, request_id = lk.thing_post_property(prop_data)
        print("===============================")
        print(time)
        print("Sending TO ALIIOT OK     Insert into databases OK")
        print("Temperature is:",temp_result,"   ","Humidity is:",hum_result)
        print("===============================")
        print("\n")
    except Exception as e:
        print('ERROR:', e)
        exit(1)

六虏束、內(nèi)容展示

  1. NodeMCU獲取溫濕度棉饶、IP地址,通過串口顯示


    image.png
  2. 樹莓派接收溫濕度數(shù)據(jù)并插入數(shù)據(jù)庫镇匀、上傳阿里云IOT


    image.png

3.阿里云IOT數(shù)據(jù)


image.png
image.png

4.樹莓派本地Sql插入的數(shù)據(jù)


image.png
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末照藻,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子汗侵,更是在濱河造成了極大的恐慌幸缕,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,348評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件晰韵,死亡現(xiàn)場離奇詭異发乔,居然都是意外死亡,警方通過查閱死者的電腦和手機雪猪,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,122評論 2 385
  • 文/潘曉璐 我一進(jìn)店門栏尚,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人浪蹂,你說我怎么就攤上這事抵栈。” “怎么了坤次?”我有些...
    開封第一講書人閱讀 156,936評論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長斥赋。 經(jīng)常有香客問我缰猴,道長,這世上最難降的妖魔是什么疤剑? 我笑而不...
    開封第一講書人閱讀 56,427評論 1 283
  • 正文 為了忘掉前任滑绒,我火速辦了婚禮,結(jié)果婚禮上隘膘,老公的妹妹穿的比我還像新娘疑故。我一直安慰自己,他們只是感情好弯菊,可當(dāng)我...
    茶點故事閱讀 65,467評論 6 385
  • 文/花漫 我一把揭開白布纵势。 她就那樣靜靜地躺著,像睡著了一般管钳。 火紅的嫁衣襯著肌膚如雪钦铁。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,785評論 1 290
  • 那天才漆,我揣著相機與錄音牛曹,去河邊找鬼。 笑死醇滥,一個胖子當(dāng)著我的面吹牛黎比,可吹牛的內(nèi)容都是我干的超营。 我是一名探鬼主播,決...
    沈念sama閱讀 38,931評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼阅虫,長吁一口氣:“原來是場噩夢啊……” “哼演闭!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起书妻,我...
    開封第一講書人閱讀 37,696評論 0 266
  • 序言:老撾萬榮一對情侶失蹤船响,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后躲履,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體见间,經(jīng)...
    沈念sama閱讀 44,141評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,483評論 2 327
  • 正文 我和宋清朗相戀三年工猜,在試婚紗的時候發(fā)現(xiàn)自己被綠了米诉。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,625評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡篷帅,死狀恐怖史侣,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情魏身,我是刑警寧澤惊橱,帶...
    沈念sama閱讀 34,291評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站箭昵,受9級特大地震影響税朴,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜家制,卻給世界環(huán)境...
    茶點故事閱讀 39,892評論 3 312
  • 文/蒙蒙 一正林、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧颤殴,春花似錦觅廓、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至贤笆,卻和暖如春蝇棉,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背芥永。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工篡殷, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人埋涧。 一個月前我還...
    沈念sama閱讀 46,324評論 2 360
  • 正文 我出身青樓板辽,卻偏偏與公主長得像奇瘦,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子劲弦,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,492評論 2 348

推薦閱讀更多精彩內(nèi)容