Pragati Gupta
Published © GPL3+

Fever Detection and Alert System

Afraid of Covid 19 crises?? Say no to people having FEVER in your House

BeginnerFull instructions provided2 hours1,036
Fever Detection and Alert System

Things used in this project

Hardware components

Bolt WiFi Module
Bolt IoT Bolt WiFi Module
×1
LM35 temperature sensor
×1
LED (generic)
LED (generic)
×1
Buzzer
Buzzer
×1
Breadboard (generic)
Breadboard (generic)
×1
Jumper wires (generic)
Jumper wires (generic)
×10

Software apps and online services

Jupyter Notebook
Jupyter Notebook
SMS Messaging API
Twilio SMS Messaging API
Bolt Cloud
Bolt IoT Bolt Cloud
Bolt IoT Android App
Bolt IoT Android App

Story

Read more

Schematics

Circuit Connection

Do the connections as shown below

Code

Code for the Project

Python
Enter your credentials before running the code
                        #Project: Fever Detection and Alert System
#Import the Required Libraries

from boltiot import Sms,Bolt #Libraries required to connect with Bolt Wifi Module
import requests 
import json
import time

API_KEY = "xxxxxxxxxxxxxxxxxxxxx"   # Bolt API Key
DEVICE_ID = "xxxxxxxxxxxxxxxxxxxx" # Bolt Device ID
SID = 'xxxxxxxxxxxxxxxxxxxx' # Twilio Account SID
AUTH_TOKEN = 'xxxxxxxxxxxxxxxxxxxxxx' #Twilio Auth Token
FROM_NUMBER = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxx' # Twilio Trial Number
TO_NUMBER = 'xxxxxxxxxxxxxxxxxxxxxxxxx' #Your own mobile number
threshold = 380                    


mybolt = Bolt(API_KEY,DEVICE_ID)
sms = Sms(SID, AUTH_TOKEN, TO_NUMBER, FROM_NUMBER)

#Function for reading sensor value from Bolt Wifi Module
def get_sensor_value_from_pin(pin): 
    """Returns the sensor value. Returns -999 if request fails"""
    try:
        response = mybolt.analogRead(pin)
        data = json.loads(response)
        if data["success"] != 1:
            print("Request not successfull")
            print("This is the response->", data)
            return -999
        sensor_value = int(data["value"])
        return sensor_value
    except Exception as e:
        print("Something went wrong when returning the sensor value")
        print(e)
        return -999
    

while True:
    print("*******************************")
    print("Loop Starting")
    mybolt.digitalWrite("2","HIGH") # Both buzzer and led will be 'ON' which  
    mybolt.digitalWrite("1","HIGH") # indicate that the loop has started and you
    time.sleep(0.5)                 # need to place the temperature sensor 
    mybolt.digitalWrite("2","LOW")  # between your arms
    mybolt.digitalWrite("1","LOW")
    print("Reading time 15 secs") # Read the temperature of your body for 15 sec
    time.sleep(15)
    sensor_value = get_sensor_value_from_pin("A0")
    print(sensor_value)
    
    if(sensor_value > threshold): # true, means the Person has fever
        print("Making request to Twilio to send a SMS")
        response = sms.send_sms("Alert! The Person has fever. Body temperure is" + "{:.2f}".format(sensor_value*100/1024) + "°C. Don't let him enter the House")#sending message
        print("Response received from Twilio is: " + str(sensor_value))
        mybolt.digitalWrite("2","HIGH") 
        time.sleep(4)                    # Buzzer will be 'ON' for 4 seconds
        mybolt.digitalWrite("2","LOW")
        
    # true, means the person is safe
    else: 
        print("Making request to Twilio to send a SMS")
        response = sms.send_sms("Don't worry, the Person is Safe. Body temperature is "+ "{:.2f}".format(sensor_value*100/1024) + "°C. You may let him enter the House")#sending message
        print("Response received from Twilio is: " + str(sensor_value))
        mybolt.digitalWrite("1","HIGH")
        time.sleep(4)                   # LED will GLOW for 4 seconds
        mybolt.digitalWrite("1","LOW")
        
        for _ in range(5): #buzzer will 'ON' and 'OFF' 5 times which indicate 
            mybolt.digitalWrite("2","HIGH") #that the loop is over
            time.sleep(0.5)
            mybolt.digitalWrite("2","LOW")
    print("next cycle will start in 5 secs") # next cycle to test next person
    print("*******************************")
    time.sleep(5)

Credits

Pragati Gupta
1 project • 3 followers
Electronic and Communication Engineer student from University of Lucknow
Contact

Comments

Please log in or sign up to comment.