int count = 0; int pin = void setup() { // put your setup code here, to run once: Serial.begin(9600); Serial.println("Serial has begun");' ' } void loop() { // put your main code here, to run repeatedly: count += 1; Serial.println(count); delay(1000); }