finished markdown documentation

This commit is contained in:
fabito 2014-06-01 12:01:30 -03:00
parent 930b182275
commit 31635b1940
1 changed files with 4 additions and 2 deletions

View File

@ -138,11 +138,13 @@ And finally lets use the arrow keys to tell the drone to do some cool stunts:
my.keyboard.on('down', function(key) { my.keyboard.on('down', function(key) {
my.drone.backFlip(); my.drone.backFlip();
}); });
```
} //end work } //end work
```
Now that our robot knows what work to do, and the work it will be doing that Now that our robot knows what work to do, and the work it will be doing that
hardware with, we can start it: hardware with, we can start it:
```
}).start(); }).start();
```