Potentiometer App for Arduino

Potentiometer App for Arduino Free App

Rated 5.00/5 (1) —  Free Android application by EpicMansDad007

Advertisements

About Potentiometer App for Arduino

I created this App to be able to connect to an Arduino via wireless Bluetooth. The user can then receive data from a potentiometer connected to the Arduino. This is designed to be used in the classroom to show students 1) how to use basic electronic devices and sensors, 2) an introduction to coding, and 3) to collect scientific data for statistical analysis

You will need an Arduino, jumper wires, an LED, a potentiometer, and an HC-06 bluetooth device.

The code can be found here:

#include
#include

#include
const int analogInPin = A6;
const int analogOutPin = 9;
int sensorValue = 0;
int outputValue = 0;
int outPinGreen = 10;
int outPinBlue = 11;

SoftwareSerial BT(1, 0); //TX, RX respectively

void setup() {
Serial.begin(9600);
pinMode(outPinGreen, OUTPUT);
pinMode(outPinBlue, OUTPUT);
// BT.begin(9600);
}

void loop() {
// while (BT.available())
{
sensorValue = analogRead(analogInPin);
outputValue = map(sensorValue, 0, 1023, 0, 255);
analogWrite(analogOutPin, outputValue);
Serial.print(" " );
Serial.println(sensorValue);
digitalWrite(outPinGreen, HIGH);
digitalWrite(outPinBlue, HIGH);
delay(250);
}
}

How to Download / Install

Download and install Potentiometer App for Arduino version 1.0 on your Android device!
Downloaded 100+ times, content rating: Everyone
Android package: appinventor.ai_j_riddensdale.PotentiometerApp, download Potentiometer App for Arduino.apk

All Application Badges

Free
downl.
Android
1.6+
For everyone
Android app

App History & Updates

More downloads  Potentiometer App for Arduino reached 100 - 500 downloads
More downloads  Potentiometer App for Arduino reached 50 - 100 downloads

What are users saying about Potentiometer App for Arduino

T70%
by T####:

nice app.....


Share The Word!


Rating Distribution

RATING
5.05
1 users

5

4

3

2

1