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: PololuLedStrip mbed
Pulser.h
00001 #ifndef PULSER_H 00002 #define PULSER_H 00003 00004 #include "mbed.h" 00005 00006 class Pulser { 00007 public: 00008 Pulser(PinName _pin); 00009 void pulse(); 00010 void steady(); 00011 void off(); 00012 private: 00013 static const uint8_t delay = 30; 00014 uint32_t value; 00015 int16_t direction; 00016 uint32_t lastUpdate; 00017 AnalogOut out; 00018 Timer timer; 00019 }; 00020 00021 #endif
Generated on Tue Jul 19 2022 02:43:48 by
1.7.2