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: EthernetInterfacePlusHostname RdWebServer mbed-rtos mbed
Diff: Effect.h
- Revision:
- 0:887096209439
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Effect.h Tue Aug 18 16:03:29 2015 +0000
@@ -0,0 +1,16 @@
+// Base class for led effects
+
+#ifndef EFFECT__H
+#define EFFECT__H
+
+class Effect
+{
+ public:
+ Effect() {}
+ virtual char* GetName() = 0;
+ virtual void Init(char* argStr) = 0;
+ virtual void NextGen() = 0;
+ virtual void Stop() = 0;
+};
+
+#endif
\ No newline at end of file