I’d like to be able to create meters in a project…something like a ‘traditional’ speedometer.
LVGL 8,x has a Meter Widget, but SLS doesn’t support that either.
LVGL 9.1 abandoned the meter widget in favor of a Scale Widget.
Th Scale Widget also allows vertical or horizontal scales to implement linear, thermometer-like objects.
Hi, you can create a fully custom analog meter/gauge similar to how the hand/pointer is implemented in the Smartwatch demo’s analog screen. Here’s how to approach it:
Create the meter widget’s background using an image
Create the pointer/hand as a separate image
Use rotation on the pointer image to achieve the meter functionality
This method gives you complete control over the appearance and behavior of your meter, making it a viable alternative to the deprecated Meter Widget or the new Scale Widget.