document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include "qfixSoccerBoard.h"
  2.  
  3. SoccerBoard robot; // Klasse SoccerBoard initialisieren
  4.  
  5. int main()
  6. {
  7.     while(1)
  8.     {
  9.         robot.ledOff(0); // LED 0 und 1 einschalten
  10.         robot.ledOff(1);
  11.         sleep(1);
  12.         robot.ledOn(0); // LED 0 und 1 einschalten
  13.         robot.ledOn(1);
  14.         sleep(1);
  15.     }
  16. }
');