11 lines
191 B
C
11 lines
191 B
C
#pragma once
|
|
|
|
#include "platform.h"
|
|
|
|
void button_init(void);
|
|
extern volatile int button_pressed[BUTTON_COUNT];
|
|
|
|
int get_battery_percentage(void);
|
|
int is_charging(void);
|
|
int is_plugged(void);
|