0% found this document useful (0 votes)
21 views

ES and IOT Lab EXP 6 - 8 With Title and Date

The document describes an experiment to interface a DHT11 temperature and humidity sensor and an LDR light sensor with a Raspberry Pi 4 and upload the sensor data to Thingspeak cloud platform. The hardware connection diagram shows the DHT11 connected to GPIO pins on the Raspberry Pi to read temperature and humidity. The LDR is also connected to a GPIO pin. The software code uses Python libraries to read data from the sensors and send it to Thingspeak using HTTP requests at set intervals. The aim is successfully achieved as sensor data is uploaded to the cloud platform.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
21 views

ES and IOT Lab EXP 6 - 8 With Title and Date

The document describes an experiment to interface a DHT11 temperature and humidity sensor and an LDR light sensor with a Raspberry Pi 4 and upload the sensor data to Thingspeak cloud platform. The hardware connection diagram shows the DHT11 connected to GPIO pins on the Raspberry Pi to read temperature and humidity. The LDR is also connected to a GPIO pin. The software code uses Python libraries to read data from the sensors and send it to Thingspeak using HTTP requests at set intervals. The aim is successfully achieved as sensor data is uploaded to the cloud platform.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 10

EXP 6

19/09/2023
Introduction to Raspberry PI platform and python programming
and Interfacing LM35 Temperature sensors with Raspberry PI
Aim: To Interface LED with Raspberry pi RP2040 and LM35 (or) LDR interface with
Raspberry pi RP2040.

Apparatus:

S. No. Apparatus Range/Rating Quantity


1 Universal Board 1
2 RP2040 1
6 Micro B Type cable 1
7 Power jack 1
8 USB Cable 1
9 Jumper Wires Required

Hardware Procedure:
 Connect LED to GPIO 25
 Connect LM35 or LDR to RP2040 of A0.
 Read the sensor value from the Arduino pin A0.
 Power jack is connected to the Arduino.
 USB connector is connected to RP2040 to monitor.

Software Procedure:
o Click on Thonny
o Click on file
o Click on New
o Write a Program as per circuit Pin connections
o Click on Save
o Click on Verify
o Click on Upload the code into RP2040by using USB cable.
BLOCK DIAGRAM LED INTERFACING WITH RP2040

Program:

import time
from machine import Pin
led=Pin(25,Pin.OUT) #create LED object from pin13,Set Pin13 to output

while True:
led.value(1) #Set led turn on
time.sleep(1)
led.value(0) #Set led turn off
time.sleep(1) #delay(1 sec)
BLOCK DIAGRAM LM35 INTERFACING WITH RP2040

Program:

import machine
import utime

sensor_temp = machine.ADC(0)
conversion_factor = 3.3 / (65535)

while True:
reading = sensor_temp.read_u16() * conversion_factor
temperature = 27 - (reading - 0.706)/0.001721
print("Temperature: {}".format(temperature))
utime.sleep(2)

RESULT: LED is successfully controlled by RP2040 and Analog LM35 Value (Sensors
data) are successfully measured by RP2040.
EXP 7
19/09/2023 Setup a cloud platform and upload the Temperature and Humidity using DHT11
Sensor and LDR Sensor to Thingspeak cloud and Firebase Cloud

Aim: To Interface DHT11 and LDR interface with NodeMCU and upload data to Thingspeak cloud and
Firebase Console.

Apparatus:

S. No. Apparatus Range/Rating Quantity


1 Universal Board 1
2 NodeMCU 1
6 Micro B Type cable 1
7 Power jack 1
8 USB Cable 1
9 Jumper Wires Required
10 DHT11 1
11 LDR 1

Hardware Procedure:
 The DHT 11 has 4 Pins. Pin 1 is VCC, Pins 2 is Data, Pin 3 is NOT USED, Pin 4 is
Ground.
 Connect DHT 11 Pin 1 to 3.3v
 Connect DHT 11 Pin 2 to Raspberry PI Pin 16/GPIO 23 and connect a 4.7 or 10k resistor
from DHT 11 Pin 2 to DHT Pin 1
 Connect DHT 11 Pin 4 to Ground
 The photo resistor has 2 pins
 Connect one pin to 3.3.v
 Connect the Other Pin to Raspberry Pi Pin 18/GPIO 24
 Connect a 1uF Capacitor to the same pin that the photo resistor is connected to on
GPIO24. The Ground (White Stripe) side of the capacitor should go to Ground.

Software Procedure:
o Click on Thonny
o Click on file
o Click on New
o Write a Program as per circuit Pin connections
o Click on Save
o Click on Verify
o Click on Upload the code into RP 4 by using USB cable.
o Create Channel in Thingspeak.com
o And Monitor the data uploaded in cloud
BLOCK DIAGRAM DHT11 INTERFACING WITH NodeMCU

PROGRAM TO UPLOAD TEMPERATURE AND HUMIDITY TO FIREBASE CONSOLE:

#include <DHT.h>
#include <Wire.h>
#include <ESP8266WiFi.h>
#include <FirebaseArduino.h>
#define FIREBASE_HOST "esiotlabpro-default-rtdb.firebaseio.com"
#define FIREBASE_AUTH "F6sgxiyuFaFkVWY9imfB1IhVO2m2HYCQq9FX49xQ"
#define WIFI_SSID "GJC"
#define WIFI_PASSWORD "iforgott"
#define DHTPIN 5
#define DHTTYPE DHT11
DHT dht(DHTPIN, DHTTYPE);
String n;
String m;
String o;
String p;
void setup()
{
Wire.begin(2,0);
delay(5000);
dht.begin();
pinMode(D2,INPUT);
pinMode(D3,INPUT);
Serial.begin(115200);
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
Serial.print("connecting");
while (WiFi.status() != WL_CONNECTED)
{
Serial.print(".");
delay(500);
}
Serial.println();
Serial.print("connected: ");
Serial.println(WiFi.localIP());
Firebase.begin(FIREBASE_HOST, FIREBASE_AUTH);
delay(2000);
}

void sensorUpdate()
{
float t = dht.readTemperature();
Firebase.set("TEMP",t);
Serial.println(t);
float h = dht.readHumidity();
Firebase.set("HUMD",h);
Serial.println(h);
if ( isnan(t))
{
Serial.println(F("Failed to read from DHT sensor!"));
return;
}
}

void loop()
{
sensorUpdate();
if ((digitalRead(D2)==HIGH))
{
Firebase.set("LDR1","OFF");
}
else
{
Firebase.set("LDR1","ON");
}
}
BLOCK DIAGRAM LDR INTERFACING WITH NodeMCU

PROGRAM TO UPLOAD LDR DATA TO THINGSPEAK.COM

#include <ThingSpeak.h>
#include <ESP8266WiFi.h>;
#include <WiFiClient.h>;
const char* ssid = "GJC";
const char* password = "iforgott";
WiFiClient client;
unsigned long myChannelNumber = 1013594;
const char * myWriteAPIKey = "UNDAT6YLR7NAMHTB";
void setup()
{
Serial.begin(115200);
delay(10);
WiFi.begin(ssid, password);
ThingSpeak.begin(client);
}
void loop()
{
int Value=analogRead(A0);
Serial.println(Value);
delay(100);
ThingSpeak.writeField(myChannelNumber,1,Value, myWriteAPIKey);
delay(100);
}

RESULT: Sensor Data are successfully upload to Firebase and Thingspeak cloud
EXP 8

09/10/2023
Setup a cloud platform and upload the Temperature and Humidity using DHT11
Sensor and LDR Sensor to Thingspeak cloud using Raspberryi pi 4 controller

Aim: To Interface DHT11 with Raspberry pi and LDR interface with Raspberry pi 4 and
upload data to Thingspeak cloud.

Apparatus:

S. No. Apparatus Range/Rating Quantity


1 Universal Board 1
2 Raspberry pi 4 1
6 Micro B Type cable 1
7 Power jack 1
8 USB Cable 1
9 Jumper Wires Required
10 DHT11 1
11 LDR 1

Hardware Procedure:
 The DHT 11 has 4 Pins. Pin 1 is VCC, Pins 2 is Data, Pin 3 is NOT USED, Pin 4 is
Ground.
 Connect DHT 11 Pin 1 to 3.3v
 Connect DHT 11 Pin 2 to Raspberry PI Pin 16/GPIO 23 and connect a 4.7 or 10k resistor
from DHT 11 Pin 2 to DHT Pin 1
 Connect DHT 11 Pin 4 to Ground
 The photo resistor has 2 pins
 Connect one pin to 3.3.v
 Connect the Other Pin to Raspberry Pi Pin 18/GPIO 24
 Connect a 1uF Capacitor to the same pin that the photo resistor is connected to on
GPIO24. The Ground (White Stripe) side of the capacitor should go to Ground.

Software Procedure:
o Click on Thonny
o Click on file
o Click on New
o Write a Program as per circuit Pin connections
o Click on Save
o Click on Verify
o Click on Upload the code into RP 4 by using USB cable.
o Create Channel in Thingspeak.com
o And Monitor the data uploaded in cloud

BLOCK DIAGRAM DHT11 and LDR INTERFACING WITH Raspberry pi - 4


Program Code:

import sys
import RPi.GPIO as GPIO
import os
from time import sleep
import Adafruit_DHT
import urllib2

DEBUG = 1
# Setup the pins we are connect to
RCpin = 24
DHTpin = 23

#Setup our API and delay


myAPI = "***Insert Your API CODE HERE***"
myDelay = 15 #how many seconds between posting data

GPIO.setmode(GPIO.BCM)
GPIO.setup(RCpin, GPIO.IN, pull_up_down=GPIO.PUD_DOWN)

def getSensorData():
RHW, TW = Adafruit_DHT.read_retry(Adafruit_DHT.DHT11, DHTpin)

#Convert from Celius to Farenheit


TWF = 9/5*TW+32

# return dict
return (str(RHW), str(TW),str(TWF))

def RCtime(RCpin):
LT = 0

if (GPIO.input(RCpin) == True):
LT += 1
return (str(LT))

# main() function
def main():

print 'starting...'

baseURL """

RESULT: DHT11 Sensor Data is successfully uploaded to Thingspeak cloud .

You might also like