You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
atmega-geiger/src/user_interface.h

27 lines
398 B

2 years ago
/**
* UI
*/
#ifndef CPROJ_USER_INTERFACE_H
#define CPROJ_USER_INTERFACE_H
#define DISPLAY_W 128
#define DISPLAY_H 32
#include <stdint.h>
#include <stdbool.h>
void clear_screen();
2 years ago
void init_user_interface();
void show_current_radiation();
void show_empty_battery();
void show_loading_screen(uint8_t progress_percent, bool clear);
2 years ago
void turn_off_display();
2 years ago
#endif //CPROJ_USER_INTERFACE_H