>>> python pageviewcounter.py
Total views: 9
Timestamps of views:
2024-04-05 08-26-47 : Count - 1
2024-04-05 08-26-56 : Count - 2
2024-04-05 08-28-03 : Count - 3
2024-04-05 08-30-49 : Count - 4
2024-04-05 08-31-53 : Count - 5
2024-04-05 08-32-04 : Count - 6
2024-04-05 08-33-01 : Count - 7
2024-04-05 08-33-07 : Count - 8
2024-04-05 08-34-47 : Count - 9
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}