Posts

Buetooth based stepper motor controller by arduino

Image
Buetooth based stepper motor controller by arduino The Stepper motor used here is a rusty old EPOCH (5 wires) stepper motor, which is a unipolar stepper. '  Requiredments : - Bluetooth Module ( for example : HC05 or HC06 ) - Jumper Cables Checkout the video to know how the app control stepper motor Source code for controlling stepper motor from android app: ------------------------------------------------------------------------------------------------------------------------------- #include <AccelStepper.h> AccelStepper stepper(AccelStepper::FULL2WIRE, 8, 9); int spd = 1000;    // The current speed in steps/second int sign = 1;      // Either 1, 0 or -1 void setup() {    Serial.begin(9600);   stepper.setMaxSpeed(1000);   stepper.setSpeed(1000);    } void loop() {    char c;   if(Serial.available()) {     c = Serial.read();     if (c == 'f') {  // forward ...

Android Arduino Speech recognition

Image
Android Arduino Speech recognition Arduino with voice commands using an Android Mobiles Before we make a voice activated home automatic system More details Watching this vedio Thing that you'll need: - 5 LED Indicators (the color of your choice) - Arduino UNO (a clone works fine) - HC-05 Serial Bluetooth Module - Solderless Breadboard - Jumper Cables bt voice control for arduino source code //Voice Activated Arduino (Bluetooth + Android) //Feel free to modify it but remember to give credit String voice; int led1 = 2, //Connect LED 1 To Pin #2 led2 = 3, //Connect LED 2 To Pin #3 led3 = 4, //Connect LED 3 To Pin #4 led4 = 5, //Connect LED 4 To Pin #5 led5 = 6; //Connect LED 5 To Pin #6 //--------------------------Call A Function-------------------------------// void allon(){      digitalWrite(led1, HIGH);      digitalWrite(led2, HIGH);      digitalWrite(led3, HIGH);      digitalWrite(led...

How to make an Android phone controlled Arduino Robot

Image
How to make an Android phone controlled Arduino Robot How to make an app for controlling an robot by android app, you will be using android phone as remote controller to control the robot. You need 2 gear motor with wheels A motor driver, you can use any of the motor driver you want, I used L293D motor driver for this project. You also need a battery and connecting wires, apart from that as usual a Bluetooth and Arduino board is needed to complete this tutorial complete this tutorial Saw in this vedio  Android RC control Robot using Arduino Sample Code --------------------------------------------------------------------------------------------------------------------------  #include < SoftwareSerial . h > SoftwareSerial BT ( 10 , 11 ) ; //TX, RX respetively String readdata ; void setup ( ) { BT . begin ( 9600 ) ; Serial . begin ( 9600 ) ;   pinMode ( 3 , OUTPUT ) ; // connect to input 1 of l293d   pinMode ( 4 ,...

Multi Servo Motor Control with Arduino and Android app

Image
Android app using MIT app inventor 2 , I created this app to control 6 servo motor using android and arduino, I have arduino uno, which has only 6 PWM pins that's the reason I created 6 servo control, If you want to control more than 6 you can use arduino Mega to do this Need for Components - Arduino Board - HC-06 / 05 Bluetooth Module - Servo Motor x4 - Wires and Breadboard - Battery - Android Device You can find the Circuit Diagram for this project above. Connect your servo according to that, If possible power the Servos and arduino separately Check the video below to know How to make mit app for controlling multiple stepper motor. - MIT App Inventor site to create an application. http://appinventor.mit.edu/explore/

MIT app inventor Arduino For Andriod

Image
Course on MIT app inventor Arduino For Andriod Creating Andriod apps using MIT app inventor and connected the app with arduino to make things work, I often get email stating something went missing when they follow my tutorial, Here's a step by step tutorial on getting started with creating MIT app inventor and control things with arduino Technolgy 1. App Inventor: How to Make an Android App - The Basics In this tutorial, I show you the basic concepts of Google App Inventor. Keep watching this series to learn many advanced features of the software. Remember, the things I go over in this video are essential to learn before building up your knowledge. 2.  Getting Started with Arduino and Android   MIT app inventor and what are the requirements need to get started with this video series, anyone watching this video can make their own app and control a LED connected to arduino without any prior experience Blinking an LED is the first thing we...