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 rtc_class by
DateString.cpp
00001 #include "DateString.h" 00002 #include "RTC8563.h" 00003 00004 //2. Methode überschreiben 00005 uint8_t DateSting::GetDay() 00006 { 00007 uint8_t day= Date::GetDay(); //Aufruf der GetDay- Methode aus Basisklasse Date mit Scope Operator 00008 //Erweitern von Methoden der Basisklasse 00009 day = day - 5; 00010 return day; 00011 }
Generated on Mon Jul 25 2022 14:22:31 by
1.7.2
