Rob Griffith / Mbed 2 deprecated rat_code

Dependencies:   mbed QEI

Committer:
rwgriffithv
Date:
Thu Nov 08 06:38:19 2018 +0000
Revision:
0:88c60458332e
Child:
1:6f18bb7a77a5
initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
rwgriffithv 0:88c60458332e 1 #include "assignment2.h"
rwgriffithv 0:88c60458332e 2
rwgriffithv 0:88c60458332e 3 int main() {
rwgriffithv 0:88c60458332e 4 /***
rwgriffithv 0:88c60458332e 5 * Run a function from "run_modes" here.
rwgriffithv 0:88c60458332e 6 * You can also put some indicator to show that your mouse has booted,
rwgriffithv 0:88c60458332e 7 * such as a print statement or an LED blink.
rwgriffithv 0:88c60458332e 8 ***/
rwgriffithv 0:88c60458332e 9
rwgriffithv 0:88c60458332e 10 /*blinky_led(); assignment1 test1*/
rwgriffithv 0:88c60458332e 11 /*hello_world(); assignment1 test2*/
rwgriffithv 0:88c60458332e 12
rwgriffithv 0:88c60458332e 13 read_encoders();
rwgriffithv 0:88c60458332e 14 /*
rwgriffithv 0:88c60458332e 15 left wheel
rwgriffithv 0:88c60458332e 16 R: 358
rwgriffithv 0:88c60458332e 17 Experimental 2R: 713
rwgriffithv 0:88c60458332e 18 Theoretical 2R: 716
rwgriffithv 0:88c60458332e 19 Experimental 3R: 1081
rwgriffithv 0:88c60458332e 20 Theoretical 3R: 1074
rwgriffithv 0:88c60458332e 21 right wheel
rwgriffithv 0:88c60458332e 22 R: 359
rwgriffithv 0:88c60458332e 23
rwgriffithv 0:88c60458332e 24 basic_motor_movement();
rwgriffithv 0:88c60458332e 25 */
rwgriffithv 0:88c60458332e 26 }