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: NeoPixelI2cSlave NeoPixelI2cSlave
periodic_effect.h
00001 #pragma once 00002 00003 #include "effect.h" 00004 00005 namespace Effects { 00006 00007 class PeriodicEffect : public Effect { 00008 00009 private: 00010 int delay_ms; 00011 Ticker ticker; 00012 00013 public: 00014 PeriodicEffect(NeoPixelString * pixelstring, neopixel::Pixel color, int delay_ms); 00015 00016 public: 00017 virtual void start(void); 00018 virtual void stop(void); 00019 00020 private: 00021 void tick(void); 00022 }; 00023 00024 };
Generated on Fri Jul 15 2022 00:27:27 by
1.7.2