You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
246 B
14 lines
246 B
int pocitadlo;
|
|
|
|
void setup() {
|
|
Serial.begin(9600);
|
|
Serial.println("Zacatek programu");
|
|
pocitadlo = 0;
|
|
}
|
|
|
|
void loop() {
|
|
pocitadlo++; // pocitadlo = pocitadlo + 1
|
|
Serial.print("Pocet cyklu:");
|
|
Serial.println(pocitadlo);
|
|
delay(200);
|
|
}
|
|
|