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
InteractionTimeout.h
00001 #ifndef INTERACTION_TIMEOUT_H 00002 #define INTERACTION_TIMEOUT_H 00003 00004 #include "mbed.h" 00005 00006 class InteractionTimeout { 00007 public: 00008 InteractionTimeout(uint16_t _seconds); 00009 void reset(); 00010 bool timedOut(); 00011 00012 private: 00013 uint16_t timeoutSeconds; 00014 Timer timer; 00015 }; 00016 00017 #endif
Generated on Tue Jul 19 2022 02:43:48 by
1.7.2