12 lines
333 B
C
12 lines
333 B
C
#ifndef RENDER_FUNCTIONS_H
|
|
#define RENDER_FUNCTIONS_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
int show_string_on_clock(String message, uint32_t color);
|
|
String split(String s, char parser, int index);
|
|
String time_to_string(uint8_t hours, uint8_t minutes);
|
|
void draw_minute_indicator(uint8_t minutes, uint32_t color);
|
|
|
|
#endif /* RENDER_FUNCTIONS_H */
|