Minor fixes

Dependencies:   LPS25H hts221

Fork of Coursework by Group PAG

Clock.h

Committer:
noutram
Date:
2017-05-04
Revision:
44:2b23c7407547
Parent:
37:1a621144e73f

File content as of revision 44:2b23c7407547:

#ifndef Clock_H
#define Clock_H
 
#include "mbed.h"

class Clock{
    //variables  //public so that Reading can read it
    public:
    int year;
    int month;
    int day;
    int hour;
    int minute;
    int second;
    
    Clock(int y, int mo, int d, int h,int mi,int s);
    Clock();
    
    void TickTock();
    void setClock(Clock *dt);
    
    };
#endif