Events
-
Push Button
- press
- release
-
Toggle Button
- set_true
- set_false
-
Meter Needle
value_change
-
Progress Bar
value_change
-
Slider
value_change
-
Touch area
touch
Functions
- layout_change_to_layout
layout_change_to_layout(&Change Layout widget array index)
- image_set_image
image_set_image(&Image widget name, "gallery idx")
- animation_set_frame_idx
animation_set_frame_idx(&Animation widget name, "frame idx")
- animation_set_animation
animation_set_animation(&Animation widget name, "gallery idx")
- text_set_text
text_set_text(&Text widget name, "value")
- text_set_text_color
text_set_text_color(&Text widget name, "Red decimal", "Green decimal", "Blue decimal")
- meter_needle_set_value
meter_needle_set_value(&Meter Needle widget name, "value")
- progress_bar_set_value
progress_bar_set_value(&Progress Bar widget name, "value")
- slider_set_value
slider_set_value(&Slider widget name, "value")
- set_backlight
set_backlight("value")
- buzzle_set_frequency
buzzle_set_frequency("value")
- PWM_set_frequency
PWM_set_frequency("value")
- PWM_set_percentage
PWM_set_percentage("value")
- UART_transfer_message
UART_transfer_message(array, "array length")
Exmaple: transfer data "1", "2", "3" from UART
- First parameter: uint8_t tmp[3] = {0x31, 0x32, 0x33};
- Second parameter: 3
- USB_transfer_message
USB_transfer_message(array, "array length")
Exmaple: transfer data "1", "2", "3" from USB
- First parameter: uint8_t tmp[3] = {0x31, 0x32, 0x33};
- Second parameter: 3