Live RF Plotting using the ESP8266 or ESP32 with NRF24L01 Native Support
This post will cover directly interfacing the NRF24L01 module with either the ESP32 or ESP8266 Wemos modules. In earlier posts I had used the Arduino Mini module as a shim. Here is the wiring diagram for the ESP8266 Wemos Module. Here is the Arduino code used to send readings from the NRF24L01 module to a MQTT broker. #include “SPI.h” #include “NRFLite.h” #include <ESP8266WiFi.h> // For ESP8266 //#include <WiFi.h> // For ESP32, uncomment this line and comment out the above line…