Continued work on bridge

This commit is contained in:
Neil Dorin
2019-09-16 16:36:24 -06:00
parent af7d97efef
commit 1257dde4ce
2 changed files with 23 additions and 4 deletions

View File

@@ -222,14 +222,14 @@ namespace PepperDash.Essentials.Devices.Common.Occupancy
OccSensor.DecrementPirSensitivityInVacantState.BoolValue = pressRelease;
}
public void ForceOccupied(bool state)
public void ForceOccupied()
{
OccSensor.ForceOccupied.BoolValue = state;
OccSensor.ForceOccupied.BoolValue = true;
}
public void ForceVacant(bool state)
public void ForceVacant()
{
OccSensor.ForceVacant.BoolValue = state;
OccSensor.ForceVacant.BoolValue = true;
}
public void EnableRawStates(bool state)