Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: MCP23017 Servo WattBob_TextLCD mbed-rtos mbed
Fork of Ass3 by
CAR.h
- Committer:
- muaiyd
- Date:
- 2014-04-09
- Revision:
- 8:6e55db96c11c
- Parent:
- 7:a92da438d06c
- Child:
- 9:d86a6b8cdfa4
File content as of revision 8:6e55db96c11c:
#ifndef CAR_H
#define CAR_H
#include "rtos.h"
#include "CommonVariable.h"
class CAR {
public:
CAR();
static void SAVE_ODO(float value);
static float GET_ODO();
static void Accelero_Brake_Read(void const *args);
static void Average_Speed_Measure(void const *args);
static void Average_Speed_Show(void const *args);
static void OverSpeed(void const *args);
static void Odo_Show_Indicator_Switch_Read(void const *args);
static void SEND_CAR_VALUES (void const *args);
static void DUMP_CAR_VALUES_En (void const *args);
static void DUMP_CAR_VALUES();
static void Side_Light_Flash(void const *args);
static void Side_Light(void const *args);
private:
};
#endif
