Troubleshooting

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers dateTime.hpp Source File

dateTime.hpp

00001 #ifndef _LCD_HPP
00002 #define _LCD_HPP
00003     #include "mbed.h"
00004     
00005     typedef struct{
00006         unsigned int minute : 6;
00007         unsigned int hour   : 5;
00008         
00009         unsigned int day    : 5;
00010         unsigned int month  : 4;
00011         unsigned int year   : 14;
00012     } timeDate;
00013 #endif