summaryrefslogtreecommitdiffstats
path: root/movement/widgets/clock/simple_clock_widget.h
blob: 3bf4c9a329a854cb9613e8d3230b932be614c8de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef SIMPLE_CLOCK_WIDGET_H_
#define SIMPLE_CLOCK_WIDGET_H_

#include "movement.h"

void simple_clock_widget_setup(LauncherSettings *settings, void ** context_ptr);
void simple_clock_widget_activate(LauncherSettings *settings, void *context);
bool simple_clock_widget_loop(LauncherEvent event, LauncherSettings *settings, void *context);
void simple_clock_widget_resign(LauncherSettings *settings, void *context);

uint8_t simple_clock_widget_get_weekday(uint16_t day, uint16_t month, uint16_t year);

#define simple_clock_widget { \
    simple_clock_widget_setup, \
    simple_clock_widget_activate, \
    simple_clock_widget_loop, \
    simple_clock_widget_resign, \
}

#endif // FAKE_WIDGET_H_