Adding the already exting code

This commit is contained in:
Kiss-Vamosi Gabor
2016-06-08 07:25:08 +02:00
commit 791a5a7ef5
52 changed files with 65923 additions and 0 deletions

38
lvgl.h Normal file
View File

@@ -0,0 +1,38 @@
/**
* @file lvgl.h
* Include all LittleV GL related headers
*/
#ifndef LV_GL_H
#define LV_GL_H
/*********************
* INCLUDES
*********************/
#include "lv_obj/lv_obj.h"
#include "lv_objx/lv_btn.h"
#include "lv_objx/lv_img.h"
#include "lv_objx/lv_label.h"
#include "lv_objx/lv_line.h"
#include "lv_objx/lv_page.h"
#include "lv_objx/lv_rect.h"
/*********************
* DEFINES
*********************/
#define LV_GL_VERSION_MAJOR 1
#define LV_GL_VERSION_MINOR 0
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
/**********************
* MACROS
**********************/
#endif