Ramesh
Published © GPL3+

Arduino graph using android app

Here is simplest component used and good accuracy for Signal Graph, Voltage and current measured reading value (DC) by using Android Applica

AdvancedFull instructions provided2,899
Arduino graph using android app

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
HC-05 Bluetooth Module
HC-05 Bluetooth Module
×1
Rotary potentiometer (generic)
Rotary potentiometer (generic)
×1
Resistor 10k ohm
Resistor 10k ohm
×1
Resistor 100k ohm
Resistor 100k ohm
×1

Software apps and online services

MIT App Inventor
MIT App Inventor

Hand tools and fabrication machines

Breadboard, 170 Pin
Breadboard, 170 Pin
10 Pc. Jumper Wire Kit, 5 cm Long
10 Pc. Jumper Wire Kit, 5 cm Long

Story

Read more

Schematics

blue_tooth_graph_0j5kasMGcv.png

Code

Arduino_graph.ino

Arduino
int value_pot0;

void setup() { 
  Serial.begin(9600);
}

void loop() { 
    value_pot0 = analogRead(A0);
    Serial.println(value_pot0);
    delay(100); // It should be slower than the Clock Interval.
}    

Credits

Ramesh

Ramesh

15 projects • 18 followers

Comments