Smart SMS Powered Air Conditioner Using LinkitONE

by ssarthak598 in Circuits > Arduino

1149 Views, 7 Favorites, 0 Comments

Smart SMS Powered Air Conditioner Using LinkitONE

IMG_1062.JPG

Want to make your AC start cooling 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 AC gets on in summer days!

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

What Do You Need?

IMG_1039[1].JPG
IMG_1057.JPG

1 . LinkitONE board

2. AC

3. Breadboard

5. LinkitONE GSM antena

6. Battery pack

7. Relay module

Hacking Into the AC!

IMG_1063.JPG
IMG_1060.JPG
IMG_1058.JPG
IMG_1059.JPG
IMG_1061.JPG

Now let's hack into the AC!

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.

Connecting a Relay

IMG_1066[1].JPG

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!!!

Attaching the LinkitONE

IMG_1067[1].JPG
IMG_1068[1].JPG

Now attach your board!

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.

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 AC. It's as simple as that

CODE:

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

#include<LGSM.h>

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!

Finalizing Everything

IMG_1034[1].JPG
IMG_1031[1].JPG
IMG_1035[1].JPG

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.

Testing It Out!

IMG_1062.JPG
IMG_1055[1].JPG
IMG_1056[1].JPG

Now test it out!

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

Congrats! You've made your own SMS powered AC.