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
main.cpp@5:fc8c66a7c87a, 2015-04-23 (annotated)
- Committer:
- bulmecisco
- Date:
- Thu Apr 23 09:02:20 2015 +0000
- Revision:
- 5:fc8c66a7c87a
- Parent:
- 3:c6081814064d
- Child:
- 6:ebe2350041f1
Update to version 0.2 (private to protected)
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| bulmecisco | 0:32ae5fd83722 | 1 | /*********************************** |
| bulmecisco | 0:32ae5fd83722 | 2 | name: main.cpp Version: 0.1 |
| bulmecisco | 0:32ae5fd83722 | 3 | author: PE HTL BULME |
| bulmecisco | 0:32ae5fd83722 | 4 | email: pe@bulme.at |
| bulmecisco | 0:32ae5fd83722 | 5 | description: |
| bulmecisco | 0:32ae5fd83722 | 6 | Real Time Clock (RTC8563) |
| bulmecisco | 0:32ae5fd83722 | 7 | on HIMBED M0 - LPC11U24 |
| bulmecisco | 3:c6081814064d | 8 | class Date inherited from class RTC8563 |
| bulmecisco | 3:c6081814064d | 9 | Example methode GetDay implemented |
| bulmecisco | 3:c6081814064d | 10 | ToDo: |
| bulmecisco | 3:c6081814064d | 11 | implement year, month; |
| bulmecisco | 0:32ae5fd83722 | 12 | ***********************************/ |
| bulmecisco | 0:32ae5fd83722 | 13 | #include "mbed.h" |
| bulmecisco | 2:f75062350241 | 14 | #include "const.h" |
| bulmecisco | 2:f75062350241 | 15 | #include "RTC8563.h" |
| bulmecisco | 2:f75062350241 | 16 | #include "string" |
| bulmecisco | 3:c6081814064d | 17 | #include "Date.h" |
| bulmecisco | 2:f75062350241 | 18 | |
| bulmecisco | 0:32ae5fd83722 | 19 | Serial pc(USBTX, USBRX); |
| bulmecisco | 2:f75062350241 | 20 | |
| bulmecisco | 3:c6081814064d | 21 | uint8_t year, month, day; |
| bulmecisco | 3:c6081814064d | 22 | |
| bulmecisco | 0:32ae5fd83722 | 23 | int main() |
| bulmecisco | 0:32ae5fd83722 | 24 | { |
| bulmecisco | 3:c6081814064d | 25 | Date rtc; // instanziieren des Objektes rtc |
| bulmecisco | 2:f75062350241 | 26 | |
| bulmecisco | 0:32ae5fd83722 | 27 | while(1) { |
| bulmecisco | 5:fc8c66a7c87a | 28 | pc.printf("Date.Day: %i\n", rtc.GetDay()); |
| bulmecisco | 0:32ae5fd83722 | 29 | wait(1); |
| bulmecisco | 0:32ae5fd83722 | 30 | } |
| bulmecisco | 2:f75062350241 | 31 | } |
