aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/filters/html-converters/md2html
blob: 5cab749037e37fe289ccd30fa4f624d3137532e4 (plain)
1
2
#!/bin/sh
exec "$(dirname "$0")/resources/markdown.pl"
{ color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#ifndef __MAIN_CLOCK_H__
#define __MAIN_CLOCK_H__

#include "pico/util/datetime.h"
#include "../oled/ss_oled.h"

#include "../api.hpp"

namespace app_main_clock {
    int init(Api *app_api);
    int render(Api *app_api);
    int btnpressed(Api *app_api, uint gpio, unsigned long delta);
    int bgrefresh(Api *app_api, bool in_foreground);
    int destroy(Api *app_api);
}

#endif