Voice Activated Led ARDUINO and ANDROID
Voice Activated Led ARDUINO and ANDROID
Table of Contents
Related Instructables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
Advertisements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
Comments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
http://www.instructables.com/id/Voice-Activated-Led-ARDUINO-and-ANDROID/
Intro: Voice Activated Led (ARDUINO and ANDROID)
Controlling You'r Home Lights using an arduino and you'r android phone!!!
This is my very first instructable, I wanted to control my home using an arduino and android phone.
There were many other options available for me to do so. but the cheap option which i figured out was using arduino. Even we can control the other electronic devices
using the voice commands.
In this tutorial ill be showing you the very basic turning on and off a led using an android app which has even a voice command.
4.An LED
Software Required:-
OPTIONAL:-
http://www.instructables.com/id/Voice-Activated-Led-ARDUINO-and-ANDROID/
Step 2: UPLOADING ARDUINO PROGRAM
Copy and Paste Below code in you'r Arduino Ide
If you Want to Understand The Technique of what's Happening in code Then Pls Check Out Jeremy Blum's Tutorial 6 in this you will learn about how arduino takes serial
commands.
void setup() {
Serial.begin(9600);
pinMode(ledPin, OUTPUT);
}
void loop() {
while (Serial.available()) {
delay(3);
char c = Serial.read();
readString += c;
}
if (readString.length() >0) {
Serial.println(readString);
if (readString == "on")
{
digitalWrite(ledPin, HIGH);
}
if (readString == "off")
{
digitalWrite(ledPin, LOW);
}
readString="";
}
}
NOTE: installing your app (which is an ".apk" file) will need to change the setting on their phone to allow installation of non-market applications
To find this setting on versions of Android prior to 4.0, go to "Settings > Applications" and then check the box next to "Unknown Sources". For devices running Android 4.0
or above, go to "Settings > Security" or "Settings > Security & Screen Lock" and then check the box next to "Unknown Sources" and confirm your choice.
http://www.instructables.com/id/Voice-Activated-Led-ARDUINO-and-ANDROID/
Step 4: WIRING IT UP!!!!
Connect the Bluetooth Module To arduino :-
Arduino - Bluetooth
+5 - VCC ,
GND - GND ,
Rx - Tx ,
Tx - Rx ( Actually you Don't need this as we are only reciving data not transmitting )
http://www.instructables.com/id/Voice-Activated-Led-ARDUINO-and-ANDROID/
Step 5: USE IT!!
Now turn on you'r arduino. u'll find a red light flashing on you'r bluetooth module.
headup to you'r phone and turn on you'r phone's bluetooth and pair the arduino bluetooth with you'r phone.
Now, finally open the app select the Bluetooth Module and u"ll see that the App shows Connected and even the Light on The Bluetooth Module Turns to Green.
Enjoy it.
SEE IT IN ACTION
This Video is Very Old My first testing So please Ignore some things.
further My plan is to control multiple devices even TV and make a very nice app. you can see some images of the another clean app i've made to control almost the
whole House. And even some hardware.
http://www.instructables.com/id/Voice-Activated-Led-ARDUINO-and-ANDROID/
Image Notes Image Notes
1. Voice control 1. SELECTING A TV REMOTE
AND HAS A VOICE CONTROL
http://www.instructables.com/id/Voice-Activated-Led-ARDUINO-and-ANDROID/
http://www.instructables.com/id/Voice-Activated-Led-ARDUINO-and-ANDROID/
Image Notes
1. Voice control
Image Notes
1. I thought of using a good quality relay
24V relays
http://www.instructables.com/id/Voice-Activated-Led-ARDUINO-and-ANDROID/
Image Notes
1. Need to Make an instructable on my
PLANT MONITORING SYSTEM
Image Notes
1. A nice Tough Wire slaved from smps
http://www.instructables.com/id/Voice-Activated-Led-ARDUINO-and-ANDROID/
Image Notes
1. 12v to 24v converter for Powering the relays
Related Instructables
Bluetooth
controlled home
Voice Input Voice Activated Android Voice Control electronic
Smart appliances by
Arduino Bi- Arduino accelero control Your Arduino by
color LED Home (Bluetooth + arduino servo
Automation with lamefreaks achakravarthi
Matrix Scrolling Android) by via bluetooth
Voice command
Text Display ASCAS (app inventor)
(Bluetooth + by ALP
by planetleak
Android) by Electronic
jollifactory Innovation
Advertisements
Comments
http://www.instructables.com/id/Voice-Activated-Led-ARDUINO-and-ANDROID/