add Arduino library files

This commit is contained in:
Gabor Kiss-Vamosi
2020-06-28 20:10:05 +02:00
parent 421f1b2c01
commit d0db0bab5c
2 changed files with 49 additions and 0 deletions

10
library.properties Normal file
View File

@@ -0,0 +1,10 @@
name=lvgl
version=7.0.2
author=kisvegabor
maintainer=Pavel Brychta <pablo@xpablo.cz>
sentence=Full-featured Graphics Library for Embedded Systems
paragraph=Powerful and easy-to-use embedded GUI with many widgets, advanced visual effects (opacity, antialiasing, animations) and low memory requirements (16K RAM, 64K Flash).
category=Display
url=https://lvgl.io
architectures=*
includes=lvgl.h

39
src/lvgl.h Normal file
View File

@@ -0,0 +1,39 @@
/**
* @file lvgl.h
* This file exists only to be compatible with Arduino's library structure
*/
#ifndef LVGL_SRC_H
#define LVGL_SRC_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "../lvgl.h"
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
/**********************
* MACROS
**********************/
#ifdef __cplusplus
}
#endif
#endif /*LVGL_SRC_H*/