// Définition des variables globales const int PIN_POT = A0; void setup() { // initialize the serial communications: Serial.begin(115200); } void loop() { // print the sensor values: Serial.println( // A COMPLETER : valeur d'angle du potentiometre mesurée ); // delay before next reading: delay(100); }