Fixx service calls

This commit is contained in:
Yegor Vialov
2019-11-08 19:37:41 +00:00
parent 139533d2ca
commit 551a8dfa31
21 changed files with 227 additions and 136 deletions

View File

@ -3,17 +3,26 @@ part of '../../../main.dart';
class CoverStateWidget extends StatelessWidget {
void _open(CoverEntity entity) {
ConnectionManager().callService(
entity.domain, "open_cover", entity.entityId, null);
domain: entity.domain,
service: "open_cover",
entityId: entity.entityId
);
}
void _close(CoverEntity entity) {
ConnectionManager().callService(
entity.domain, "close_cover", entity.entityId, null);
domain: entity.domain,
service: "close_cover",
entityId: entity.entityId
);
}
void _stop(CoverEntity entity) {
ConnectionManager().callService(
entity.domain, "stop_cover", entity.entityId, null);
domain: entity.domain,
service: "stop_cover",
entityId: entity.entityId
);
}
@override