Hello, I'm a total beginner in the arduino/teensy world, and I'm facing issues on my first attempt.
I have the following code :
void setup() {
Serial.begin(9600);
}
void loop() {
int sensorValue1 = analogRead(A0);
Serial.println(sensorValue1);
delay(10);
}
For now, nothing is connected...