Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
mansi
Published © GPL3+

Temperature Monitor and Control

Monitor the sudden change in temperature and send a message on phone. By using app we can control the switch to control temperature change.

IntermediateFull instructions provided6 hours487
Temperature Monitor and Control

Things used in this project

Hardware components

Bolt WiFi Module
Bolt IoT Bolt WiFi Module
×1
LED (generic)
LED (generic)
×2
Temperature Sensor
Temperature Sensor
×1
Buzzer
Buzzer
×1
PHPoC Bread Board
PHPoC Bread Board
×1
USB-A to Mini-USB Cable
USB-A to Mini-USB Cable
×1
Resistor 330 ohm
Resistor 330 ohm
×2

Software apps and online services

Bolt Cloud
Bolt IoT Bolt Cloud
Bolt IoT Android App
Bolt IoT Android App
Snappy Ubuntu Core
Snappy Ubuntu Core

Story

Read more

Schematics

Temp_Monitor_Control_Schematic

Circuit connection for temperature sensor and buzzer

Code

HTML_code_Switch_Control

HTML
This code is run in cloud so that switch can be control at room via IOT
<!DOCTYPE html>
<html>
    <head>
        <title>Bolt IoT Platform</title>
        <script type="text/javascript" src="https://cloud.boltiot.com/static/js/boltCommands.js"></script>
        <script>
        setKey('{{ApiKey}}','{{Name}}');
        </script>
    </head>
    <body>
        <img src="https://www.boltiot.com/hubfs/Bolt%20October2018%20Theme/Images/logo.png" width="150" height="50">
        <body bgcolor="#343961" text="#cdc6c0" ></body>
        <h1>Switch Control</h1>
        <br/> 
        <br/>
        <center>
        <h2> Switch on the Fan </h2>
        <br/>
        <button onclick="digitalWrite(0, 'HIGH');">ON</button>
        <br/>
        <br/>
        <br/>
        <br/>
        <br/>
        <h2> Switch off the Fan </h2>
        <br/>
        <button onclick="digitalWrite(0, 'LOW');">OFF</button>
        </center>
    </body>
</html>

Temp_Monitor_python_Code

Python
This is the code by which sudden temperature change is detected and send a message on android phone.
No preview (download only).

Credits

mansi
1 project • 0 followers
Contact

Comments

Please log in or sign up to comment.