Introduction: Android Controlled Lights and Power, PfodDevice for Arduino
Update: See Andriod/Arduino for Beginners - Design Custom Andriod menus to switch Arduino outputs on and off. Absolutely No Programming Required for an alternative that does not require any programming at all.
==================================================================
Control your Lights and Power from your AndriodTM mobile using Arduino.
NO Android Programming required. No Soldering required.
Power wiring required.
See www.pfod.com.au for more Android controlled example projects
Note: this instructable has been updated to replace the discontinued relay shield with Relay shield V2.0 .
Safety Warning
This project will be wired into the 110V-240V main wiring to switch devices on and off from your Android mobile. 110V-240V Mains is lethal and after you have put this project together, the wiring to the mains power should only be done by a qualified electrician.
Introduction
You can give each relay your own personal name by editing the Arduino code as shown below. No Android programming is required.
An electrician should mount the project in a suitable insulated box and wire the four relays across the switches of the lights and/or power points you want to control.
This project is in three parts.
i)The basic control of 4 switches, called switch 1, switch 2, switch 3 and switch 4. This is what you get from the Quick Start.
ii) Customizing the names of your switches to give them meaningful names.
iii) Making one of the switches a Garage Door opener and the other three the Outside Light, Garage Light and Hall Light (shown above) or what ever name your want.
No Android programming is required to make and any of these three versions. Simple changes to the Arduino code completely controls what options are presented on the user's mobile.
By adding a bluetooth module and a small amount of code to make your Arduino device a pfodDevice, you can control your Arduino project from your Android mobile, in this case the Arduino turns relays on or off and pulses a relay which is in parallel with the garage door manual push button to open and close it.
pfodDevice's are controlled by a pfodApp. Imagine HTML re-designed for micros with short simple messages each less than 255 bytes to describe the pages. The pfodApp is the micro-browser and the pfodDevice is the micro-server. When the pfodApp running on your Andriod mobile connects, via bluetooth, to your Arduino, the pfodApp sends the request {.} which asks for the pfodDevice's main menu. The pfodDevice return a short messsage (max 255 bytes) which the pfodApp renders to give the user choices that control the pfodDevice. When your user selects a button or menu item, the pfodApp sends the associated command back to your Arduino to execute that function. Commands are typically a single character enclosed by { }. Your Arduino code extracts the command character from this message, using the simple parser below, and executes the associated function.
That's all there is to it. No Android programming is required and the only additional programming you need in your Arduino is the small command parser. All the text and prompts displayed on the Android mobile are completely controlled by the code in the Arduino. The same Andriod pfodApp can control any Arduino or other micro-controller which has been coded as a pfodDevice. If you want to test out how the pfod micro-pages will look on pfodApp, then set up a bluetooth serial connection to your pc as described here and type the micro-pages into the terminal window and see how pfodApp displays them. This also lets you see what messages the pfodApp will return for various user inputs.
As well as navigation buttons and multiple levels of menus, which the parser below handles, the pfod Specification also supports user input such as numbers, text and multi and single selection lists. A slightly larger parser is required to parse user input, see Remote Controlled LCD Display.
The pfod Specification has been designed to keep the micro-controller code (the Arduino code) simple. The micro-controller does not and should not remember the user's navigation history, the Android pfodApp does all that. The micro-controller should simply execute the function associated with the command it is sent and return a result message (often just {} ). See the pfod Specification for all the details and examples.
The Step 1 is the Quick Start which will give you 4 Android controlled switches.
Step 1: Android Controlled Lights and Power - QuickStart
1) Android Controlled Lights and Power – Quick Start
This quick start will give you control of 4 switches from your Android mobile.
The switches are named Switch 1, Switch 2, Switch 3 and Switch 4 and correspond to the Relay board terminal blocks 1,2,3 and 4.
The Android pfodApp shows the current state of each switch, ON or OFF. (The next step in this tutorial shows you how to set your own names for the switches.)
Here is the parts list of what you need and where I purchased my parts, it also contains alternative US sources for parts I purchased in Australia.
Quick Start
1) Install the Arduino IDE from http://arduino.cc/en/Guide/HomePage
2) Open a new File and copy this code to the IDE window, plug in the Arduino Uno via the usb cable and program it. Then un-plug the USB cable.
3) Set the switches on the Bluetooth board. Set the 3V/5V switch to 5V and set the To Board/To FT232 switch to the To Board position.
4) Plug the three boards together Arduino, Bluetooth, Relay board. Make sure the pins all line up correctly..
5) Plug the USB Wall Charger into the Arduino board via the USB cable, so that it will power all three boards.
6) Download the pfodApp to your Android mobile.
7) Pair your mobile with the Bluetooth shield and setup a pfod connection called Lights and Power, as described here.
8) Start pfodApp and click the Switch 1 to 4 buttons to turn the relays on and off. Check between COM and NC terminals for terminals 1 to 4 with a multi-meter on Ohms.
9) Have an electrician install in a mains rated box and wire the relays to the lights/power points you want to control. If you want to customize the names of the switches proceed to the next step before installing.
10) Finished.
The next step will show you how to edit the Arduino code to give the switches your own names.
Step 2: Android Controlled Lights and Power - Name the Switches
2) Customizing the Switch Names
The quick start build just used generic names of Switch 1 to Switch 4. However it is easy to give the switches your own unique names.
Open the code in the Arduino IDE and edit the Switch Name text to whatever you want. For example here I have named Switch 2,3 and 4 as “Front Light”, “Garage Light” and “Hall Light” and saved the file as FrontLights.
Switch 1 is not used in this example so to prevent it from being displayed by the Android mobile pfodApp, I commented out the code that adds that menu item to the message sent to the mobile.
The completed FrontLights code is here. Then when you connect your Android mobile pfodApp, it displays the screen show in this step.
The next step will add a Garage Door opener to the project
Step 3: Android Controlled Lights and Power -- Garage Door Opener
Finally here is the code that combines a garage door opener with the control of the front lights. It combines the Android controlled Garage Door opener, which uses relay 1, with the Front Lights code from part 2).
That is the final example code. (Note: the code was updated 21st March 2013 to improve timer reliablity, see How to write Timings and Delays in Arduino for the details)
pfodApp Debug Screen (not normally seen by users)
The other 3 screen shots show the pfodApp debug screen. The user does not normally see this screen. It is accessed from the mobile's menu button. This pfodApp debug screen shows all the communication between the pfodApp and pfodDevice. Messages with < are send by the pfodApp, messages with > are received by the pfodApp from the pfodDevice.
Next I will discuss how the Android pfodApp displays the relay states and controls the relays. All the code examples above are complete in themselves, no libraries are needed. However there are libraries available for the pfodDevice command parser if you want to use them. Examples of using these libraries are given in Garage Door Remote and in Remote Controlled LCD/LED Display. The Arduino pfod libraries are available here.
Coding the Arduino to be a pfodDevice.
The pfodDevice Command Parser
In order to communicate with the pfodApp on your Android mobile, the Arduino needs to be coded as a pfodDevice. The pfod Specification details what functionality must be supported in order to be a pfodDevice. As you would expect the requirements for the pfodDevice are minimal
The pfodDevice is required to:-
1. Respond to all messages, even unrecognised ones, with a reply message. This reply message can be the Empty message, {}
2. Respond to the GetMainMenu request, {.} , with a main menu or navigation input of top level functionality or, less commonly, with one of other messages:- SingleSelectionList, MultiSelectionList, UpdateMenu StreamingRawData, StringInput, NumericInput or the Empty message {}
3. Ignore messages whose length exceeds 255 bytes, including the start and end { } bytes.
4. If the connection is half-duplex then the messages from the pfodApp to the pfodDevice take precedence over, and can interrupt, streaming raw data coming from the pfodDevice.
As an example we will look at the pfodDevice code for the combined garage door opener and lights control.
First the pfodDevice needs to respond to the {.} message that the pfodApp on your Andriod mobile sends when it connects. This requests the pfodDevice's main menu. In this case we want to display 4 buttons (menu items), with the names of the switches and their current state, On or Off.
Each of these buttons has a unique command associated with it which is not displayed to the user. When the user selectes that menu item, the associated command is send back to the pfodDevice (Arduino Uno) to be executed. In this case the commands '1', '2', '3' and '4' are used for the each of the 4 relay. So a typical main menu message would look like the second screen shown
This is a screen shot from the debug screen of the pfodApp. The pfodApp debug screen is accessed from the mobiles menu button. When the pfodApp connected to the Arduino pfodDevice, the pfodApp send the {.} message to request the pfodDevice's main menu. The pfodDevice parser parses the Cmd: . and the Adruino code prints out the result. The pfodApp on the Android mobile ignores this text since it is not contained within pfod message start and end chars, { } . The pfodDevice then returnes its main menu
{.Press to switch on/off|1~GarageDoor\nOpen/Close|2~Front Light\nis OFF|3~Garage Light\nis OFF|4~Hall Light\nisOff}
where \n starts a new line. The {. indicates that this message should be displayed as a list of menu items, buttons. The next 4 sections between | | define each menu item. Each menu item is made up of the command ~ display text. See the pfodSpecification for a detailed description of this menu message. First part is the command to be sent back when this menu item is selected and then the text to display. So for example 2~Front Light\nis OFF sets 2 as the command for this menu button and set the text as
Front Light
is Off
When the user selects this menu item, the pfodApp send the associated command 2, in the message {2}, to the pfodDevice. The pfodDevice command parser parsers the command and activates the relay and sends back an updated menu to display to the user, showing that the Front Light is now ON.
When the Garage Door Open/Close button is pressed the pfodApp sends the msg {1} to the pfodDevice, which parse the message and pulses the relay connected to the garage door push button to open/close the door.
Notice in this case the Arduino code prints when it starts and ends the pulsing of the relay. Again the pfodApp ignores this extra text as it is not contained within the pfod message start and end characters { } . See Android controlled Garage Door opener for a more details on the Garage Door pulse code.
16 Comments
8 years ago on Introduction
Relay Shield V2 has been discontinued, user Relay Shield V3 instead. Or use another relay board, see How to Add Relays to Arduino
Also you can now replace the BT shield with a cheaper WiFi shield.
See Cheap/Simple Wifi Shield and ESP8266-01 Wifi Shield
8 years ago on Introduction
The code for the pulsing the garage door push button was broken between 5th Jan 2015 and 2nd Feb 2015. Fixed now.
8 years ago on Introduction
I have problems getting contact between my computer and my android. My computer has a Windows 8 driver, and the instructions is on windows 7, does this matter?
Reply 8 years ago on Introduction
I don't have windows 8 but check out this tutorial
https://learn.sparkfun.com/tutorials/installing-ar...
which mentions special steps to get the driver running.
9 years ago on Introduction
Note: this instructable has been updated to replace the discontinued relay shield with Relay shield V2.0 .
9 years ago on Introduction
Added note about new instructable that generates all the Arduino code for you and note about replacement relay shield.
9 years ago on Introduction
fixed missing link to 240V version
9 years ago on Introduction
Nice one..... can you provide me with 16 channel relay board and a wifi shield instead bluetooth.....
Reply 9 years ago on Introduction
Also the drive to the relay cards needs to be active high, to allow for the voltage difference between the FioV3 3.3V and the 5V relay card
Reply 9 years ago on Introduction
I have not built a 16 channel version.
See FioV3 wifi (with 128bit security) for a wifi example and wifi setup
http://www.forward.com.au/pfod/ArduinoWiFi_simple_pfodDevice/index.html
You need to add 2 x 8 channel 5V boards and wire them to the
digital outputs. Search for "8-Channel 5V Relay Module Shield for Arduino" for example
choose an optical isolated one or at least one with a transistor driver.
For FioV3 you can use outputs, 2,3,4,5,6,7,8,9,10,11,15,16,17, A0, A1, A3
(note you can use the Analog inputs as digital outputs)
Some code changes are needed, basically cut and paste for extra outputs
and Serial becomes Serial1 for send and receive on FioV3
It would need a bit of electrical design.
The FioV3 outputs are 3.3V, so need to check if that is enough to drive the 5V relay inputs.
If not then you need to add some resistors the ones already on the relay boards.
Also Turning 12 relays on will probably exceed standard 500mA USB supply. You need a 1A 5V supply.
Drop me an email via www.pfod.com.au and we can discuss the details.
10 years ago on Introduction
You could start with "eaton's guide to surge suppression" and http://en.wikipedia.org/wiki/Surge_protector.
Then look up the manufacture's web sites for application notes on how to apply the various suppression devices.
Finally, layout is important. To withstand the high voltages (10's KV) physical separation is required and to carry the current, substantial tracks are required.
10 years ago on Introduction
If I will be applying this to appliances, how will I prevent damaging them due to power surge? I'm doing this for a thesis project so really cant make use of devices already made.,Please help me out here.
10 years ago on Introduction
can you please illustrate how the arduino , relay shield , wires and hardware are connected to each other and to the controlled lights ??
Reply 10 years ago on Introduction
The arduino, relay shield and bluetooth boards just plug together as shown.
Match up the size of the board multi-pin headers at the end of the boards, one side has an 8pin connector, the other a 6 pin connector. They won't line up if you turn the boards around the wrong way.
As for the wiring, see where the two wires are shown leaving the top board, these are wired directly across the existing switch.
Now depending on how your house is wired, there may be 2 or 3 or more wires at the switch as the switch is sometimes used as a junction for power going to other switches. Which is why you should get an electrician to do the wiring.
However the switch should be clearly marked as to which two terminals are connected when the switch is closed. These terminals should already have wires in them switching the light.
You need to remove one of these existing wires and twist it with one of the wires from the relay board (it does not matter which wire from the relay board you choose) and then put these two wires back into the terminal and screw them down. Then remove the wire from the other side of the switch and twist it together with the remaining wire from the relay board and put them back into the terminal and screw then down. Finished.
But remember there is now deadly high voltage on the relay board, which is why is should be mounted in an insulated box so you don't accidentaly touch the terminals
As I said above, all this work should be done by a licensed electrician so you don't kill yourself or short something out or start a fire.
Reply 10 years ago on Introduction
if you can put a video or tutorial for this or even a link to an existing (tutorial or video) illustrating this :)
Reply 10 years ago on Introduction
Sorry no video at the moment