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.
OVEN.h
00001 #include "mbed.h" 00002 #include "definitions.h" 00003 00004 class OVEN{ 00005 public: 00006 OVEN(PinName OvenPin); 00007 void Init(void); 00008 void Home(void); 00009 void setTimer(int t); 00010 int getTimer(void); 00011 void check(void); 00012 void open(void); 00013 private: 00014 PwmOut OvenPWM; 00015 int timer; 00016 int openedTimer; 00017 bool enable; 00018 };//OVEN
Generated on Wed Jul 20 2022 02:15:49 by
1.7.2