Lines Matching refs:to
10 will crash. This module provides this service as simulated random input to stress
22 Next, declare a variable (it can be local) of type :c:type:`lv_monkey_config_t` to
24 :cpp:expr:`lv_monkey_config_init(cfg)` then set its ``type`` member to the desired
26 ``period_range`` and ``input_range`` members to set the time ranges (in milliseconds)
27 and input ranges the Monkey module will use to generate random input at random times.
29 Next, call :cpp:expr:`lv_monkey_create(cfg)` to create the Monkey. It returns a
30 pointer to the ``lv_monkey_t`` created.
32 Finally call :cpp:expr:`lv_monkey_set_enable(monkey, true)` to enable Monkey.
34 If you want to pause the monkey, call
43 Use :cpp:func:`lv_monkey_get_indev` to get the input device, and use
44 :cpp:func:`lv_indev_set_button_points` to map the key ID to the coordinates.