use of de.mossgrabers.framework.controller.IValueChanger in project DrivenByMoss by git-moss.
the class AccentMode method updateDisplay1.
/**
* {@inheritDoc}
*/
@Override
public void updateDisplay1() {
final int fixedAccentValue = this.surface.getConfiguration().getFixedAccentValue();
final IValueChanger valueChanger = this.model.getValueChanger();
final Display d = this.surface.getDisplay();
d.clear().setCell(0, 7, "Accent").setCell(1, 7, fixedAccentValue, Format.FORMAT_RAW).setCell(2, 7, valueChanger.toDAWValue(fixedAccentValue), Format.FORMAT_VALUE).allDone();
}
Aggregations