blob: 260f140c55dcd31b3f2dc853aa08a433f870c827 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef PROMETHIUM_H
#define PROMETHIUM_H
#include "stdint.h"
void battery_poll(uint8_t level);
void led_set_kb(uint8_t usb_led);
void led_set_user(uint8_t usb_led);
#endif
|