Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
void
setup
(
)
{
Serial.
begin
(
9600
)
;
// inicializace seriové linky
delay
(
500
)
;
// čekej 0,5 sec
}
void
loop
(
)
{
Serial.
println
(
"ahoj"
)
;
// odešli na ser. linku ahoj
delay
(
2000
)
;
//čekej 2 sec
}