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.
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 };
Generated on Sat Oct 15 2022 07:52:33 by
1.7.2