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.
ToggleDigitalOut.h
00001 /* mbed ToggleDigitalOut Library 00002 * Copyright (c) 2013 KentaShimizu 00003 * Version 0.1 (May 15, 2013) 00004 * Released under the MIT License: http://mbed.org/license/mit 00005 */ 00006 00007 #ifndef _IG_TOGGLEDIGITALOUT_20130515 00008 #define _IG_TOGGLEDIGITALOUT_20130515 00009 00010 #include "mbed.h" 00011 00012 class ToggleDigitalOut : public DigitalOut{ 00013 private: 00014 protected: 00015 Ticker* ticker; 00016 public: 00017 ToggleDigitalOut(PinName pin); 00018 virtual ~ToggleDigitalOut(); 00019 virtual void toggle(void); 00020 virtual void toggling(float span); 00021 virtual void stopToggling(void); 00022 }; 00023 #endif
Generated on Mon Jul 18 2022 20:43:45 by
1.7.2