14 lines
281 B
C
14 lines
281 B
C
|
/*
|
||
|
Author: Alexander Popov
|
||
|
License: Unlicense
|
||
|
*/
|
||
|
|
||
|
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);
|
||
|
}
|
||
|
}
|