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: Adafruit_GFX MODSERIAL mbed-rtos mbed
Diff: Throttle.h
- Revision:
- 5:0b229ba8ede5
- Child:
- 6:506b703a8acf
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Throttle.h Sun Apr 27 19:13:35 2014 +0000
@@ -0,0 +1,13 @@
+#ifndef THROTTLE_H
+#define THROTTLE_H
+
+#include "PidValue.h"
+
+class Throttle : public PidValue
+{
+public:
+ Throttle();
+ virtual bool decode(const uint8_t* data, uint16_t length);
+};
+
+#endif //THROTTLE_H
\ No newline at end of file