I want to use a potentiometer as a additional controller for gaming e.g. throttle.I have built it and have the code to read the values:
int sensorPin = A0;
int sensorValue =0;
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.println(analogRead(sensorPin));
delay(100);
}
but I dont know how to input the values in windows and the game to recognize them