PowerTimer-Firmware/src/sseg.h

13 lines
192 B
C
Raw Normal View History

#ifndef SSEG_H
#define SSEG_H
#include <stdint.h>
#include <stdbool.h>
void sseg_init(void);
void sseg_loop(void);
void sseg_set_char(uint8_t seg, char c, bool with_dot);
#endif // SSEG_H