Advertisement
ArduinoCz

24 - serial

Aug 26th, 2013
14,899
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement