} else if (command == OnOffType.OFF) {
controller.switchOff(config.getUnit());
} else if (command == IncreaseDecreaseType.INCREASE) {
controller.bright(config.getUnit(), config.getSeconds());
} else if (command == IncreaseDecreaseType.DECREASE) {
controller.dim(config.getUnit(), config.getSeconds());
} else if (command == StopMoveType.STOP) {
controller.fadeStop(config.getUnit());
} else if (command == UpDownType.UP) {
controller.switchOn(config.getUnit());
} else if (command == UpDownType.DOWN) {