IoT Kits
In StockIoT Smart Home Pro Kit
IOT-HOME-PRO · Stock: 40
☆☆☆☆☆
No reviews yet — be the first
₹79.99
₹109.99
incl. GST
[ESP32] [Arduino]
Everything you need to prototype a connected home: ESP32 DevKit, DHT22, PIR motion, MQ-2 gas, relay module, OLED display, breadboard, jumper wires, and a project guide covering MQTT & Home Assistant integration.
3 clicks: Buy Now → Checkout → Place Order
ESP32 + sensors + relays — complete smart home stack
High-res visual shown left · QA bench-tested before dispatch.
| MCU | ESP32-WROOM-32 |
|---|---|
| Sensors | DHT22, PIR, MQ-2, LDR |
| Actuators | 4-ch Relay, Buzzer |
| Display | 0.96" OLED I2C |
| Connectivity | WiFi + BLE |
| Protocols | MQTT, HTTP, BLE |
| Dimensions | Kit box 220 × 150 mm |
| Weight | 350g |
ESP32
Core MCU
DHT22
GPIO4
PIR
GPIO27
Relay
GPIO26
OLED
I2C
Wiring guide: power rails first (VCC/GND), then bus (I2C/SPI), then interrupt/PWM lines.
#include <WiFi.h>
#include <PubSubClient.h>
#include <DHT.h>
WiFiClient espClient;
PubSubClient client(espClient);
DHT dht(4, DHT22);
void setup() {
Serial.begin(115200);
dht.begin();
WiFi.begin("SSID", "PASS");
client.setServer("mqtt.local", 1883);
}
void loop() {
client.loop();
float t = dht.readTemperature();
client.publish("home/temp", String(t).c_str());
delay(5000);
}
from umqtt.simple import MQTTClient
import dht, machine, time, network
sensor = dht.DHT22(machine.Pin(4))
c = MQTTClient('esp32', 'mqtt.local')
c.connect()
while True:
sensor.measure()
c.publish(b'home/temp', str(sensor.temperature()).encode())
time.sleep(5)
#include <WiFi.h>
#include <PubSubClient.h>
#include <DHT.h>
WiFiClient espClient;
PubSubClient client(espClient);
DHT dht(4, DHT22);
void setup() {
Serial.begin(115200);
dht.begin();
WiFi.begin("SSID", "PASS");
client.setServer("mqtt.local", 1883);
}
void loop() {
client.loop();
float t = dht.readTemperature();
client.publish("home/temp", String(t).c_str());
delay(5000);
}
Technical datasheet for IOT-HOME-PRO.
Community signal
Ratings & Reviews
Real maker feedback for IoT Smart Home Pro Kit.
—
No reviews yet — be the first
No public reviews yet
Share a wiring tip, build note, or bench-test result to help the next maker.