- Fix glitch when turning on WiFi: It would temporarily show "No networks found" right before starting the first scan. - Fix spinner to use Assets.h - Replace statusbar battery icons - Better statusbar icon for when WiFi is on but not connected - Replace statusbar WiFi icons and Wifi Manage RSSI/lock icons - Fix for crash when timer is null in I2cScanner - Deprecate Spacer - Fixes for toolbar layout (simplified) - Improved ImageViewer app: center image and add filename text on the bottom - Add LV debug params to sdkconfig.developer - Disabled LV spinner, msgbox and window widgets. These have equivalents in Tactility.
13 lines
247 B
C++
13 lines
247 B
C++
#include "lvgl.h"
|
|
|
|
namespace tt::lvgl {
|
|
|
|
/**
|
|
* Create the Tactility spinner widget
|
|
* @param parent pointer to an object, it will be the parent of the new spinner.
|
|
* @return the created spinner
|
|
*/
|
|
lv_obj_t* spinner_create(lv_obj_t* parent);
|
|
|
|
}
|