3dfc27e93e
- Fixes for colours and margins in GPIO app - Removed unused imports
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);
|
|
|
|
}
|