25+ sensor types
Temperature
Humidity
Light
Air Flow
Voltage
Air Quality
Water
Vibration
Login to access your IoT dashboard
4 simple steps
Set up your IoT channel with custom fields
Use Arduino, ESP32, or any IoT board
POST sensor readings via HTTP API
View real-time data and analytics
No limits • No credit card
Industry-proven IoT solutions across sectors
Step-by-step integration guide
#include <WiFi.h>
#include <HTTPClient.h>
const char* ssid = "YOUR_WIFI_SSID";
const char* password = "YOUR_WIFI_PASSWORD";
const char* serverName = "https://iot.makeacademy.in/api/data";
const char* apiKey = "YOUR_API_KEY";
void setup() {
Serial.begin(115200);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(1000);
Serial.println("Connecting to WiFi...");
}
Serial.println("Connected!");
}
void loop() {
if(WiFi.status() == WL_CONNECTED) {
HTTPClient http;
// Read sensor values
float temperature = 25.5;
float humidity = 60.2;
// Prepare POST data
String postData = "api_key=" + String(apiKey);
postData += "&field1=" + String(temperature);
postData += "&field2=" + String(humidity);
http.begin(serverName);
http.addHeader("Content-Type", "application/x-www-form-urlencoded");
int httpResponseCode = http.POST(postData);
Serial.println("Response: " + String(httpResponseCode));
http.end();
}
delay(15000); // Send every 15 seconds
}
Madiwala, Venkatapura, HSR Layout 5th Sector, Bengaluru, Karnataka 560068
Door No: 5/293-1, Thiruvalluvar Nagar, 2nd Cross, Krishnagiri - 635001
+91 9488917854
+91 8098 783 144
makelabsmail@gmail.com