Introduction: Smart SMS Powered Water Heater Using LinkitONE

About: I build products which solve real world problems.

Want to make your water heater start heating of water on SMS? Imagine you are out, and you are coming back home. Then won't you like if you just sms a string and your water heater gets on !

Here i'll show you how you can build a simple SMS powered water heater using your LinkitONE board!

Step 1: What Do You Need?

1 . LinkitONE board

2. Water heater

3. Breadboard

5. LinkitONE GSM antena

6. Battery pack

7. Relay module

Step 2: Hacking Into the Water Heater!

Now let's hack into the water heater!

We'll need to find places where we can connect a relay. So keep searching for for places where you can attach a simple relay. It could be your plug socket, or a wire joint. Once you find that, move to the next step.

Step 3: Attaching a Relay

Now attach a relay to the system. Just take out the power plug, fix the relay into the breadboard, and tape up everything.

Be careful as you are dealing with high voltage!!!

Step 4: Attaching the Board

Now attach your LinkitONE!

Carefully attach it to the relay and then wire it up. Once done, check the connections twice because there should be no chance of short circuit.

Step 5: Writing Some Code

Now we'll write some code.

The code is really simple here! We're waiting to receive an SMS, once we get an SMS, we read it, if the string is "on" then we turn on the water heater. It's as simple as that

CODE:

-----------------------

#include <LGSM.>

void setup()

{ pinMode(13,OUTPUT);

digitalWrite(13,LOW);

boolean notConnected = true;

while(!LSMS.ready())

delay(1000);

}

void loop() {

String msg;

while(true)

{

msg+=LSMS.read(); //reading sms

}

if(msg.equalsIgnoreCase("ON"))

digitalWrite(13,HIGH);

else if(msg.equalsIgnoreCase("OFF"))

digitalWrite(13,LOW);
}

-----------------------

Now burn the code and move to the next step!

Step 6: Finalizing Everything

Finalize everything by connecting your GSM/SMS antenna and tightening it up. Carefully do it as all the parts are really brittle and can break easily.

Step 7: Testing It Out!

Now test it out!

Try sending a simple SMS and see the magic! :D

Congrats! You've made your own SMS powered water heater.

Tech Contest

Participated in the
Tech Contest