Sistema de supervision y alarma para deposito de comida de animales

Committer:
ciror00
Date:
Fri May 14 17:27:28 2021 +0000
Revision:
0:5e7248732177
Trabajo final de la materia Introduccion a los Sistemas Embebidos

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ciror00 0:5e7248732177 1 //=====[#include guards - begin]===============================================
ciror00 0:5e7248732177 2
ciror00 0:5e7248732177 3 #ifndef _DATE_AND_TIME_H_
ciror00 0:5e7248732177 4 #define _DATE_AND_TIME_H_
ciror00 0:5e7248732177 5
ciror00 0:5e7248732177 6 //=====[Libraries]=============================================================
ciror00 0:5e7248732177 7
ciror00 0:5e7248732177 8 //=====[Declaration of public defines]=======================================
ciror00 0:5e7248732177 9
ciror00 0:5e7248732177 10 //=====[Declaration of public data types]======================================
ciror00 0:5e7248732177 11
ciror00 0:5e7248732177 12 //=====[Declarations (prototypes) of public functions]=========================
ciror00 0:5e7248732177 13
ciror00 0:5e7248732177 14 char* dateAndTimeRead();
ciror00 0:5e7248732177 15
ciror00 0:5e7248732177 16 void dateAndTimeWrite( int year, int month, int day,
ciror00 0:5e7248732177 17 int hour, int minute, int second );
ciror00 0:5e7248732177 18
ciror00 0:5e7248732177 19 //=====[#include guards - end]=================================================
ciror00 0:5e7248732177 20
ciror00 0:5e7248732177 21 #endif // _DATE_AND_TIME_H_