Specification
- Arduino
compatible
- Interface
type: Analog
The Rotation Sensor is a multi-ring rotation sensor. It is
based on multi-turn precision potentiometer and can be rotate up to 10 laps.
The voltage can be subdivided into 1024 copies. With the usage of special sensors
expansion board of Arduino, even the minimal change of angle can be achieved
accurately. Arduino Sample Code:
void setup()
{
Serial.begin(9600);
}
void loop()
{
int val;
val=analogRead(0);
Serial.println(val,DEC);
delay(100);
}