async function turnOff(device, deviceFeature) {
  logger.debug(`Turning off the light of deviceFeature "${deviceFeature.selector}"`);
  await this.deviceManager.setValue(device, deviceFeature, STATE.OFF);
  this.eventManager.emit(EVENTS.LIGHT.TURNED_OFF, { device, deviceFeature });
}