I have loaded an example sketch that came with the installation of the Arduino software onto my Uno.
void setup() {
Serial.begin(9600);
}
void loop() {
int sensorValue = analogRead(A0);
Serial.println(sensorValue);
delay(1);
}
From this time TX light is continuously on. It's remaining on even after resetting it. How do I end void loop
so that TX light goes off.