code stringlengths 1 1.05M | repo_name stringlengths 6 83 | path stringlengths 3 242 | language stringclasses 222
values | license stringclasses 20
values | size int64 1 1.05M |
|---|---|---|---|---|---|
/**
* @file GC9A01.c
*
*/
/*********************
* INCLUDES
*********************/
#include "GC9A01.h"
#include "disp_spi.h"
#include "driver/gpio.h"
#include "esp_log.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
/*********************
* DEFINES
*********************/
#define TAG "GC... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/GC9A01.c | C | apache-2.0 | 6,232 |
/**
* @file lv_templ.h
*
*/
#ifndef GC9A01_H
#define GC9A01_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include <stdbool.h>
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#include "../lvgl_helpers.h"
/**********... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/GC9A01.h | C | apache-2.0 | 1,021 |
/**
* @file disp_driver.c
*/
#include "disp_driver.h"
#include "disp_spi.h"
#include "esp_lcd_backlight.h"
#include "sdkconfig.h"
void *disp_driver_init(void)
{
#if defined CONFIG_LV_TFT_DISPLAY_CONTROLLER_ILI9341
ili9341_init();
#elif defined CONFIG_LV_TFT_DISPLAY_CONTROLLER_ILI9481
ili9481_init();
#elif d... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/disp_driver.c | C | apache-2.0 | 5,308 |
/**
* @file disp_driver.h
*/
#ifndef DISP_DRIVER_H
#define DISP_DRIVER_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#if defined CONFIG_LV_TFT_DISPLAY_CONTROLLER_ILI9341... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/disp_driver.h | C | apache-2.0 | 2,412 |
/**
* @file disp_spi.c
*
*/
/*********************
* INCLUDES
*********************/
#include "esp_system.h"
#include "driver/gpio.h"
#include "driver/spi_master.h"
#include "esp_log.h"
#define TAG "disp_spi"
#include <string.h>
#include <freertos/FreeRTOS.h>
#include <freertos/semphr.h>
#include <freerto... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/disp_spi.c | C | apache-2.0 | 10,530 |
/**
* @file disp_spi.h
*
*/
#ifndef DISP_SPI_H
#define DISP_SPI_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include <stdint.h>
#include <stdbool.h>
#include <driver/spi_master.h>
/*********************
* DEFINES
*********************/
/*******... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/disp_spi.h | C | apache-2.0 | 2,533 |
/**
* @file esp_lcd_backlight.c
*
*/
/*********************
* INCLUDES
*********************/
#include "esp_lcd_backlight.h"
#include "driver/ledc.h"
#include "driver/gpio.h"
#include "esp_log.h"
#include "soc/ledc_periph.h" // to invert LEDC output on IDF version < v4.3
typedef struct {
bool pwm_contro... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/esp_lcd_backlight.c | C | apache-2.0 | 3,522 |
/**
* @file esp_lcd_backlight.h
*/
#ifndef ESP_LCD_BACKLIGHT_H
#define ESP_LCD_BACKLIGHT_H
/*********************
* INCLUDES
*********************/
#include <stdbool.h>
#ifdef __cplusplus
extern "C" { /* extern "C" */
#endif
/**********************
* GLOBAL PROTOTYPES
**********************/
/**
* @bri... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/esp_lcd_backlight.h | C | apache-2.0 | 1,623 |
/**
* @file HX8357.c
*
* Roughly based on the Adafruit_HX8357_Library
*
* This library should work with:
* Adafruit 3.5" TFT 320x480 + Touchscreen Breakout
* http://www.adafruit.com/products/2050
*
* Adafruit TFT FeatherWing - 3.5" 480x320 Touchscreen for Feathers
* https://www.adafruit.com/product/3651... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/hx8357.c | C | apache-2.0 | 8,091 |
/**
* @file HX8357.h
*
* Roughly based on the Adafruit_HX8357_Library
*
* This library should work with:
* Adafruit 3.5" TFT 320x480 + Touchscreen Breakout
* http://www.adafruit.com/products/2050
*
* Adafruit TFT FeatherWing - 3.5" 480x320 Touchscreen for Feathers
* https://www.adafruit.com/product/3651... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/hx8357.h | C | apache-2.0 | 4,904 |
/**
@file il3820.c
@brief Waveshare e-paper 2.9in b/w display
@version 1.0
@date 2020-05-29
@author Juergen Kienhoefer
@section LICENSE
MIT License
Copyright (c) 2020 Juergen Kienhoefer
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation ... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/il3820.c | C | apache-2.0 | 12,863 |
/**
* @file il3820.h
*
*/
#ifndef IL3820_H
#define IL3820_H
#ifdef __cplusplus
extern "C"
{
#endif
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#include "sdkconfig.h"
/* Values for Waveshare 2.9inch e-Paper Module, this values shouldn't be
* swapped to change display ori... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/il3820.h | C | apache-2.0 | 3,572 |
/**
* @file ILI9163C.c
*
*/
/*********************
* INCLUDES
*********************/
#include "ili9163c.h"
#include "disp_spi.h"
#include "driver/gpio.h"
#include "esp_log.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "assert.h"
/*********************
* DEFINES
***************... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/ili9163c.c | C | apache-2.0 | 6,943 |
/**
* @file lv_templ.h
*
*/
#ifndef ILI9163C_H
#define ILI9163C_H
#ifdef __cplusplus
extern "C"
{
#endif
/*********************
* INCLUDES
*********************/
#include <stdbool.h>
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#include "../lvgl_helpers.h"
/******... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/ili9163c.h | C | apache-2.0 | 985 |
/**
* @file ili9341.c
*
*/
/*********************
* INCLUDES
*********************/
#include "ili9341.h"
#include "disp_spi.h"
#include "driver/gpio.h"
#include "esp_log.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
/*********************
* DEFINES
*********************/
#define TAG "... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/ili9341.c | C | apache-2.0 | 5,519 |
/**
* @file lv_templ.h
*
*/
#ifndef ILI9341_H
#define ILI9341_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include <stdbool.h>
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#include "sdkconfig.h"
/*************... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/ili9341.h | C | apache-2.0 | 1,015 |
/**
* @file ili9481.c
*/
/*********************
* INCLUDES
*********************/
#include "ili9481.h"
#include "disp_spi.h"
#include "driver/gpio.h"
#include "esp_log.h"
#include "esp_heap_caps.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
/*********************
* DEFINES
************... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/ili9481.c | C | apache-2.0 | 5,903 |
/**
* @file ili9481.h
*/
#ifndef ILI9481_H
#define ILI9481_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include <stdbool.h>
#include <stdint.h>
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#include "../lvgl_helpe... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/ili9481.h | C | apache-2.0 | 4,436 |
/**
* @file mpi3501.c
*
*/
/*********************
* INCLUDES
*********************/
#include "ili9486.h"
#include "disp_spi.h"
#include "driver/gpio.h"
#include "esp_log.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
/*********************
* DEFINES
*********************/
#define TAG "... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/ili9486.c | C | apache-2.0 | 4,604 |
/**
* @file ili9486.h
*
*/
#ifndef ILI9486_H
#define ILI9486_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include <stdbool.h>
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#include "../lvgl_helpers.h"
/*********... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/ili9486.h | C | apache-2.0 | 902 |
/**
* @file ili9488.c
*/
/*********************
* INCLUDES
*********************/
#include "ili9488.h"
#include "disp_spi.h"
#include "driver/gpio.h"
#include "esp_log.h"
#include "esp_heap_caps.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
/*********************
* DEFINES
************... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/ili9488.c | C | apache-2.0 | 6,147 |
/**
* @file ili9488.h
*/
#ifndef ILI9844_H
#define ILI9844_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include <stdbool.h>
#include <stdint.h>
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#include "../lvgl_helpe... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/ili9488.h | C | apache-2.0 | 6,534 |
/**
@file jd79653a.c
@brief GoodDisplay GDEW0154M09 e-paper display w/ FitiPower JD79653A
@version 1.0
@date 2020-08-28
@author Jackson Ming Hu <huming2207@gmail.com>
@section LICENSE
MIT License
Copyright (c) 2020 Jackson Ming Hu
Permission is hereby granted, free of charge, to any person obtaining a copy o... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/jd79653a.c | C | apache-2.0 | 15,843 |
/**
* @file il3820.h
*
*/
#ifndef JD79653A_H
#define JD79653A_H
#ifdef __cplusplus
extern "C"
{
#endif
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
void jd79653a_init();
void jd79653a_deep_sleep();
void jd79653a_lv_set_fb_cb(struct _disp_drv_t * disp_drv, uint8_t* buf, l... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/jd79653a.h | C | apache-2.0 | 792 |
/**
* @file ra8875.c
*
*/
/*********************
* INCLUDES
*********************/
#include "ra8875.h"
#include "disp_spi.h"
#include "driver/gpio.h"
#include "esp_log.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
/*********************
* DEFINES
*********************/
#define DEBUG fa... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/ra8875.c | C | apache-2.0 | 12,102 |
/**
* @file ra8875.h
*
*/
#ifndef RA8875_H
#define RA8875_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include <stdbool.h>
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
/*********************
* DEFINES
**... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/ra8875.h | C | apache-2.0 | 4,921 |
/**
* @file sh1107.c
*
*/
/*********************
* INCLUDES
*********************/
#include "sh1107.h"
#include "disp_spi.h"
#include "driver/gpio.h"
#include "esp_log.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
/*********************
* DEFINES
*********************/
#define TAG "SH... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/sh1107.c | C | apache-2.0 | 6,287 |
/**
* @file lv_templ.h
*
*/
#ifndef SH1107_H
#define SH1107_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include <stdbool.h>
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#include "../lvgl_helpers.h"
/**********... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/sh1107.h | C | apache-2.0 | 1,172 |
/**
* @file ssd1306.c
*
* Code from https://github.com/yanbe/ssd1306-esp-idf-i2c.git is used as a starting point,
* in addition to code from https://github.com/espressif/esp-iot-solution.
*
* Definitions are borrowed from:
* http://robotcantalk.blogspot.com/2015/03/interfacing-arduino-with-ssd1306-driven.html
*... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/ssd1306.c | C | apache-2.0 | 6,703 |
/**
* @file lv_templ.h
*
*/
#ifndef SSD1306_H
#define SSD1306_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include <stdbool.h>
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#include "../lvgl_helpers.h"
/********... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/ssd1306.h | C | apache-2.0 | 1,098 |
/**
* @file st7735s.c
*
*/
/*********************
* INCLUDES
*********************/
#include "st7735s.h"
#include "disp_spi.h"
#include "driver/gpio.h"
#include "esp_log.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#ifdef CONFIG_LV_M5STICKC_HANDLE_AXP192
#include "lvgl_i2c/i2c_manager.h"... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/st7735s.c | C | apache-2.0 | 8,080 |
/**
* @file lv_templ.h
*
*/
#ifndef ST7735S_H
#define ST7735S_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include <stdbool.h>
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
/*********************
* DEFINES
... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/st7735s.h | C | apache-2.0 | 3,615 |
/**
* @file st7789.c
*
* Mostly taken from lbthomsen/esp-idf-littlevgl github.
*/
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "sdkconfig.h"
#include "esp_log.h"
#include "st7789.h"
#include "disp_spi.h"
#include "driver/gpio.h"
/*********************
* DEFINES
********************... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/st7789.c | C | apache-2.0 | 6,237 |
/**
* @file st7789.h
*
* Mostly taken from lbthomsen/esp-idf-littlevgl github.
*/
#ifndef ST7789_H
#define ST7789_H
#ifdef __cplusplus
extern "C"
{
#endif
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#include "../lvgl_helpers.h"
#include "sdkconfig.h"
#define ST7789_DC ... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/st7789.h | C | apache-2.0 | 4,551 |
/**
* @file st7796s.c
*
*/
/*********************
* INCLUDES
*********************/
#include "st7796s.h"
#include "disp_spi.h"
#include "driver/gpio.h"
#include "esp_log.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
/*********************
* DEFINES
*********************/
#define TAG "S... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/st7796s.c | C | apache-2.0 | 5,377 |
/**
* @file st7796s.h
*/
#ifndef ST7796S_H
#define ST7796S_H
#ifdef __cplusplus
extern "C"
{
#endif
/*********************
* INCLUDES
*********************/
#include <stdbool.h>
#include <stdint.h>
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#include "../lvgl_helpe... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/st7796s.h | C | apache-2.0 | 3,593 |
/**
@file uc8151d.c
@brief GoodDisplay GDEW0154M10 DES e-paper display w/ UltraChip UC8151D
@version 1.0
@date 2020-08-28
@author Jackson Ming Hu <huming2207@gmail.com>
@section LICENSE
MIT License
Copyright (c) 2020 Jackson Ming Hu
Permission is hereby granted, free of ch... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/uc8151d.c | C | apache-2.0 | 8,377 |
/**
@file uc8151d.h
@brief GoodDisplay GDEW0154M09 e-paper display w/ FitiPower JD79653A
@version 1.0
@date 2020-08-28
@author Jackson Ming Hu <huming2207@gmail.com>
@section LICENSE
MIT License
Copyright (c) 2020 Jackson Ming Hu
Permission is hereby granted, free of charg... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_tft/uc8151d.h | C | apache-2.0 | 1,803 |
/**
* @file FT81x.c
*/
/*********************
* INCLUDES
*********************/
#include "esp_system.h"
#include "esp_log.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "driver/gpio.h"
#include <stddef.h>
#include "FT81x.h"
#include "../lvgl_tft/EVE.h"
#include "../lvgl_tft/EVE_comma... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_touch/FT81x.c | C | apache-2.0 | 1,601 |
/**
* @file STMPE610.h
*/
#ifndef FT81X_TOUCH__H
#define FT81X_TOUCH__H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include <stdint.h>
#include <stdbool.h>
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
/**********... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_touch/FT81x.h | C | apache-2.0 | 715 |
/**
* @file ADCRAW.c
*/
#include "adcraw.h"
#include "esp_system.h"
#include "esp_log.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "driver/gpio.h"
#include <stddef.h>
#if CONFIG_LV_TOUCH_CONTROLLER_ADCRAW
#define TAG "ADCRAW"
#define CALIBRATIONINSET 1 // range 0 <= CALIBRATIONINSET <= 40
... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_touch/adcraw.c | C | apache-2.0 | 8,130 |
/**
* @file ADCRAW.h
*/
#ifndef ADCRAW_H
#define ADCRAW_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
#include <stdbool.h>
#include "driver/gpio.h"
#include "driver/adc.h"
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#define TOUCHSCREEN_RESISTIVE_PIN_YU CONFIG... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_touch/adcraw.h | C | apache-2.0 | 1,826 |
/*
* Copyright © 2020 Wolfgang Christl
* Permission is hereby granted, free of charge, to any person obtaining a copy of this
* software and associated documentation files (the “Software”), to deal in the Software
* without restriction, including without limitation the rights to use, copy, modify, merge,
* publi... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_touch/ft6x36.c | C | apache-2.0 | 4,984 |
#ifndef __FT6X06_H
/*
* Copyright © 2020 Wolfgang Christl
* Permission is hereby granted, free of charge, to any person obtaining a copy of this
* software and associated documentation files (the “Software”), to deal in the Software
* without restriction, including without limitation the rights to use, copy, mod... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_touch/ft6x36.h | C | apache-2.0 | 6,731 |
/*
* Copyright © 2021 Sturnus Inc.
* Permission is hereby granted, free of charge, to any person obtaining a copy of this
* software and associated documentation files (the “Software”), to deal in the Software
* without restriction, including without limitation the rights to use, copy, modify, merge,
* publis... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_touch/gt911.c | C | apache-2.0 | 5,823 |
#ifndef __GT911_H
/*
* Copyright © 2021 Sturnus Inc.
* Permission is hereby granted, free of charge, to any person obtaining a copy of this
* software and associated documentation files (the “Software”), to deal in the Software
* without restriction, including without limitation the rights to use, copy, modify... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_touch/gt911.h | C | apache-2.0 | 3,238 |
/**
* @file RA8875_TOUCH.c
*/
/*********************
* INCLUDES
*********************/
#include "esp_log.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include <stddef.h>
#include "ra8875_touch.h"
#include "../lvgl_tft/ra8875.h"
#ifndef CONFIG_LV_TFT_DISPLAY_CONTROLLER_RA8875
#error "Di... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_touch/ra8875_touch.c | C | apache-2.0 | 4,607 |
/**
* @file RA8875_TOUCH.h
*/
#ifndef RA8875X_TOUCH__H
#define RA8875X_TOUCH__H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include <stdint.h>
#include <stdbool.h>
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
/**... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_touch/ra8875_touch.h | C | apache-2.0 | 1,151 |
/**
* @file STMPE610.c
*/
/*********************
* INCLUDES
*********************/
#include "stmpe610.h"
#include "esp_system.h"
#include "esp_log.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "driver/gpio.h"
#include "tp_spi.h"
#include <stddef.h>
/*********************
* DEFIN... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_touch/stmpe610.c | C | apache-2.0 | 5,798 |
/**
* @file STMPE610.h
*/
#ifndef STMPE610_H
#define STMPE610_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include <stdint.h>
#include <stdbool.h>
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
/******************... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_touch/stmpe610.h | C | apache-2.0 | 4,894 |
/**
* @file touch_driver.c
*/
#include "touch_driver.h"
#include "tp_spi.h"
#include "ft6x36.h"
void touch_driver_init(void)
{
#if defined (CONFIG_LV_TOUCH_CONTROLLER_XPT2046)
xpt2046_init();
#elif defined (CONFIG_LV_TOUCH_CONTROLLER_FT6X06)
ft6x06_init(FT6236_I2C_SLAVE_ADDR);
#elif defined (CONFIG_LV_TOUC... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_touch/touch_driver.c | C | apache-2.0 | 1,574 |
/**
* @file touch_driver.h
*/
#ifndef TOUCH_DRIVER_H
#define TOUCH_DRIVER_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include <stdint.h>
#include <stdbool.h>
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#if defi... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_touch/touch_driver.h | C | apache-2.0 | 1,232 |
/**
* @file tp_spi.c
*
*/
/*********************
* INCLUDES
*********************/
#include "tp_spi.h"
#include "touch_driver.h"
#include "esp_system.h"
#include "driver/gpio.h"
#include "driver/spi_master.h"
#include <string.h>
#include "../lvgl_helpers.h"
#include "../lvgl_spi_conf.h"
/******************... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_touch/tp_spi.c | C | apache-2.0 | 2,382 |
/**
* @file tp_spi.h
*
*/
#ifndef TP_SPI_H
#define TP_SPI_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include <stdint.h>
#include <driver/spi_master.h>
/*********************
* DEFINES
*********************/
/**********************
* TYP... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_touch/tp_spi.h | C | apache-2.0 | 903 |
/**
* @file XPT2046.c
*
*/
/*********************
* INCLUDES
*********************/
#include "xpt2046.h"
#include "esp_system.h"
#include "esp_log.h"
#include "driver/gpio.h"
#include "tp_spi.h"
#include <stddef.h>
/*********************
* DEFINES
*********************/
#define TAG "XPT2046"
#define... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_touch/xpt2046.c | C | apache-2.0 | 5,054 |
/**
* @file XPT2046.h
*
*/
#ifndef XPT2046_H
#define XPT2046_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include <stdint.h>
#include <stdbool.h>
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
/******************... | YifuLiu/AliOS-Things | components/little_ui/driver/lvgl_esp32_drivers/lvgl_touch/xpt2046.h | C | apache-2.0 | 1,449 |
if(ESP_PLATFORM)
file(GLOB_RECURSE SOURCES lv_demos/src/*.c)
idf_component_register(SRCS ${SOURCES}
INCLUDE_DIRS .
REQUIRES lvgl)
else()
message(FATAL_ERROR "LVGL LV examples: ESP_PLATFORM is not defined. Try reinstalling ESP-IDF.")
endif()
| YifuLiu/AliOS-Things | components/little_ui/example/demo/CMakeLists.txt | CMake | apache-2.0 | 294 |
#
# Component Makefile
#
CFLAGS += -DLV_LVGL_H_INCLUDE_SIMPLE
COMPONENT_SRCDIRS := lv_demos \
lv_demos/src/lv_demo_benchmark \
lv_demos/src/lv_demo_keypad_encoder \
lv_demos/src/demo_stress \
lv_demos/src/lv_demo_widgets \
lv_demos/src/lv_ex_style \
... | YifuLiu/AliOS-Things | components/little_ui/example/demo/component.mk | Makefile | apache-2.0 | 431 |
/**
* @file lv_demo_conf.h
* Configuration file for v8.1.0-dev
*
*/
/*
* COPY THIS FILE AS lv_demo_conf.h
*/
#if 1 /*Set it to "1" to enable the content*/
#ifndef LV_DEMO_CONF_H
#define LV_DEMO_CONF_H
/*******************
* GENERAL SETTING
*******************/
#define LV_EX_PRINTF 0 /*Enable pri... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demo_conf.h | C | apache-2.0 | 1,426 |
file(GLOB_RECURSE SOURCES src/*.c)
add_library(lv_examples STATIC ${SOURCES})
| YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/CMakeLists.txt | CMake | apache-2.0 | 78 |
/**
* @file lv_examples.h
*
*/
#ifndef LV_DEMO_H
#define LV_DEMO_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
#include "lvgl.h"
#else
#include "../lvgl/lvgl.h"
#endif
#if defined(LV_DEMO_CONF_PATH)
#define __LV_TO_S... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/lv_demo.h | C | apache-2.0 | 1,266 |
CSRCS += $(shell find -L $(LVGL_DIR)/lv_demos -name "*.c")
| YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/lv_demo.mk | Makefile | apache-2.0 | 59 |
/**
* @file lv_demo_conf.h
* Configuration file for v8.1.0-dev
*
*/
/*
* COPY THIS FILE AS lv_demo_conf.h
*/
#if 0 /*Set it to "1" to enable the content*/
#ifndef LV_DEMO_CONF_H
#define LV_DEMO_CONF_H
/*******************
* GENERAL SETTING
*******************/
#define LV_EX_PRINTF 0 /*Enable pri... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/lv_demo_conf_template.h | C | apache-2.0 | 1,426 |
#!/bin/bash
set -e
mkdir -p objs
cd objs
echo "-- Updating builder ..."
OBJS_DIR=`pwd`
if ! [ -d builder ]; then
git clone --quiet --recursive https://github.com/lvgl/lv_sim_emscripten.git builder
cd builder
else
cd builder
git pull --quiet
fi
cd lv_examples
echo "-- Checking out lv_examples $GITHUB_SHA ..."
gi... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/scripts/build_all_examples.sh | Shell | apache-2.0 | 1,147 |
#!/bin/bash
find src -name \*.h | xargs grep -h "void lv" | sed 's/(/ /g' | awk '{print $2}'
| YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/scripts/genexamplestxt.sh | Shell | apache-2.0 | 94 |
#!/opt/bin/lv_micropython -i
try:
import sys
except ImportError:
import usys as sys
# JS requires a special import
if sys.platform == 'javascript':
import utime as time
import imp
sys.path.append('https://raw.githubusercontent.com/littlevgl/lv_binding_micropython/master/lib')
import display_driver
else:
... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/header.py | Python | apache-2.0 | 375 |
/**
* @file lv_examples.h
* This file exists only to be compatible with Arduino's library structure
*/
#ifndef LV_DEMO_SRC_H
#define LV_DEMO_SRC_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "../lv_demo.h"
/*********************
* DEFINES... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo.h | C | apache-2.0 | 622 |
#include "../../lv_demo.h"
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_IMG_COGWHEEL_ALPHA16
#define LV_ATTRIBUTE_IMG_IMG_COGWHEEL_ALPHA16
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG_IMG_COGWHEEL_ALPHA16 uint8_t img_benchmark_cogwheel_alpha16_map[] = {
0x00... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_benchmark/assets/img_benchmark_cogwheel_alpha16.c | C | apache-2.0 | 30,844 |
#include "../../lv_demo.h"
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_IMG_COGWHEEL_CHROMA_KEYED
#define LV_ATTRIBUTE_IMG_IMG_COGWHEEL_CHROMA_KEYED
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG_IMG_COGWHEEL_CHROMA_KEYED uint8_t img_benchmark_cogwheel_chroma_ke... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_benchmark/assets/img_benchmark_cogwheel_chroma_keyed.c | C | apache-2.0 | 542,285 |
#include "../../lv_demo.h"
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_IMG_COGWHEEL_INDEXED16
#define LV_ATTRIBUTE_IMG_IMG_COGWHEEL_INDEXED16
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG_IMG_COGWHEEL_INDEXED16 uint8_t img_benchmark_cogwheel_indexed16_map[] = ... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_benchmark/assets/img_benchmark_cogwheel_indexed16.c | C | apache-2.0 | 31,633 |
#include "../../lv_demo.h"
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_IMG_COGWHEEL_RGB
#define LV_ATTRIBUTE_IMG_IMG_COGWHEEL_RGB
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG_IMG_COGWHEEL_RGB uint8_t img_benchmark_cogwheel_rgb_map[] = {
#if LV_COLOR_DEPTH == ... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_benchmark/assets/img_benchmark_cogwheel_rgb.c | C | apache-2.0 | 542,218 |
#include "../../lv_demo.h"
/*******************************************************************************
* Size: 12 px
* Bpp: 4
* Opts:
******************************************************************************/
#ifndef LV_FONT_BENCHMARK_MONTSERRAT_12_COMPR_AZ
#define LV_FONT_BENCHMARK_MONTSERRAT_12_COMPR... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_benchmark/assets/lv_font_montserrat_12_compr_az.c | C | apache-2.0 | 10,880 |
#include "../../lv_demo.h"
/*******************************************************************************
* Size: 16 px
* Bpp: 4
* Opts:
******************************************************************************/
#ifndef LV_FONT_BENCHMARK_MONTSERRAT_16_COMPR_AZ
#define LV_FONT_BENCHMARK_MONTSERRAT_16_COMPR... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_benchmark/assets/lv_font_montserrat_16_compr_az.c | C | apache-2.0 | 12,836 |
#include "../../lv_demo.h"
/*******************************************************************************
* Size: 28 px
* Bpp: 4
* Opts:
******************************************************************************/
#ifndef LV_FONT_BENCHMARK_MONTSERRAT_28_COMPR_AZ
#define LV_FONT_BENCHMARK_MONTSERRAT_28_COMPR... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_benchmark/assets/lv_font_montserrat_28_compr_az.c | C | apache-2.0 | 20,368 |
/**
* @file lv_demo_benchmark.c
*
*/
/*********************
* INCLUDES
*********************/
#include "../../lv_demo.h"
#include "lv_demo_benchmark.h"
#if LV_USE_DEMO_BENCHMARK
/*********************
* DEFINES
*********************/
#define RND_NUM 64
#define SCENE_TIME 1000 /*ms*... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_benchmark/lv_demo_benchmark.c | C | apache-2.0 | 36,060 |
/**
* @file lv_demo_benchmark.h
*
*/
#ifndef LV_DEMO_BENCHMARK_H
#define LV_DEMO_BENCHMARK_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
***********... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_benchmark/lv_demo_benchmark.h | C | apache-2.0 | 577 |
/**
* @file lv_demo_keypad_encoder.c
*
*/
/*********************
* INCLUDES
*********************/
#include "../lv_demo.h"
#include "lv_demo_keypad_encoder.h"
#if LV_USE_DEMO_KEYPAD_AND_ENCODER
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
*******... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_keypad_encoder/lv_demo_keypad_encoder.c | C | apache-2.0 | 6,618 |
/**
* @file lv_demo_keypad_encoder.h
*
*/
#ifndef LV_DEMO_KEYPAD_ENCODER_H
#define LV_DEMO_KEYPAD_ENCODER_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
/*********************
* DEFINES
*********************/
/**********************
* TYPEDE... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_keypad_encoder/lv_demo_keypad_encoder.h | C | apache-2.0 | 602 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_IMG_LV_DEMO_MUSIC_BTN_CORNER
#define LV_ATTRIBUTE_IMG_IMG_LV_DEMO_MUSIC_BTN_CORNER
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_A... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_btn_corner_large.c | C | apache-2.0 | 75,309 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_btn_list_pause_map[] = {
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
/*Pixel format: Alpha 8 bit, Red: 3 bit, Gr... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_btn_list_pause.c | C | apache-2.0 | 252,249 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_btn_list_play_map[] = {
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
/*Pixel format: Alpha 8 bit, Red: 3 bit, Gre... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_btn_list_play.c | C | apache-2.0 | 252,246 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_btn_loop_map[] = {
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
/*Pixel format: Alpha 8 bit, Red: 3 bit, Green: 3... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_btn_loop.c | C | apache-2.0 | 42,710 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_IMG_LV_DEMO_MUSIC_BTN_LOOP
#define LV_ATTRIBUTE_IMG_IMG_LV_DEMO_MUSIC_BTN_LOOP
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRI... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_btn_loop_large.c | C | apache-2.0 | 97,522 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_btn_next_map[] = {
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
/*Pixel format: Alpha 8 bit, Red: 3 bit, Green: 3... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_btn_next.c | C | apache-2.0 | 278,463 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_btn_pause_map[] = {
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
/*Pixel format: Alpha 8 bit, Red: 3 bit, Green: ... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_btn_pause.c | C | apache-2.0 | 439,854 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_btn_play_map[] = {
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
/*Pixel format: Alpha 8 bit, Red: 3 bit, Green: 3... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_btn_play.c | C | apache-2.0 | 439,851 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_btn_prev_map[] = {
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
/*Pixel format: Alpha 8 bit, Red: 3 bit, Green: 3... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_btn_prev.c | C | apache-2.0 | 278,463 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_btn_rnd_map[] = {
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
/*Pixel format: Alpha 8 bit, Red: 3 bit, Green: 3 ... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_btn_rnd.c | C | apache-2.0 | 42,707 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_IMG_LV_DEMO_MUSIC_BTN_RND
#define LV_ATTRIBUTE_IMG_IMG_LV_DEMO_MUSIC_BTN_RND
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBU... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_btn_rnd_large.c | C | apache-2.0 | 97,517 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_corner_left_map[] = {
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
/*Pixel format: Alpha 8 bit, Red: 3 bit, Green... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_corner_left.c | C | apache-2.0 | 24,503 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_IMG_LV_DEMO_MUSIC_CORNER_1
#define LV_ATTRIBUTE_IMG_IMG_LV_DEMO_MUSIC_CORNER_1
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATT... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_corner_left_large.c | C | apache-2.0 | 75,310 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_corner_right_map[] = {
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
/*Pixel format: Alpha 8 bit, Red: 3 bit, Gree... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_corner_right.c | C | apache-2.0 | 24,506 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_IMG_LV_DEMO_MUSIC_CORNER_2
#define LV_ATTRIBUTE_IMG_IMG_LV_DEMO_MUSIC_CORNER_2
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATT... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_corner_right_large.c | C | apache-2.0 | 75,313 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_icon_1_map[] = {
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 b... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_icon_1.c | C | apache-2.0 | 32,350 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_IMG_LV_DEMO_MUSIC_ICN_CHART
#define LV_ATTRIBUTE_IMG_IMG_LV_DEMO_MUSIC_ICN_CHART
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_A... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_icon_1_large.c | C | apache-2.0 | 66,345 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_icon_2_map[] = {
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 b... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_icon_2.c | C | apache-2.0 | 32,350 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_IMG_LV_DEMO_MUSIC_ICN_CHAT
#define LV_ATTRIBUTE_IMG_IMG_LV_DEMO_MUSIC_ICN_CHAT
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATT... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_icon_2_large.c | C | apache-2.0 | 70,745 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_icon_3_map[] = {
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 b... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_icon_3.c | C | apache-2.0 | 32,350 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_IMG_LV_DEMO_MUSIC_ICN_DOWNLOAD
#define LV_ATTRIBUTE_IMG_IMG_LV_DEMO_MUSIC_ICN_DOWNLOAD
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONS... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_icon_3_large.c | C | apache-2.0 | 79,913 |
#include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_icon_4_map[] = {
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 b... | YifuLiu/AliOS-Things | components/little_ui/example/demo/lv_demos/src/lv_demo_music/assets/img_lv_demo_music_icon_4.c | C | apache-2.0 | 32,350 |