Troubleshooting

dateTime.hpp

Committer:
BenRJG
Date:
2018-11-09
Revision:
17:b7cd66c5f845
Parent:
16:df78620cb307

File content as of revision 17:b7cd66c5f845:

#ifndef _LCD_HPP
#define _LCD_HPP
    #include "mbed.h"
    
    typedef struct{
        unsigned int minute : 6;
        unsigned int hour   : 5;
        
        unsigned int day    : 5;
        unsigned int month  : 4;
        unsigned int year   : 14;
    } timeDate;
#endif