This commit is contained in:
Elias Ahokas
2025-10-15 20:51:21 +03:00
parent 901b8b4362
commit 022b5eb412
5 changed files with 1488 additions and 1 deletions

View File

@@ -3,6 +3,10 @@
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#define LV_CONF_INCLUDE_SIMPLE 1
#include "lv_conf.h"
#include "lvgl.h"
#define I2C_SCL 1 /*FIXME*/
#define I2C_SDA 2
@@ -95,6 +99,8 @@ void init_display(void){
void app_main(void){
init_i2c();
init_display();
lv_init();
}