Minor fixes

Dependencies:   LPS25H hts221

Fork of Coursework by Group PAG

Clock.h

Committer:
RossalaTTM
Date:
2017-05-03
Revision:
37:1a621144e73f

File content as of revision 37:1a621144e73f:

#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