void setup() {
// put your setup code here, to run once:
pinMode(13, OUTPUT);
Serial.begin(300);
//встановлює режим піна 13 на Вихід сигналу
// 0 B - LOW | 5 B - HIGH
}
int i;
void loop() {
// put your main code here, to run repeatedly:
if(millis()%1000 == 0) {
Serial.println(millis()/1000, DEC);
//Serial.flush();
}
}