23 lines
368 B
C
23 lines
368 B
C
/**
|
|
* Copyright 2021 Johannes Marbach
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
|
|
#ifndef BB_BUFFYBOARD_H
|
|
#define BB_BUFFYBOARD_H
|
|
|
|
#include "lvgl/lvgl.h"
|
|
|
|
#ifndef BB_VERSION
|
|
#define BB_VERSION "?" /* Just to silence IDE warning. Real version injected by meson during build. */
|
|
#endif
|
|
|
|
|
|
/**
|
|
* Fonts
|
|
*/
|
|
|
|
LV_FONT_DECLARE(font_32);
|
|
|
|
#endif /* BB_BUFFYBOARD_H */
|