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.
control_theory/nap.hpp
- Committer:
- yootee
- Date:
- 2022-10-15
- Revision:
- 22:394337a4205a
- Parent:
- 6:e7f2335456c8
File content as of revision 22:394337a4205a:
#pragma once #include <mbed.h> class NAP { public: NAP(float nap_time); void take_a_nap(); void setNaptime(float nap_time); void restart(); Timer nap; private: float nap_time_; int now_time; int prev_time; };