/** * @file get_started.ino * @author Lewis He (lewishe@outlook.com) * @license MIT * @copyright Copyright (c) 2023 Shenzhen Xinyuan Electronic Technology Co., Ltd * @date 2023-04-30 * */ #include #include #include "lv_get_started.h" void setup() { Serial.begin(115200); watch.begin(); beginLvglHelper(); //Tips : Select a separate function to see the effect lv_example_get_started_1(); // lv_example_get_started_2(); // lv_example_get_started_3(); } void loop() { lv_task_handler(); delay(5); }