Update ConfigurationService.cs

pull/128/head
Nico Hirsch 3 years ago committed by GitHub
parent cb8ce6b8b3
commit e54a2d6f9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -129,6 +129,9 @@ namespace hass_workstation_service.Data
case "WebcamActiveSensor":
sensor = new WebcamActiveSensor(publisher, configuredSensor.UpdateInterval, configuredSensor.Name, configuredSensor.Id);
break;
case "WebcamProcessSensor":
sensor = new WebcamProcessSensor(publisher, configuredSensor.UpdateInterval, configuredSensor.Name, configuredSensor.Id);
break;
case "MicrophoneActiveSensor":
sensor = new MicrophoneActiveSensor(publisher, configuredSensor.UpdateInterval, configuredSensor.Name, configuredSensor.Id);
break;
@ -619,4 +622,4 @@ namespace hass_workstation_service.Data
return this.ConfiguredSensors;
}
}
}
}

Loading…
Cancel
Save