yotaro morizumi / Mbed 2 deprecated zoomy_customLibrary

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers nap.hpp Source File

nap.hpp

00001 #pragma once
00002 #include <mbed.h>
00003 
00004 class NAP
00005 {
00006     public:
00007         NAP(float nap_time);
00008         void take_a_nap();
00009         void setNaptime(float nap_time);
00010         void restart();
00011         Timer nap;
00012     private:  
00013         float nap_time_;
00014         int now_time;
00015         int prev_time;
00016 };