David Knight / Mbed 2 deprecated lichtspiel

Dependencies:   PololuLedStrip mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers InteractionTimeout.h Source File

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