Temporarily just logging button presses, as alarms module doesn't yet exist.
17 lines
239 B
C
17 lines
239 B
C
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* Copyright (c) Camden Dixie O'Brien
|
|
*/
|
|
|
|
#ifndef BUTTONS_H
|
|
#define BUTTONS_H
|
|
|
|
typedef void (*ButtonCallback)(void);
|
|
|
|
/**
|
|
* Initialize the buttons module.
|
|
*/
|
|
void buttons_init(void);
|
|
|
|
#endif
|