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.
Dependents: m3Dpi MQTT-Thermostat-example Final_project_Tran Final_project_Tran ... more
effects/CycleEffect.h
- Committer:
- sillevl
- Date:
- 2015-12-03
- Revision:
- 7:d10cfeb2f18e
- Parent:
- 4:a7a26506c62f
File content as of revision 7:d10cfeb2f18e:
#include "Effect.h" #include "../Color.h" #ifndef CYCLEEFFECT_H #define CYCLEEFFECT_H class CycleEffect : public Effect { static Color::Colors COLORS[]; int index; public: CycleEffect(RGB* led); virtual void run(); }; #endif