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.
Fork of Coursework by
Clock.h
00001 #ifndef Clock_H 00002 #define Clock_H 00003 00004 #include "mbed.h" 00005 00006 class Clock{ 00007 //variables //public so that Reading can read it 00008 public: 00009 int year; 00010 int month; 00011 int day; 00012 int hour; 00013 int minute; 00014 int second; 00015 00016 Clock(int y, int mo, int d, int h,int mi,int s); 00017 Clock(); 00018 00019 void TickTock(); 00020 void setClock(Clock *dt); 00021 00022 }; 00023 #endif
Generated on Tue Jul 12 2022 21:22:38 by
1.7.2
