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