You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
371 B
13 lines
371 B
local analogTime = lvgl.AnalogTime(nil, {
|
|
border_width = 0,
|
|
x = lvgl.HOR_RES() // 2,
|
|
y = lvgl.VER_RES() // 2,
|
|
hands = {
|
|
hour = SCRIPT_PATH .. "/assets/hand-hour.png",
|
|
minute = SCRIPT_PATH .. "/assets/hand-minute.png",
|
|
second = SCRIPT_PATH .. "/assets/hand-second.png",
|
|
},
|
|
period = 33,
|
|
})
|
|
|
|
print("analogTime: ", analogTime)
|
|
|