3.- Arduino. Bluetooth Potentiometer.
p299Hi_GraficoDinamico_3.aia (11.4 KB)
Arduino sends the value of a potentiometer over Bluetooth.
// Juan A. Villalpando
// http://kio4.com/appinventor/299H_extension_GraficoDinamico.htm
int value_pot0;
void setup() {
Serial.begin(9600);
}
void loop() {
value_pot0 = analogRead(A0);
// value_pot0 = (int) random(0,1023);
Serial.println(value_pot0);
delay(100); // It should be slower than the Clock Interval.
}


