Hackster is hosting Impact Spotlights: Industrial Automation. Watch the stream live on Thursday!Hackster is hosting Impact Spotlights: Industrial Automation. Stream on Thursday!
Saiprakash Reddy
Published

Smart Home Automation

Controlling multiple home appliances using BOLT IOT

BeginnerFull instructions provided375
Smart Home Automation

Things used in this project

Hardware components

Bolt WiFi Module
Bolt IoT Bolt WiFi Module
×1
Jumper wires (generic)
Jumper wires (generic)
×1
Breadboard (generic)
Breadboard (generic)
×1
LED Light Bulb, Frosted GLS
LED Light Bulb, Frosted GLS
×1
Grove - 2-Channel SPDT Relay
Seeed Studio Grove - 2-Channel SPDT Relay
×1

Software apps and online services

Bolt IoT Android App
Bolt IoT Android App

Hand tools and fabrication machines

Multitool, Screwdriver
Multitool, Screwdriver
Plier, Cutting
Plier, Cutting

Story

Read more

Code

code for home automation without google assistant integration

HTML
<!DOCTYPE html>
<html>
    <head>
        <title>MY HOME</title>
        <script type="text/javascript" src="https://cloud.boltiot.com/static/js/boltCommands.js"></script>
        <script>
        setKey('{{ApiKey}}','{{Name}}');
        </script>
    </head>
    <body>
        <h1>Controls At Your Fingertips</h1>
        <div style="background-image: url('https://cdn.slashgear.com/wp-content/uploads/2018/03/smart-home.jpg');">
    <h1>Hall Light</h1>
        <div style="height: 50px;"> </div>
        <a href="https://cloud.boltiot.com/remote/b00ed272-5eff-4155-a448-5a7967eeeed1/digitalWrite?pin=0&state=HIGH&deviceName=BOLT4627901" target ="_blank">ON</a>
        <a href="https://cloud.boltiot.com/remote/b00ed272-5eff-4155-a448-5a7967eeeed1/digitalWrite?pin=0&state=LOW&deviceName=BOLT4627901" target ="_blank">OFF</a>
    <h1>Table Lamp</h1>
       <div style="height: 50px;"> </div>
       <a href="https://cloud.boltiot.com/remote/b00ed272-5eff-4155-a448-5a7967eeeed1/digitalWrite?pin=1&state=HIGH&deviceName=BOLT4627901" target ="_blank">ON</a>
       <a href="https://cloud.boltiot.com/remote/b00ed272-5eff-4155-a448-5a7967eeeed1/digitalWrite?pin=1&state=LOW&deviceName=BOLT4627901" target ="_blank">OFF</a>
    >Thanks To BOLT IOT</div>
</body>
</html>

code for home automation with google assistant integration

JavaScript
https://cloud.boltiot.com/remote/b00ed272-5eff-4155-a448-5a7967eeeed1/digitalWrite?pin=0&state=HIGH&deviceName=BOLT4627901
https://cloud.boltiot.com/remote/b00ed272-5eff-4155-a448-5a7967eeeed1/digitalWrite?pin=0&state=LOW&deviceName=BOLT4627901
https://cloud.boltiot.com/remote/b00ed272-5eff-4155-a448-5a7967eeeed1/digitalWrite?pin=1&state=HIGH&deviceName=BOLT4627901
https://cloud.boltiot.com/remote/b00ed272-5eff-4155-a448-5a7967eeeed1/digitalWrite?pin=1&state=LOW&deviceName=BOLT4627901

Credits

Saiprakash Reddy
1 project • 0 followers
Contact

Comments

Please log in or sign up to comment.