Grove - Rotary Angle Sensor
Version från den 26 oktober 2018 kl. 14.08 av Christian (diskussion | bidrag)
Kompatibilitet
- Arduino
- Raspberry Pi
Exempelkod
Arduino
// Rotary Angle Sensor example
const int potentiometer = A0; // rotary angle sensor connect to A0
void setup()
{
Serial.begin(9600); // set the serial communication frequency at 9600 bits per sec
pinMode(potentiometer, INPUT);
}
void loop()
{
int value = analogRead(potentiometer);
Serial.println(value); // pirnt the value on the serial monitor screen
delay(100); // wait 1000ms before printing next value
}