Simple Arduino Program
I'm just share simple things to do. Jazakumullahu khairan kathira || || I'm not resposible for any damage to your component. || Follow/DM me on Twitter for business enquiry, project assist. || twitter.com/zakimuslim_ || Pelajar IPT sekitar Malaysia saya utama :)
Wednesday, 25 March 2020
Friday, 20 March 2020
Saturday, 7 March 2020
Wednesday, 26 February 2020
Sunday, 7 April 2019
CONTROLLING SERVO FROM ANDROID
(MIT APP INVENTOR & ARDUINO)
Schematic Diagram
3. Arduino File .INO
(MIT APP INVENTOR & ARDUINO)
Related to my previous MIT App Inventor tutorial video, someone ask me to making video tutorial video to controlling multiple servo from android. But i don't have enough time to make preparation for "vlogging". So, today i just make post on my blog with some screenshot!
Open your browser, and log in your MIT App Inventor account and create new project.
Drag in Label for displaying accelerometer X, Y value. Don't forget to drag in Bluetooth Client, Clock and Accelerometer Sensor. Rename all variable.
Drag all block needed. Here is screenshot may help you!
And here is Arduino Code. You can copy and paste this code on your Arduino IDE or can directly download from link provided below.
/////////////////////////////////////////////////COPY AND PASTE THIS CODE///////////////////////////////////////////////
#include <Servo.h>
Servo x_servo;
Servo y_servo;
String x_angle; String y_angle;
int x_value; int y_value;
void setup() {
Serial.begin(9600);
Serial.setTimeout(30);
x_servo.attach(4);
y_servo.attach(5);
x_servo.write(45); y_servo.write(45); //default position
}
void loop() {
if (Serial.available() > 0){
x_angle = Serial.readStringUntil('x');
y_angle = Serial.readStringUntil('y');
x_value = x_angle.toInt();
y_value = y_angle.toInt();
x_servo.write(x_value);
y_servo.write(y_value);
//uncomment to reverse servo movement
//x_servo.write(((x_value)*-1)+180);
//y_servo.write(((y_value)*-1)+180);
}
}
///////////////////////////////////////////////////////////////END OF CODE////////////////////////////////////////////////////////////
Hardware Setup
Wiring as follow:
I highly recommend to use external power source for servo & bluetooth. They draw lot of current,your project may not running as you expected.
Servo 1 Pulse - Pin 4 Arduino
Servo 2 Pulse - Pin 5 Arduino
Servo 2 Pulse - Pin 5 Arduino
Bluetooth TX - RX Arduino
Bluetooth RX - TX Arduino
Bluetooth RX - TX Arduino
Bluetooth VCC - 5V Arduino
Bluetooth GND - Arduino GND
Breadboard Layout
Breadboard Layout
Schematic Diagram
This is how i setup. im using Arduino Nano Expension Shield.
Then try to connect your bluetooth from your android to bluetooth module.
DOWNLOAD LINK
1. Android File .AIA
2. Android File .APK
https://drive.google.com/open?id=1DrQ-4HnBgtHJBZPqI93NBf6CvM_NE1nZ
https://drive.google.com/open?id=1DrQ-4HnBgtHJBZPqI93NBf6CvM_NE1nZ
3. Arduino File .INO
Wednesday, 3 October 2018
UNSEEN HOBBY ENTERPRISE
TEL : +6016-9295759
Email : unseenhobby@gmail.com / zakizakaria44@gmail.com
Blog :
YouTube Channel:
Subscribe to:
Posts (Atom)