snipplets.dev/code/Arduino/init_blink.h

16 lines
376 B
C
Raw Permalink Normal View History

2023-03-22 22:08:57 +03:00
/*
Author: Alexander Popov
License: Unlicense
Функция, которая моргает встроенным светодиодом
2023-03-22 22:08:57 +03:00
*/
void init_blink(int times, int delay) {
for (int count = 0; count < times; count++) {
digitalWrite(LED_BUILTIN, HIGH);
delay(delay);
digitalWrite(LED_BUILTIN, LOW);
delay(delay);
}
}