ESP8266 and Node-RED with MQTT (Publish and Subscribe)

Содержание

In this post we’re going to show you how to control ESP8266 outputs and display sensor data from the ESP8266 on Node-RED. The Node-RED software is running on a Raspberry Pi, and the communication between the ESP8266 and the Node-RED software is achieved with the MQTT communication protocol.

The following figure shows an overview of what we’re going to do in this tutorial.

First, watch the video demonstration below

Node-RED and Node-RED Dashboard

You need to have Node-RED and Node-RED Dashboard installed in your Raspberry Pi. The following blog posts are useful for getting started with Node-RED and Node-RED dashboard:

MQTT Protocol

In this tutorial we’re going to establish a communication between a Raspberry Pi running the Node-RED software and an ESP8266 using MQTT.

MQTT stands for MQ Telemetry Transport and it is a nice lightweight publish and subscribe system where you can publish and receive messages as a client. It is a simple messaging protocol, designed for constrained devices and with low-bandwidth. So, it’s the perfect solution for Internet of Things applications.

If you want to learn more about MQTT, watch the video below.

For a written version of this video and additional resources, read this blog post What is MQTT and How It Works.

Installing Mosquitto Broker

In MQTT, the broker is primarily responsible for receiving all messages, filtering the messages, decide who is interested in it and then publishing the message to all subscribed clients.

There are several brokers you can use. In this tutorial we’re going to use the Mosquitto Broker which needs to be installed on Raspberry Pi.

To install the Mosquitto broker on Raspberry Pi follow this tutorial: How to Install Mosquitto Broker on Raspberry Pi.

Testing

To see if Mosquitto broker was successfully installed, run the next command:

This returns the Mosquitto version that is currently running in your Raspberry Pi. It should be 1.4 or above.

Note: the Mosquitto command returns the Mosquitto version that is currently installed, but it also tries to initialize Mosquitto again. Since Mosquitto is already running it prompts an error message. Don’t worry Mosquitto is properly installed and running if you see a similar message.

Establishing an MQTT communication with Node-RED

In this section we’re going to establish an MQTT communication using the Node-RED nodes.

Dashboard Layout

The first step is to create the dashboard layout. In this example, we’ll have a button to control an ESP8266 output; a chart and a gauge to display temperature and humidity readings from the DHT11 sensor.

On the top right corner of the Node-RED window, select the Layout tab under the dashboard tab. Create a tab called Room and inside the Room tab, create two groups: Lamp and Sensor as shown in figure below.

Creating the Flow

Drag the following nodes to the flow – see figure below:

  • switch – this will control the ESP8266 output
  • mqtt output node – this will publish a message to the ESP8266 accordingly to the switch state
  • 2xmqtt input nodes – this nodes will be subscribed to the temperature and humidity topics to receive sensor data from the ESP
  • chart – will display the temperature sensor readings
  • gauge – will display the humidity sensor readings

Node-RED and the MQTT broker need to be connected. To connect the MQTT broker to Node-REd, double-click the MQTT output node. A new window pops up – as shown in figure below.

  1. Click the Add new mqtt-broker option.
  2. Type localhost in the server field
  3. All the other settings are configured properly by default.
  4. Press Add and the MQTT output node automatically connects to your broker.

Edit all the other nodes properties as shown in the following figures:

  • switch – the switch sends an on string message when it’s on; and sends an off string message when it’s off. This node will publish on the room/lamp topic. Your ESP will then be subscribed to this topic, to receive its messages.
  • mqtt output node. This node is connected to the mosquitto broker and it will publish in the room/lamp topic.
  • mqtt input node. This node is subscribed to the room/temperature topic to receive temperature sensor data from the ESP8266. The ESP8266 will be pusblishing the temperature readings on this topic.
  • chart. The chart will display the readings received on the room/temperature topic.
  • mqtt input node. This node is subscribed to the room/humidity topic to receive humidity sensor data from the ESP8266. The ESP8266 will be pusblishing the humidity readings on this same topic.
  • gauge. The gauge will display the readings received on the room/humidity topic.

Wire your nodes as shown in the figure below.

Your Node-RED application is ready. Click the Deploy button on the top right corner.

The Node-RED application is ready. To see how your dashboard looks go to http:// your-pi-ip-address /ui.

Now, follow the next sections to prepare your ESP8266.

Preparing your Arduino IDE

We’ll program the ESP8266 using the Arduino IDE. In order to upload code to your ESP8266 using the Arduino IDE, you need to install the ESP8266 add-on (How to Install the ESP8266 Board in Arduino IDE). You’ll also need to install two additional libraries to have everything ready for your ESP8266.

Installing the PubSubClient Library

The PubSubClient library provides a client for doing simple publish/subscribe messaging with a server that supports MQTT (basically allows your ESP8266 to talk with Node-RED).

1) Click here to download the PubSubClient library. You should have a .zip folder in your Downloads folder

2) Unzip the .zip folder and you should get pubsubclient-master folder

3) Rename your folder from pubsubclient-master to pubsubclient

4) Move the pubsubclient folder to your Arduino IDE installation libraries folder

5) Then, re-open your Arduino IDE

The library comes with a number of example sketches. See File Examples PubSubClient within the Arduino IDE software.

Installing the DHT Sensor Library

The DHT sensor library provides an easy way of using any DHT sensor to read temperature and humidity with your ESP8266 or Arduino boards.

1) Click here to download the DHT sensor library. You should have a .zip folder in your Downloads

2) Unzip the .zip folder and you should get DHT-sensor-library-master folder

3) Rename your folder from DHT-sensor-library-master to DHT

4) Move the DHT folder to your Arduino IDE installation libraries folder

5) Then re-open your Arduino IDE

For more information about the DHT11 sensor and the ESP8266, read ESP8266 DHT11/DHT22 Temperature and Humidity Web Server with Arduino IDE.

Selecting the right board on Arduino IDE

You also need to select the right board on Arduino IDE:

1) Go to Tools and select “NodeMCU 1.0 (ESP-12E Module)”.

2) Select your ESP port number under the Tools Port COM4 (in my case)

Uploading code

Now, you can upload the following code to your ESP8266. This code publishes messages of the temperature and humidity from the DHT11 sensor on the room/temperature and room/humidity topics trough MQTT protocol.

The ESP is subscribed to the room/lamp topic to receive the messages published on that topic by the Node-RED application, to turn the lamp on or off.

The code is well commented on where you need to make changes. You need to edit the code with your own SSID, password and RPi IP address.

This code is also compatible with other DHT sensors – you just need to uncomment and comment the right lines of code to chose your sensor.

After uploading the code, and with the Raspberry Pi running your Node-RED application and the Mosquitto broker, you can open the Arduino IDE serial monitor at a baud rate of 115200 and see what’s happening in real time.

This is helpful to check if the ESP has established a successful connection to your router and to the Mosquitto broker. You can also see the messages the ESP is receiving and publishing.

Building the Circuit

The following sections show you the needed parts and schematics to build the circuit for this project.

Parts required

These are the parts required to build the circuit (click the links below to find the best price at Maker Advisor):

You can use the preceding links or go directly to MakerAdvisor.com/tools to find all the parts for your projects at the best price!

Schematics

Here are the schematics for this project’s circuit.

Demonstration

Congratulations! You project is now completed.

Go to http:// your-pi-ip-address / ui to control the ESP with the Node-RED application. You can access your application in any browser on the same network that your Pi (watch the video demonstration below).

The application should look something the figure below.

Wrapping up

In this tutorial we’ve shown you the basic concepts that will allow you to turn on lights and monitor sensors on your ESP using Node-RED and the MQTT communication protocol. You can follow these basic steps to build more advanced projects.

We hope you’ve found this tutorial useful.

If you liked this project and Home Automation make sure you check our course: Build a Home Automation System for $100.

[eBook] Build Web Servers with ESP32 and ESP8266 (2nd Edition)

Build Web Server projects with the ESP32 and ESP8266 boards to control outputs and monitor sensors remotely. Learn HTML, CSS, JavaScript and client-server communication protocols DOWNLOAD »

Recommended Resources

Build a Home Automation System from Scratch » With Raspberry Pi, ESP8266, Arduino, and Node-RED.

Home Automation using ESP8266 eBook and video course » Build IoT and home automation projects.

Arduino Step-by-Step Projects » Build 25 Arduino projects with our course, even with no prior experience!

What to Read Next…

Install the ESP32 Board in Arduino IDE in less than 1 minute Windows Mac OS X and Linux

Installing the ESP32 Board in Arduino IDE (Windows, Mac OS X, Linux)

ESP32 I2C Communication: Set Pins, Multiple Bus Interfaces and Peripherals (Arduino IDE)

ESP32 I2C Communication: Set Pins, Multiple Bus Interfaces and Peripherals (Arduino IDE)

ESP8266 Remote Controlled Sockets

Enjoyed this project? Stay updated by subscribing our newsletter!

98 thoughts on “ESP8266 and Node-RED with MQTT (Publish and Subscribe)”

Great intro. I love it! You guys are awesome.
One note of caution to new users though regarding using charts; I had a dashboard set up with about 6 charts and after a day or two the pi became VERY slow. I’m not sure why or if this problem was fixed in the recent node-red update but be aware that if you have a lot of charts and you pi gets very sluggish you need to remove the charts or reboot the pi.
Bruster

BTW, here is a in-depth explanation of how mqtt and the paho lib works: http://www.steves-internet-guide.com/
Bruster

I run my Pies with HypriotOS and Node-RED in a docker container, so you just have to reload frequently and have best perfomance at every time. 🙂

Great article. Following in detail to set up – I can’t find the gauge settings.

Hi.
You are right.
We’ve skipped that step unintentionally.
I updated the post with the gauge settings.
Thanks for noticing.
Regards
Sara 🙂

Hi sara i want to do a project like this, with raspbery pi model 4 b, esp8266, and a humidity sensor, how i start ?

Very nice Tutorial and very well commented Sketch. Thank You! (P.S.: some Mosquitto Servers, like mine, expect Username and Password to get connected to. In that case change line 108 of the sketch to:
if (client.connect(“ESP8266Client”,[username],[password])) <

connected…yeey &#128578;
local ip
172.20.1.78
Attempting MQTT connection…failed, rc=-2 try again in 5 seconds
Attempting MQTT connection…failed, rc=-2 try again in 5 seconds
Attempting MQTT connection…failed, rc=-2 try again in 5 seconds
Attempting MQTT connection…

how to solve upword trouble ,itz didn’t connct to mqtt

Hi.
You either need to:
– start the mosquitto broker, or
– you have the wrong IP address for the mosquitto broker in your Arduino code, or
– you have multiple ESPs in your network with the same name, causing a conflict with the mosquitto broker.

Just wondering if it’s possible to use code (apart from Node red) on PI3, so temperature sensor would work?

Hi James.
If you want to use the temperature sensor with the Rapsberry Pi, without Node-RED, you can use the DHT python library.
Take a look at look at the library here: github.com/adafruit/Adafruit_Python_DHT
I hope this helps.
Regards,
Sara &#128578;

Great tutorial! Thanks very much, really helped get me started! Only issue i had was with the lamp turning on and off, after a bit of investigation it turned out that the NodeRed output default of the switch node is “true” and “false” not “on” and “off”, after minor code change everything worked!

Hi Luke.
Great! We’re glad it works!

I found you had to change to a string. [thanks for the tip]
then click on the true/false field to get OFF and ON to show.
still troubleshooting……

I found the mistake &#128578; Please erase the comment. But I still needed to change it though.

Hi Rui,
I have a general sort of question:
– It looks to me like all projects, either using ESP8266 or Raspberry Pi rely on using a home LAN, Wifi, etc. However, what if you want to build a, say, robot to use away from Wifi out in the field what do you use then? or what if you build a project and you want to demo at your friend’s place who has a different LAN. How do you become independent of the local LAN? can you use an access point with some private IP to link all your devices to it? Thanks.

When I ask this question to myself, a couple of months ago, I ended with 2 approaches:

1) I defined an array of ssid/passwords of some wifi networks (home, office, and so on…). The ESP8266 will try to connect to first one available. PROBLEM: you can be on a different place and so… no knew wifi to connect to…!

2) I programmed the ESP8266 as a DHCP server with it’s own sub-net (let’s say, for example: 192.168.5.x) and the other devices will be DHCP clients of the ESP8266. PROBLEM: wired devices; if you want to connect your home desktop computer to the ESP, you’ll need to do a lot of changes…

How to use last will in nodered and nodemcu

Hey it is working very well.Yo Yo I am happy.Thank You..

Hi maam,
A very nice tutorial maam.
Im having a problem with the temperature reading.
Im not getting a reading for temperature but im getting a reading for humidity.
Ive connected a messsage payload at the output and it returns an empty string.
Awaiting Your reply ASAP.
Thanking you.

Hi.
That is very weird.
Maybe the sensor is failing to get temperature readings.
Can you try the basic example and see if the sensor is working properly: github.com/adafruit/DHT-sensor-library/blob/master/examples/DHTtester/DHTtester.ino
Regards,
Sara

Hi.I have problem with this code when I upload this code to Node MCU .Like this .I don’t know what I need to do .
Error: Exist status 1.Error compiling for board node MCU 1.0 &#128578;

Hi.
Please make sure that you’ve installed all the necessary libraries.
You also need to install this library (not mentioned in the tutorial, we need to update it): github.com/adafruit/Adafruit_Sensor
Regards,
Sara

All working. Great tutorial, thank you so much &#128512;

That’s great!
You’re welcome.
Regards,
Sara

I created the dashboard on node-red step by step and burned the code into nodemcu as well. But NodeMCU and node-RED are not communicating with each other. I checked the arduino serial monitor and its giving this error.
Attempting MQTT connection…failed, rc=5 try again in 5 seconds
Kindly help me how to fix this bug. I really need your help mam.

Hi.
Please double check that your broker is working as expected: https://randomnerdtutorials.com/testing-mosquitto-broker-and-client-on-raspbbery-pi/
Also, verify that you have entered the broker IP address in your code.
Regards,
Sara

How can you view the dashboard in android device,
I am unable to do it.
Can you help me with that!

What exactly is happening when you try to open it?

Excellent tutorial. Thanks a lot! I follow you from “starting with raspberry PI” until turn on the LED with the dashboard from node-red

That’s great!
Thanks &#128578;

Hai Sara santos and Rui santos, my name is budiman, on March 25 I commented on the tutorial. I have a problem with the mqtt connection and the results always leave a comment mqtt connection is failed, can you help me about this?

Hi.
We receive many comment every day. It is difficult to keep track of all the questions.
I’m sorry for taking so long to get back to you.

I don’t know why you are getting that error. But I found this discussion about that exact error, maybe you’ll find a solution here: https://github.com/knolleary/pubsubclient/issues/604#issuecomment-588495411
I hope this helps.
Regards,
Sara

really nice tutorial..it covers a lot of concepts, like mosquito broker, node-red and broker at the same device, esp as mqtt client..
I have only one but important question..is it necessary to establish a wifi connection?
i want to make a secured local mqtt network. Do i need the wifi and the router, because i think i can establish a connection from raspberry to esp or vice versa and bypass all the internet dangers..
what do you think about it?

You people are great. Thank you so much for guiding us through the entire process. It’s unique and content is amazing,detailed. No confusion at any point.

Thank you!
I’m glad it is easy to follow our projects &#128512;
Regards,
Sara

Hey,
I have been enjoying your tutorials very much, has helped me get up to speed wit IoT.
It would be cool if you had time to do this with a nodeMCU running micropython rather than a Arduino IDE, to see the python approach.

Hi Josh.
We have this tutorial about MQTT with MicroPython: https://randomnerdtutorials.com/micropython-mqtt-esp32-esp8266/
I hope this helps.
Regards,
Sara

how do i send ferhenheit temp in topic for node red gauge.

i figured it out again right after posting this comment…HAHAHAHA.

I’m glad you made it work!

Do you have any idea of how much you can speed up the data transfer rate? for instance, in this project the sensors data are refreshed in every 30 sec. Would it be possible to refresh in every 0,1sec?

Hi Carlos.
You can speed up the data transfer. But I never tried 0.1 seconds. You have to experiment and see if it works. Then, let me know your results.
Regards,
Sara

hallo, i have a problem with your code.
my monitor give feedback
Attampting mqtt connection…… failed, rc=2 try again in 5 seconds
Attampting mqtt connection…… failed, rc=2 try again in 5 seconds
Attampting mqtt connection…… failed, rc=2 try again in 5 seconds
Attampting mqtt connection…… failed, rc=2 try again in 5 seconds
and still so.
I use all your code, just change the ssid and password, please help me

In my case I changed my router’s channel from automatic to 11 (static), this solved my connection problems, another thing is that I use the mosquito on HomeAssistant, his IP being 172.30.32.1, but the connection was accepted only on IP HOST (ie HomeAssistant- 192.168.XXX.XXX)

Hi! Can you tell me how to save the data from sensor to excel file? Thanks

how i can control the led on/off automatically

Hi.
This tutorial shows an example on how to control an LED using Node-RED: https://randomnerdtutorials.com/esp8266-and-node-red-with-mqtt/
Regards,
Sara

Hi Sara Rui
I had always wanted to try Node Red but was apprehensive. This tutorial has worked wonders for me. Thanks for the great project. Keep it up.
Vasant

Hi!
That’s great! I’m glad you’ve liked Node-RED.
Thanks for supporting our work.
Regards,
Sara

Hello
Good presentation.
I would like to ask how is it possible to access to the broker from outside the home.

Hi.
In this case, no. Because the broker is running on a Raspberry Pi on the local network.
Regards,
Sara

Sara, Rui.
Excelente trabajo. Segui este un par mas de los tutoriales y ya estoy enviando datos a la pi desde mis sensores en una ESP8266. Tambien estoy controlando varios actuadores conectados al esp8266.
Solo me falta, ahora, ver como manejar la pi por nombre y como poder usarla de una red externa la wifi de mi casa.

Thank you very much for the contribution, I was already hitting my head against the wall for a solution to the constant drops of the MQTT connection of my ESP82266 arduino Mega onBoard (Wemos), in your Skecth you have the path of the stones, I changed the name of ESP to a shorter and the connection remained stable, your tutorial was the most complete that I found so far on this huge web. It was perfect in ESP communication with the mosquitto broker on HomeAssistant linked to NodeRed. I am Brazilian, so forgive any mistake in my English.

Hi.
That’s great!
I’m glad you found it useful.
Thanks for following our work.
Regards,
Sara

I do not have an raspberry pi.
but I do have an Ubuntu PC that I would want to use.
Can you offer any suggestions ?

When I started my home automation I opted for an Ubuntu installation where I added an “Open source home automation platform that puts local control and privacy first”. The name is “Home Assistant”, it is possible to install an MQTT Broker, Nodered and many other features.

If you don’t want to go to the platform you can install only the nodered and MQTT Mosquitto Broker features

Hi there,
many thanks for the tutorials, really helped to get me started. However, I have an issue that mu ESP doesn’t connect to Mosquitto Broker. Similar to SAM (comment on January 23, 2018) I get “Attempting MQTT connection…failed, rc=-2 try again in 5 seconds” on the monitor. Does the -2 help to narrow down the problem? SAM got 3 potential issues, but I’m sure the MQTT broker is running, I checked with your 2 terminal method and also from terminal to debug in Node-RED works. Also, I have only one ESP running in my network (I nonetheless changed the name here:

YOU MIGHT NEED TO CHANGE THIS LINE, IF YOU’RE HAVING PROBLEMS WITH MQTT MULTIPLE CONNECTIONS
To change the ESP device ID, you will have to give a new name to the ESP8266.
Here’s how it looks:
if (client.connect(“ESP8266Client”)) <
to something else, but still no luck.

So I was thinking the only option is the IP address. But I triple checked and the number match to those I use to log in to the Raspberry pi. Do I also need to specify the channel here? I don’t think so but I’m a bit lost what else to test/check. Also budiman (March 25 2020) had a similar issue, but I think the rc=2 (positive value) means something different? Or should I also try to specify the WLAN channel in the router, as recommended by somebody else in response there?

Could it play a role that the ESP8266 is using 2.4GHz network but the Pi is in 5GHz?

Any help will be greatly appreciated! &#128578;

In node-red, when I double-click on my switch function, I don’t get what the tutorial shows. The node-red version (on a Pi-ZW) is 1.0.6, freshly installed. In particular, I don’t see any way to set On Payload or Off Payload under “Edit switch node”.

I keep getting “Failed to read from DHT sensor!” in my serial monitor in the Arduino IDE. Can anyone tell me what I’m doing wrong? Any help would be appreciated!
Thanks in advance,
Lucas

Hi,
Thank you very much for your reply. I already fixed the issue; I found that the wiring schematics were ‘wrong’ in a way that the sensor should not be connected with Vin and a resistor but directly with the 3v3 pin. Also the sequence that is shown in this tutorial didn’t work for me. I finally made it work following the schematic in this picture: circuits4you.com/wp-content/uploads/2019/01/NodeMCU-DHT11-DHT22.png
Thanks anyways,
Lucas

Hi again.
In your case, if you’re using a DHT sensor that is on a breakout board, it already has the resistor built-in. So, there’s no need to add another one.
Regards,
Sara

Hello Rui. Great project, i always get the most relevant and comprehensive guide from your website.
i followed along and got everything work so far. It’s just that the gauge is not updating. i triple checked the connections and dashboard settings, but only humidity is showing. Any guesses what am i missing?
Thank you

Hi.
In this particular example only the humidity is displayed on the gauge.
The temperature is being displayed on the chart.
Regards,
Sara

what a great pleasure having found this website! I have tried quite some of your tutorials (including some privat changes to fit in my projects) NOT ONE DID FAIL! Big, big compliment.

Just a small question to this tutorial. I have tried to publish the temperature of one room to let it show via oled display show in another room (example: temperature on the balcony, displayed on oled in the kitchen). So; – no problem to publish from ESP (here balcony) via MQTT (raspi, nodered, etc.). Even on my mobile perfectly running. Subscribe to ESP in kitchen: No problem with serial monitor (via the callback void function). But I cannot get the data into a variable stored outside the callback function to put it on the oled display (together with other data available in the void loop). Sorry for such a stupid question (could not find an answer in google).

Again; – Thanks a lot!

Hi.
For example, the messageTemp variable is declared inside the
void callback(String topic, byte* message, unsigned int length) function as follows:
String messageTemp;
So, it is declared as a local variable.
You need to create a global variable that you can use anywhere in your code.
For example, before the setup(), declare a variable, for example:
String myTemp;
Then, in the callback function, you just need to set the value of the myTemp variable(global):
void callback(String topic, byte* message, unsigned int length) <
Serial.print(“Message arrived on topic: “);
Serial.print(topic);
Serial.print(“. Message: “);
String messageTemp;
(…)
myTemp = messageTemp;
>
I hope you understand my explanation.
Regards,
Sara

Hii when i use this code the error is show
redefinition of ‘void reconnect()’

how can i solve this plz .

Hi.
Double-check that you’ve copied the code properly.
That means that the reconnect() function was declared twice, which doesn’t happen in the code.
Regards,
Sara

Hi Sara and Rui,

first of all: thanks for all your excellent work here, I’ve started some month ago with the ESPs and learned a lot from this source.
RecentIy I struggled with an MQTT-project with random wired behavior, and I had no idea whats going on (I did some other projects before without any problems). The key was, that I used the same client-ID name like an existing project, and thanks of the remarks in this code I figured out what the problem was… perfect. I would never had thought in this direction…

So please keep up this excellent work,

Hi Guys,
Loved this tutorial. Except for the minor visual changes to the the newer node-red (v1.0.6) i used, it was just as explained. I did find an issue with the sketch when you want to view temp in Fahrenheit and uncomment this section, an error is thrown due to hif not being declared. Changed hic to hif and all is good.

// Computes temperature values in Celsius
//float hic = dht.computeHeatIndex(t, h, false);
//static char temperatureTemp[7];
//dtostrf(hic, 6, 2, temperatureTemp);

// Uncomment to compute temperature values in Fahrenheit
float hif = dht.computeHeatIndex(f, h);
static char temperatureTemp[7];
dtostrf(hic, 6, 2, temperatureTemp); //THIS SHOULD BE hif, not hic

Thanks for all your much appreciated work
Terry

Hi Terry.
You’re right.
Thanks for pointing that out.
I’ll fix the code ASAP.
Regards,
Sara

Thanks for this tutorial!
I have a problem between the esp8266 client and node-red, node-red is not receiving data from the esp.
I am receiving data from the esp on an android client but not on node-red.
I also tested with MQTT.fx, I get on nodered but not on the android and esp client.

Can you help me please.

hi, Sara, I have a small problem. I only have a bme280 sensor for the temp and humidity I am trying to make the code fit the sensor but I don’t get it to work do you know what I should change to make it work with the bme280.
thx already

Sara,
Can and will you help me
I follow this to get the broker working.
but my node wont give an output to the ui
Perhaps you can add an import a node-red file with this internetpage?
thanks Dick

Excellent introduction and tutorial on this exciting subject. Just I have a question. Will it be possible to deploy outside the normal Wifi network i.e on anywhere on the internet and control and acquire the data? Request your valuable input on this matter.

Hola buen día, quería preguntar ya que me sirvió muchísimo este tutorial, mi director de tesis me pide un Dashboard con node red para que el mismo sea visto dentro de mi red local como si estoy fuera de mi red. Se puede hacer…..digo…si levantó el Dashboard dentro de mi red local de la misma forma puedo ver mi Dashboard desde fuera de mi red local, agradecería si puedes responder a mi inquietud. Saludos desde Argentina.

Hi Sara,
a very nice project. It’s my first project to learn MQTT and Node-Red.
The sketch was compiled without errors and I get the following output from the serial monitor:

Connecting to UE
…..
WiFi connected – ESP IP address: 192.168.178.35
Attempting MQTT connection … connected
Humidity: 41.80% Temperature: 29.10 * C 84.38 * F Heat index: 28.88 * C
Humidity: 41.40% Temperature: 29.10 * C 84.38 * F Heat index: 28.84 * C
Humidity: 41.30% Temperature: 29.10 * C 84.38 * F Heat index: 28.83 * C
Humidity: 41.30% Temperature: 29.20 * C 84.56 * F Heat index: 28.94 * C
Humidity: 41.40% Temperature: 29.10 * C 84.38 * F Heat index: 28.84 * C
Humidity: 41.40% Temperature: 29.10 * C 84.38 * F Heat index: 28.84 * C
Humidity: 42.00% Temperature: 29.10 * C 84.38 * F Heat index: 28.90 * C
Humidity: 41.80% Temperature: 29.10 * C 84.38 * F Heat index: 28.88 * C
Humidity: 41.70% Temperature: 29.00 * C 84.20 * F Heat index: 28.77 * C
Humidity: 41.70% Temperature: 29.00 * C 84.20 * F Heat index: 28.77 * C
Humidity: 41.60% Temperature: 29.10 * C 84.38 * F Heat index: 28.86 * C
Humidity: 41.60% Temperature: 29.10 * C 84.38 * F Heat index: 28.86 * C

Unfortunately, the values ​​are not displayed in the node dashboard. I only get the switch of the lamp, where I can switch between on and off, and the empty temperature and humidity display. But no led-light on by breadboard.
I went through the flows carefully and couldn’t find any fault. There was no debug message.
Unfortunately I cannot attach a screenshot.
Do you have an idea? Or you can email me the flow / json

Many greetings Ulli

Hi.
I’m sorry. But unfortunately, we don’t have the json file for this Node-RED flow.
We have this tutorial that is similar and it has the flow json file:https://randomnerdtutorials.com/esp8266-nodemcu-mqtt-publish-dht11-dht22-arduino/
I hope this helps.
Regards,
Sara

Hi Sara is it possible that you post the Bode-RED Flow file ….json?
Regards Ulli

Hi.
I don’t have the flow for this particular project. So, I recommend following this one instead:
https://randomnerdtutorials.com/esp8266-nodemcu-mqtt-publish-dht11-dht22-arduino/
Regards,
Sara

Hello Sara, I have the problem that the data of the DHT22 is displayed in the serial monitor, but not in the dashboard. Although I have already looked through the individual nodes of the flow several times. Since this is my first MQTT project, I can’t find the bug yet.
Serial Monitor:
Connecting to UE
.
WiFi connected – ESP IP address: 192.168.178.35
Attempting MQTT connection…connected
Humidity: 56.60 % Temperature: 29.80 *C
Humidity: 38.70 % Temperature: 29.90 *C
Humidity: 39.40 % Temperature: 29.70 *C
Humidity: 39.00 % Temperature: 29.70 *C

Many greetings Ulli

Hallo Sara, now it works
Thanks for help

I was able to reproduce your project which allowed me to learn a ton about MQTT and NodeRed. However, I could not determine how to implement a user/password for MQTT on the client side, in PubSubClient. In order to make the code work, I had to disable security in the Mosquitto installation on the RRI. (I had enabled security during the Mosquitto installation).

Is this possible?
Thanks.

Incredibly comprehensive article, great stuff.

This looked to be a great project for my needs, so I dusted off my Rpi 0 w, and proceeded to update the software, which took quite a while (pi 0’s are a bit slow, but it’s what I wanted to use in my project).Node Red was also updated, and worked nothing like what I see here, AAMOF I dont see the tabs refered to. Only the info and debug appear. Since I am totally new to Node Red, I’m lost. Is there an update to this somewhere? Thanks

John, I too ran into this problem when I did this project last year. The Node red interface is different form Rui’s and I believe another update (2.0) is out or coming. I ended up doing a lot of searching for tutorials that were recent, and there weren’t a lot of screenshots of the interface I was using. By googling, I was able to figure out how it worked for using this tutorial. Node Red is awesome and more powerful than I imagined. Here is a video, though integrating with home assistant, shows the interface I was faced with. https://www.youtube.com/watch?v=hBEb_FCLRU8. Also I spent a lot of time hovering over and pushing buttons to see what they did. Good luck and hope you get there as this is a a lot of fun,

Thanks so much Terry I’ll check it out. I’ve loaded a brand new image (buster) with lots of differences. Much of what was loaded with Jessie was not there. I finally got Node Red installed, but getting warnings when trying to install Node Red Dashboard. I think it has to do with the version of node.js (if there is one installed LOL). I am quite the novice on Linux based systems, I came up through DOS thru all windows.

Yes Sara, I did that after fighting with the install process. Many warnings/errors there, especually when doing npm install, but I pushed ahead to find the UI had considerable differences


Источник: randomnerdtutorials.com