MMM-HomeAssistant-Touch/UIClasses/Cover.js
2021-04-05 01:10:15 +02:00

15 lines
344 B
JavaScript

class Cover extends Slider {
updateState(state) {
this.name = (state.attributes || {}).friendly_name || this.id;
this.state = state.attributes.current_position;
this.render();
}
sendNewState() {
this.mm.sendSocketNotification("SET_COVER_POSITION", {
entity: this.id,
position: this.sliderState,
});
}
}