无标题文章

https://github.com/knolleary/pubsubclient

https://www.jianshu.com/p/590f249ecd05

https://github.com/plapointe6/EspMQTTClient

https://github.com/Imroy/pubsubclient

esp32是乐鑫物联网芯片,带wifi。

使用arduino进行编程。MQTT的服务器代码用NODEJS完成。mqserver.js

arduino的代码如下:

/*

Basic ESP8266 MQTT example

This sketch demonstrates the capabilities of the pubsub library in combination

with the ESP8266 board/library.

It connects to an MQTT server then:

  - publishes "hello world" to the topic "outTopic" every two seconds

  - subscribes to the topic "inTopic", printing out any messages

    it receives. NB - it assumes the received payloads are strings not binary

  - If the first character of the topic "inTopic" is an 1, switch ON the ESP Led,

    else switch it off

It will reconnect to the server if the connection is lost using a blocking

reconnect function. See the 'mqtt_reconnect_nonblocking' example for how to

achieve the same result without blocking the main loop.

To install the ESP8266 board, (using Arduino 1.6.4+):

  - Add the following 3rd party board manager under "File -> Preferences -> Additional Boards Manager URLs":

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

  - Open the "Tools -> Board -> Board Manager" and click install for the ESP8266"

  - Select your ESP8266 in "Tools -> Board"

*/

#include <WiFi.h>

#include <PubSubClient.h>

// Update these with values suitable for your network.

const char* ssid = "xxx";

const char* password = "xx123456";

const char* mqtt_server = "xx.xx.xx.xx";

WiFiClient espClient;

PubSubClient client(espClient);

long lastMsg = 0;

char msg[50];

int value = 0;

int dhtpin=12;

int ledpin=11;

int temp;//温度

int humi;//湿度

void setup() {

  pinMode(ledpin,OUTPUT);

  Serial.begin(115200);

  setup_wifi();

  client.setServer(mqtt_server, 1883);

  client.setCallback(callback);

}

void setup_wifi() {    //连接wifi

  delay(10);

  // We start by connecting to a WiFi network

  Serial.println();

  Serial.print("Connecting to ");

  Serial.println(ssid);

  WiFi.begin(ssid, password);

  while (WiFi.status() != WL_CONNECTED) {

    delay(500);

    Serial.print(".");

  }

  Serial.println("");

  Serial.println("WiFi connected");

  Serial.println("IP address: ");

  Serial.println(WiFi.localIP());

}

void callback(char* topic, byte* payload, unsigned int length) {    //回调函数

  Serial.print("Message arrived [");

  Serial.print(topic);

  Serial.print("] ");

  for (int i = 0; i < length; i++) {

    Serial.print((char)payload[i]);

  }

  Serial.println();

  // Switch on the LED if an 1 was received as first character

  if (length>2){

    if ((char)payload[length-2] == '1') {

      digitalWrite(ledpin, LOW);  // Turn the LED on (Note that LOW is the voltage level

      // but actually the LED is on; this is because

      // it is acive low on the ESP-01)

    } else {

      digitalWrite(ledpin, HIGH);  // Turn the LED off by making the voltage HIGH

    }

  }

}

void reconnect() {        //每次发布mqtt信息时,需检查连接

  // Loop until we're reconnected

  while (!client.connected()) {

    Serial.print("Attempting MQTT connection...");

    // Attempt to connect

    if (client.connect("ID_ESP32Client")) {

      Serial.println("connected");

      // Once connected, publish an announcement...

      client.publish("hmdata", "{\"datetime\":\"2018-7-1 19:30\",\"temp\":25,\"humi\":100}");  //发布json格式

      // ... and resubscribe

      client.subscribe("hmdata");        //订阅

    } else {

      Serial.print("failed, rc=");

      Serial.print(client.state());

      Serial.println(" try again in 5 seconds");

      // Wait 5 seconds before retrying

      delay(5000);

    }

  }

}

void loop() {

  if (!client.connected()) {

    reconnect();

  }

  client.loop();    //检查调用回调函数

  long now = millis();

  if (now - lastMsg > 2000) {

    lastMsg = now;

    ++value;

    wenshidu();  //读取温度

    temp=temp+random(1,5);

    humi=humi+random(1,10);

    snprintf (msg, 75, "{\"datetime\":\"2018-7-2 20:30\",\"temp\":%ld,\"humi\":%ld}", temp,humi);

    Serial.print("Publish message: ");

    Serial.println(msg);

    client.publish("hmdata", msg);

  }

}

void wenshidu()  //获取温湿度。

{

int pin=12;

int tol;//校对码

int j;

unsigned int loopCnt;

int chr[40] = {0};//创建数字数组,用来存放40个bit

unsigned long time1;

  bgn:

  delay(2000);

//设置2号接口模式为:输出

//输出低电平20ms(>18ms)

//输出高电平40μs

  pinMode(pin,OUTPUT);

  digitalWrite(pin,LOW);

  delay(20);

  digitalWrite(pin,HIGH);

  delayMicroseconds(40);

  digitalWrite(pin,LOW);

//设置2号接口模式:输入

  pinMode(pin,INPUT);

  //高电平响应信号

  loopCnt=10000;

  while(digitalRead(pin) != HIGH)

  {

    if(loopCnt-- == 0)

    {

//如果长时间不返回高电平,输出个提示,重头开始。

      Serial.println("HIGH");

      goto bgn;

    }

  }

  //低电平响应信号

  loopCnt=30000;

  while(digitalRead(pin) != LOW)

  {

    if(loopCnt-- == 0)

    {

//如果长时间不返回低电平,输出个提示,重头开始。

      Serial.println("LOW");

      goto bgn;

    }

  }

//开始读取bit1-40的数值 

    for(int i=0;i<40;i++)

  {

    while(digitalRead(pin) == LOW)

    {}

//当出现高电平时,记下时间“time”

    time1 = micros();

    while(digitalRead(pin) == HIGH)

    {}

//当出现低电平,记下时间,再减去刚才储存的time

//得出的值若大于50μs,则为‘1’,否则为‘0’

//并储存到数组里去

    if (micros() - time1  >50)

    {

      chr[i]=1;

    }else{

      chr[i]=0;

    }

  }


//湿度,8位的bit,转换为数值

humi=chr[0]*128+chr[1]*64+chr[2]*32+chr[3]*16+chr[4]*8+chr[5]*4+chr[6]*2+chr[7];


//温度,8位的bit,转换为数值

temp=chr[16]*128+chr[17]*64+chr[18]*32+chr[19]*16+chr[20]*8+chr[21]*4+chr[22]*2+chr[23];

  //校对码,8位的bit,转换为数值

//tol=chr[32]*128+chr[33]*64+chr[34]*32+chr[35]*16+chr[36]*8+chr[37]*4+chr[38]*2+chr[39];

//输出:温度、湿度、校对码

  Serial.print("temp:");

  Serial.println(temp);

  Serial.print("humi:");

  Serial.println(humi);


}

需要说明的是:

ESP32的电压是3.3v,导致带DHT11传感器时,用dht11库会出现校验错误。因此,采用自写代码形式,完成温湿度采集。还没有仔细分析二者代码有什么不同。

实际使用时,发现一个问题:发布的消息和收到的消息会不同步,发布消息后,要3个周期才能收到自己发布的消息。很奇怪。

---------------------

作者:wengduke

来源:CSDN

原文:https://blog.csdn.net/wengduke/article/details/80889364

版权声明:本文为博主原创文章,转载请附上博文链接!

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,332评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,508评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,812评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,607评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,728评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,919评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,071评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,802评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,256评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,576评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,712评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,389评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,032评论 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,798评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,026评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,473评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,606评论 2 350

推荐阅读更多精彩内容

  • JAVA面试题 1、作用域public,private,protected,以及不写时的区别答:区别如下:作用域 ...
    JA尐白阅读 1,146评论 1 0
  • # 一度蜜v3.0协议 --- # 交互协议 [TOC] ## 协议说明 ### 请求参数 下表列出了v3.0版协...
    c5e350bc5b40阅读 641评论 0 0
  • ```java /* * Copyright (C) 2006 The Android Open Source P...
    mrganer阅读 1,136评论 0 50
  • title: Optical Character Recognition (OCR)author: Marina ...
    4a87cc38dcbc阅读 363评论 0 0
  • 第94个冬天 最后一片枯叶落了 它落下的时候 没有谁为之伤心 曾在它底下乘凉的人 面无表情 那是怎样的铁石心肠啊 ...
    开心点金石阅读 1,582评论 49 69