Resolves #146 Lock support

This commit is contained in:
Yegor Vialov
2018-11-23 19:18:17 +02:00
parent fc8f2f200f
commit 809a1a1c8c
5 changed files with 51 additions and 0 deletions

View File

@ -44,6 +44,9 @@ class EntityCollection {
case 'sensor': {
return SensorEntity(rawEntityData);
}
case 'lock': {
return LockEntity(rawEntityData);
}
case "automation":
case "input_boolean":
case "switch": {