(ESP-IDF)LVGL 对接 EC11
EC11旋转编码器驱动 本驱动核心: 滚动检测:利用检测滚动一次整个周期的 AB 电平变化来判断滚动一次 读取滚动方向函数:用于对接 LVGL。 #include "ec11.h" #include "driver/gpio.h" int8_t enc = 0; int
(ESP-IDF)LVGL 对接键盘接口
初始化键盘配置 void lv_port_indev_init(void) { static lv_indev_drv_t indev_drv; keypad_init(); lv_indev_drv_init(&indev_drv); indev_drv.type = LV_IN
(ESP-IDF)LVGL创建对象
创建一个对象 #include "lvpage_setting.h" #include "lvgl.h" #include "esp_log.h" static char *
(ESP-IDF)LVGL 移植
通用对接方法 LVGL源码 https://github.com/lvgl/lvgl/tree/release/v8.3 主要文件 // 其余文件根据自己需要 - examples - env_support - src lv_conf.h lvgl.h 接口对接 examples中port文件夹
(Linux)算丰学院
https://www.sophgo.com/case-center/index.html?type=&orient=&source=&page=30&per-page=9
(Linux)Docker 中开启 SSH
安装SSH apt-get install -y openssh-server 配置 SSH nano /etc/ssh/sshd_config PermitRootLogin yes PasswordAuthentication yes 重启 SSH service ssh restart 启动