Skip to content

Latest commit

 

History

History
71 lines (48 loc) · 641 Bytes

reveal.md

File metadata and controls

71 lines (48 loc) · 641 Bytes

Carduino

Square

delay = 0.5;

void loop() {
    moveForward();
    turnLeft();
}

Spin

delay = 0;

void loop() {
    turnRight();
}

Circle

delay = 0.1;

void loop() {
    moveForward();
    turnLeft();
}

Letter "P"

delay = 0.5;

moveForward();
moveForward();
moveForward();
turnRight();
moveForward();
moveForward();
turnRight();
moveForward();
turnRight();
moveForward();
turnLeft();
moveForward();
moveForward();