Contains classes which are able to change the color of a LED

Dependents:   RGB

Heartbeat.h

Committer:
arnedesmet
Date:
2016-01-18
Revision:
3:3d0652023458
Parent:
0:8fd12f8121c1

File content as of revision 3:3d0652023458:


#ifndef HEARTBEAT_H
#define HEARTBEAT_H
#include "Effect.h"

class Heartbeat: public Effect{
    public:
        Heartbeat(RGB* led);
        void run();
    private:
        
        
    
};

#endif