This is car control simulation by using Mbed controller and real time operating system.

Dependencies:   MCP23017 Servo WattBob_TextLCD mbed-rtos mbed

Fork of Ass3 by Muaiyd Al-Zandi

Committer:
muaiyd
Date:
Wed Apr 02 09:13:57 2014 +0000
Revision:
0:68ce46607848
Child:
1:b409ad65466a
First RTOS with Class

Who changed what in which revision?

UserRevisionLine numberNew contents of line
muaiyd 0:68ce46607848 1 #include "CAR.h"
muaiyd 0:68ce46607848 2
muaiyd 0:68ce46607848 3 void CAR::led2_thread(void const *args) {
muaiyd 0:68ce46607848 4 while (true) {
muaiyd 0:68ce46607848 5 led2 = !led2;
muaiyd 0:68ce46607848 6 Thread::wait(1000);
muaiyd 0:68ce46607848 7 }
muaiyd 0:68ce46607848 8 }