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: TSI USBDevice mbed-dev
Fork of SmartWheels by
Diff: StateMachine/StandbyState.h
- Branch:
- Drift
- Revision:
- 80:c85cb93713b3
- Child:
- 86:51048c1f132f
diff -r bdbac82c979b -r c85cb93713b3 StateMachine/StandbyState.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/StateMachine/StandbyState.h Tue Apr 18 19:26:33 2017 +0000
@@ -0,0 +1,27 @@
+#pragma once
+#ifndef STANDBY_STATE_H
+#define STANDBY_STATE_H
+
+#include <mbed.h>
+#include "States.h"
+
+class StandbyState : public States
+{
+public:
+ StandbyState();
+ ~StandbyState();
+
+ virtual void DrawUserInterface();
+
+ virtual void Update(float deltaTime);
+
+ virtual uint8_t HasTouchPosFunction() const;
+
+ virtual uint8_t HasTouchIrqFunction() const;
+
+ virtual void TouchPosCallback(int16_t x, int16_t y);
+
+ virtual void TouchIrqCallback();
+};
+
+#endif //STANDBY_STATE_H
\ No newline at end of file
