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.cpp
00001 #include "InteractionTimeout.h" 00002 00003 InteractionTimeout::InteractionTimeout(uint16_t seconds) { 00004 timeoutSeconds = seconds; 00005 timer.start(); 00006 } 00007 00008 void InteractionTimeout::reset() { 00009 timer.reset(); 00010 } 00011 00012 bool InteractionTimeout::timedOut() { 00013 return (timer.read_ms() / 1000) > timeoutSeconds; 00014 }
Generated on Tue Jul 19 2022 02:43:48 by
1.7.2