SmartWheels self-driving race car. Designed for NXP Cup. Uses FRDM-KL25Z, area-scan camera, and simple image processing to detect and navigate any NXP spec track.
Dependencies: TSI USBDevice mbed-dev
Fork of SmartWheels by
StateMachine/StandbyState.cpp
- Committer:
- hazheng
- Date:
- 2017-04-18
- Branch:
- Drift
- Revision:
- 80:c85cb93713b3
- Child:
- 82:992ba6f31e24
File content as of revision 80:c85cb93713b3:
#include "StandbyState.h" StandbyState::StandbyState() {} StandbyState::~StandbyState() {} void StandbyState::DrawUserInterface() { } void StandbyState::Update(float deltaTime) { } uint8_t StandbyState::HasTouchPosFunction() const { return 0; } uint8_t StandbyState::HasTouchIrqFunction() const { return 1; } void StandbyState::TouchPosCallback(int16_t x, int16_t y) { } void StandbyState::TouchIrqCallback() { }