Restructuring, refactoring.

This commit is contained in:
2023-08-22 14:32:09 +02:00
parent 200a27fd06
commit e9f95591bc
5 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
#ifndef WORDCLOCK_FUNCTIONS_H
#define WORDCLOCK_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 /* WORDCLOCK_FUNCTIONS_H */