14 lines
185 B
C
14 lines
185 B
C
#ifndef HELPER_FN_H
|
|
#define HELPER_FN_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
struct NotableDay {
|
|
int month;
|
|
int day;
|
|
String notableDays[5];
|
|
};
|
|
|
|
String getNotableDay(int month, int day);
|
|
|
|
#endif |