Resolves #145 Fan support

This commit is contained in:
Yegor Vialov
2018-11-24 17:00:45 +02:00
parent a36c7a9ca3
commit 5f3c77f4b9
6 changed files with 180 additions and 9 deletions

View File

@ -80,6 +80,9 @@ class EntityCollection {
case "cover": {
return CoverEntity(rawEntityData);
}
case "fan": {
return FanEntity(rawEntityData);
}
default: {
return Entity(rawEntityData);
}