Potentiometer App for Arduino 1.0 Icon

Potentiometer App for Arduino

EpicMansDad007 Education
5
1 Ratings
100+
Downloads
1.0
version
Sep 06, 2016
release date
1.8 MB
file size
Free
Download

What's New

About Potentiometer App for Arduino Android App

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);
}
}

Other Information:

Requires Android:
Android 1.6+ (Donut, API 4)
Other Sources:

Download

This release of Potentiometer App for Arduino Android App available in 2 variants. Please select the variant to download. Please read our FAQ to find out which variant is suitable for your Android device based on Screen DPI and Processor Architecture.

Variant
4
(Sep 06, 2016)
Architecture
Unlimited
Minimum OS
Android 1.6+ (Donut, API 4)
Screen DPI
nodpi (all screens)
Variant
1
(Mar 04, 2016)
Architecture
Unlimited
Minimum OS
Android 1.6+ (Donut, API 4)
Screen DPI
nodpi (all screens)

All Versions

If you are looking to download other versions of Potentiometer App for Arduino Android App, We have 1 version in our database. Please select one of them below to download.

Loading..