2fae95bdfb
* Implement simple bar widget * Make it easier to create new examples * Add bar example * Add README to examples * Remove unnecessary imports
25 lines
464 B
C
25 lines
464 B
C
/*
|
|
* Copyright (C) 2018 Koen Zandberg <koen@bergzand.net>
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
#ifndef _APP_FONTS_NOTO_SANS_NUMERIC_80_H
|
|
#define _APP_FONTS_NOTO_SANS_NUMERIC_80_H
|
|
|
|
#include "lvgl/lvgl.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
extern lv_font_t noto_sans_numeric_80;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|
|
|