Library to control NeoPixel strings of RGB leds

Dependencies:   PixelArray

Dependents:   NeoPixelI2cSlave NeoPixelI2cSlave

Effects/strobe_effect.h

Committer:
dwini
Date:
2015-11-23
Revision:
1:f544810b6598
Child:
3:7d32f46a38d3

File content as of revision 1:f544810b6598:

#pragma once

#include "effect.h"

namespace Effects {

    enum StrobeState { OFF, ON };
    
    class StrobeEffect : public Effect {
    
        private:
            neopixel::Pixel initial_color;
            StrobeState current_state;
            
        public:
            StrobeEffect(NeoPixelString * pixelstring, int delay_ms, neopixel::Pixel initial_color);
        
        public:
            virtual void execute(void);
    };

};