Receiving Sensor Data from Consentium IoT Cloud and Controlling LED
This documentation provides the steps and code required to receive data from the Consentium IoT cloud using the ConsentiumThings library. The code checks whether the first data pair (assumed to be temperature data) exceeds a threshold of 30°C and turns on an LED if the condition is met. This is intended for ESP8266, ESP32, or Raspberry Pi Pico W compatible boards.
Dependencies
The code utilizes the ConsentiumThings.h
library to handle communication with the Consentium IoT platform. Additionally, it uses GPIO pins to control an LED.
Features
Connect to a WiFi network for cloud communication.
Receive sensor data from the Consentium IoT platform.
Parse and display the received data on the serial monitor.
Control an LED connected to a specific GPIO pin based on sensor data (temperature in this case).
Hardware Setup
LED: Connect the anode (positive leg) of an LED to GPIO 16 on an ESP8266, GPIO 23 on an ESP32, or GPIO 25 on a Raspberry Pi Pico W.
Resistor: Use a 220Ω resistor in series with the LED to limit current.
GPIO Pin Mapping for LED:
ESP8266: GPIO 16
ESP32: GPIO 23
Raspberry Pi Pico W: GPIO 25
Constants
WiFi Credentials: Set your WiFi SSID and password.
Receive Interval: The loop runs every 7 seconds (7000 ms) to retrieve data from the server.
API Keys: Required to authenticate the connection to the Consentium IoT cloud.
Code Overview
1. Initialization
A ConsentiumThings
the object is created to manage communication with the Consentium IoT platform.
WiFi credentials and API keys are declared:
An LED is connected to the designated GPIO pin (D15 in the example) to indicate whether the temperature exceeds the threshold.
2. Setup
The setup()
function establishes a WiFi connection, configures the IoT board to receive data, and initializes the LED pin as an output.
3. Main Loop
The loop()
function receives sensor data from the cloud, displays it on the serial monitor, and checks if the 0th data pair (assumed to be temperature) exceeds 30°C. If so, it turns on the LED connected to D15; otherwise, the LED remains off.
a. Receiving Data
The sensor data is fetched from the Consentium IoT platform using the receiveData()
function.
b. Parsing Data
The received data is stored in pairs (value and info), which are iterated through and printed on the serial monitor.
c. Testing Temperature and Controlling LED
If the temperature (0th data pair) exceeds 30°C, the LED connected to GPIO D15 is turned on.
4. Loop Control
The loop repeats every 7000 milliseconds (7 seconds), allowing for periodic data retrieval.
Full Code
Summary
WiFi connection is initialized to receive sensor data.
LED control is based on the temperature threshold.
The system loops every 7 seconds, receiving and processing data.
Last updated
Was this helpful?