Welcome to Kerala Project Center.
Image: AX3-electronics-enclosure-CC3.0.png by Open Movement -- the GitHub for the open source hardware ... via Wikimedia Commons, CC BY 3.0
A locally-stored data log (like an SD card logger) is only accessible by physically retrieving the card, which is inconvenient for long-running or remote monitoring setups.
This project instead uploads environmental sensor readings — temperature and humidity — directly to a cloud IoT platform (ThingSpeak) over Wi-Fi, so the data is viewable and analyzable remotely and in real time, without ever needing to visit the device.
// Simplified ThingSpeak data logger - ESP8266 #include#include #define DHTPIN 4 DHT dht(DHTPIN, DHT11); String apiKey = "YOUR_THINGSPEAK_WRITE_KEY"; void setup() { Serial.begin(9600); dht.begin(); WiFi.begin("SSID", "PASSWORD"); } void loop() { float temp = dht.readTemperature(); float hum = dht.readHumidity(); WiFiClient client; if (client.connect("api.thingspeak.com", 80)) { String url = "/update?api_key=" + apiKey + "&field1=" + String(temp) + "&field2=" + String(hum); client.print(String("GET ") + url + " HTTP/1.1\r\nHost: api.thingspeak.com\r\n\r\n"); } delay(60000); // ThingSpeak free tier: 1 update per 15s minimum, 60s is safe }
Monday - Saturday: 9:00 AM - 5:00 PM
Sunday: Not Working
2nd Floor, Comptron Arcade, Kallattumukku,
Thiruvananthapuram, Kerala 695012
+91 9633118080