Nikhita Chavva
Published © GPL3+

Temperature Monitoring System

The change in the temperature is monitored, and sends an alert message if it crosses the threshold using the anomaly detection.

IntermediateFull instructions provided4 hours146
Temperature Monitoring System

Things used in this project

Hardware components

Bolt WiFi Module
Bolt IoT Bolt WiFi Module
×1
Temperature Sensor
Temperature Sensor
×1
Breadboard (generic)
Breadboard (generic)
×1
Male/Female Jumper Wires
Male/Female Jumper Wires
×1
Micro-USB to USB Cable (Generic)
Micro-USB to USB Cable (Generic)
×1

Software apps and online services

Bolt Cloud
Bolt IoT Bolt Cloud
Bolt IoT Android App
Bolt IoT Android App
Google mail
Mailgun
Python IDLE

Hand tools and fabrication machines

Refrigerator
Android Phone

Story

Read more

Schematics

Circuit diagram

Code

Code for anomaly detection

Python
#temperature monitoring system using boltiot
import time,json,statistics
from boltiot import Bolt,Email
cons_threshold=[5,15]    #adding the threshold values
mybolt=Bolt('*****','BOLT*****') #bolt(bolt_api key,device id)
mailer=Email('***********','******.mailgun.org','*********@gmail.com','******@gmail.com') #Email('mailgun_api_key','Sandbox_url','from_mail','to mail')
def get_threshold_value(history_data,mul_factor,ran):
    if len(history_data)<ran:
        print("Not enough data to calculate the thresholds.",ran-len(history_data),"more data point(s) required")
        return None
    if len(history_data)>ran:
        del history_data[0:len(history_data)-ran]
    Mn=statistics.mean(history_data)
    sum=0
    for i in history_data:
        sum+=(i-Mn)**2
    sum/=ran
    Zn=mul_factor*(sum**(1/2))
    threshold=[history_data[len(history_data)-1]-Zn,history_data[len(history_data)-1]+Zn]
    return threshold
history_data=[]
while True:
    responce=mybolt.analogRead('A0')
    sensor_value=json.loads(responce)
    temp=float(sensor_value['value'])/10.24
    threshold=get_threshold_value(history_data,6,10)
    print(temp)
    if threshold!=None:
        if temp>threshold[1]:
            print("Someone opened the fridge")
    if temp<cons_threshold[0]:
        responce=mailer.send_email("ALERT","The temperature is very low, the temperature is "+str(temp)+" deg Celsius")
        responce_text=json.loads(responce.text)
    if temp>cons_threshold[1]:
        responce=mailer.send_email("ALERT","The temperature is very high, the temperature is "+str(temp)+" deg Celsius")
        responce_text=json.loads(responce.text)
    history_data.append(temp)
    time.sleep(10)

Polynomial regression code

JavaScript
Used for doing future predictions.
setChartLibrary('google-chart');
setChartType('predictionGraph');
setChartTitle('Temperature in fridge');
setAxisName('Time','Temperature');
setCrosshair(true);
mul(1/10.24);
plotChart('time_stamp','temp');

Credits

Nikhita Chavva
1 project • 1 follower
Contact

Comments

Please log in or sign up to comment.