Add lv_spinbox functions to TactilityC (#349)

This commit is contained in:
Ken Van Hoeylandt
2025-09-27 19:49:27 +02:00
committed by GitHub
parent f6cdabf3c0
commit 98bbea3e9c
+16
View File
@@ -526,6 +526,22 @@ const esp_elfsym elf_symbols[] {
// lv_pct
ESP_ELFSYM_EXPORT(lv_pct),
ESP_ELFSYM_EXPORT(lv_pct_to_px),
// lv_spinbox
ESP_ELFSYM_EXPORT(lv_spinbox_create),
ESP_ELFSYM_EXPORT(lv_spinbox_decrement),
ESP_ELFSYM_EXPORT(lv_spinbox_get_rollover),
ESP_ELFSYM_EXPORT(lv_spinbox_get_step),
ESP_ELFSYM_EXPORT(lv_spinbox_get_value),
ESP_ELFSYM_EXPORT(lv_spinbox_increment),
ESP_ELFSYM_EXPORT(lv_spinbox_set_rollover),
ESP_ELFSYM_EXPORT(lv_spinbox_set_step),
ESP_ELFSYM_EXPORT(lv_spinbox_set_range),
ESP_ELFSYM_EXPORT(lv_spinbox_set_digit_format),
ESP_ELFSYM_EXPORT(lv_spinbox_set_digit_step_direction),
ESP_ELFSYM_EXPORT(lv_spinbox_set_value),
ESP_ELFSYM_EXPORT(lv_spinbox_set_cursor_pos),
ESP_ELFSYM_EXPORT(lv_spinbox_step_next),
ESP_ELFSYM_EXPORT(lv_spinbox_step_prev),
// delimiter
ESP_ELFSYM_END
};