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: BLE_API X_NUCLEO_6180XA1 X_NUCLEO_IDB0XA1 mbed
Fork of BLE_HeartRate_IDB0XA1 by
stop.h
00001 // stop.h - stop button functionality 00002 00003 #ifndef _STOP_H_ 00004 #define _STOP_H_ 00005 00006 #include <mbed.h> 00007 00008 class StopButton : private InterruptIn 00009 { 00010 public: 00011 void set(); // set stop request 00012 void clear(); // clear stop request 00013 bool request(); // stop requested? 00014 00015 public: // construction 00016 StopButton(PinName pin = USER_BUTTON); 00017 }; 00018 00019 #endif // _STOP_H_
Generated on Sat Jul 16 2022 07:45:39 by
1.7.2
