-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimerControl.h
More file actions
39 lines (35 loc) · 1.64 KB
/
timerControl.h
File metadata and controls
39 lines (35 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
* timerControl.h
*
* Created: 06-Apr-18 8:20:22 PM
* Copyright: ©2018 Alsayed Alsisi
* Author: Alsayed Alsisi
* License:
You have the complete freedom to use the code in any educational or commercial purposes under the following conditions:
- You don't remove my name under any circumstances.
- You use the code as is. And if you need to edit it before using it you may contact me first.
* Contact Details:
- E-mail: alsayed.alsisi@gmail.com
- Phone Number: +201066769510
*/
/*----------------------------------------------------------------
--------------------- Header Guard -------------------------------
----------------------------------------------------------------*/
#ifndef TIMERCONTROL_H_
#define TIMERCONTROL_H_
/*----------------------------------------------------------------
--------------------- File Inclusion -----------------------------
----------------------------------------------------------------*/
#include <stdint.h>
/*----------------------------------------------------------------
--------------------- Public Function Prototypes ----------------
----------------------------------------------------------------*/
extern void timer_control_update(void);
extern uint8_t timer_control_minutes_counter_value_get(void);
extern uint8_t timer_control_hours_counter_value_get(void);
extern void timer_control_stop(void);
extern void timer_control_start(void);
#endif /* TIMERCONTROL_H_ */
/*----------------------------------------------------------------
--------------------- End of File --------------------------------
----------------------------------------------------------------*/