Home / Tag Archives: iot

Tag Archives: iot

ESP32 WiFi Manager | Dynamic SSID and Password

ESP32 WiFi Manager

If you've been following my tutorials on ESP32, then you'll notice that the WiFi SSID and password are always hardcoded. This tutorial will show you a way to change the WiFi credentials without needing to edit and re-upload your sketch. Our aim is to create a simple ESP32 WiFi manager. …

Read More »

NodeMCU WiFi Jammer

NodeMCUv1.0 Pinout

There is, in fact, a way to create a NodeMCU WiFi jammer although technically, this is a deauther and not really a jammer. A jammer sends out noise on the WiFi frequency spectrum (2.4 GHz) while the program in this tutorial sends packets that disrupts the normal functions of your …

Read More »

NodeMCU Pinout Reference

NodeMCU Pinout

The NodeMCU is an Arduino-compatible board that features the ESP8266 at its core. It became popular because it is a WiFi-ready microcontroller by itself - no need for an Arduino. The aim of this article is to show all NodeMCU pinout and boards that are currently available.

Read More »

Web Server with NodeMCU WebSocket

NodeMCU WiFi Access Point

Uploading sensor data to web servers is one of the core ideas for Internet of Things (IoT). Such data are often small-sized and are continuously updated over time. And while HTTP performs satisfactorily for simple applications, like how I showed in my NodeMCU web server tutorial, there is a need …

Read More »

NodeMCU MQTT Tutorial

NodeMCU Webserver

So far, we've been using HTTP in our NodeMCU web servers and while it works, the protocol is not really the best way for sending and receiving small-sized data for IoT applications. In this tutorial, I will introduce you to NodeMCU MQTT.

Read More »