16 lines
306 B
C
16 lines
306 B
C
/*
|
|
* qlock.h
|
|
*
|
|
* Created on: 24.01.2016
|
|
* Author: BlexTw11
|
|
*/
|
|
|
|
#ifndef INCLUDE_QLOCK_H_
|
|
#define INCLUDE_QLOCK_H_
|
|
|
|
enum copy_mode {ADD, OVERWRITE};
|
|
|
|
uint8_t qlock_set(uint8_t col, uint8_t row, uint8_t matrix[col][row], uint8_t hour, uint8_t minute);
|
|
|
|
#endif /* INCLUDE_QLOCK_H_ */
|