Question
Inquire about how to set the scroll wheel step change.
hello
The scroll wheel is set and used as follows.
void ScrTopSetView::scrollWheel_ScrTopSet_minuteUpdateCenterItem(CustomContainer_temp_wheel& item, int16_t itemIndex)
{
// Override and implement this function in ScrTopSet
int data;
minute = itemIndex;
Unicode::snprintf(textArea_ScrTopSet_nMinuteBuffer, TEXTAREA_SCRTOPSET_NMINUTE_SIZE, "%02d", (minute ));
textArea_ScrTopSet_nMinute.invalidate();
}
One step at a time is good.
I need a configuration that changes by 1 step or 10 steps depending on the setting value, but I am not sure how to set the 10 step change.
I'd like to know how to set the level at which the scroll wheel changes.
thank.
