Hello there,
it's my first day to Arduino and Arduino programming. I'm learning the basic code from the internet. I wrote this code.
int led = 9; // the PWM pin the LED is attached to
int brightness = 100; // how bright the LED is
int fadeAmount = 5; // how many points to fade the LED by
int check = 0;
int remainder = 0;
void setup() {
// declare pin 9 to be an output:
pinMode(led, OUTPUT);
Serial.begin(9600);
}
void loop() {
check ++;
Serial.print(check);
Serial.print(" ");
}
But it's not displaying any check value as its showing others internet. Why? :o