hoffmation-base 3.0.0-alpha.75 → 3.0.0-alpha.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -192,9 +192,6 @@ class OwnGoveeDevice {
|
|
|
192
192
|
});
|
|
193
193
|
}
|
|
194
194
|
turnOn() {
|
|
195
|
-
if (this._actuatorOn) {
|
|
196
|
-
return;
|
|
197
|
-
}
|
|
198
195
|
this.queuedValue = true;
|
|
199
196
|
govee_service_1.GooveeService.sendCommand(this, `on/true`).then((result) => {
|
|
200
197
|
if (!result) {
|
|
@@ -206,9 +203,6 @@ class OwnGoveeDevice {
|
|
|
206
203
|
});
|
|
207
204
|
}
|
|
208
205
|
turnOff() {
|
|
209
|
-
if (!this._actuatorOn) {
|
|
210
|
-
return;
|
|
211
|
-
}
|
|
212
206
|
this.queuedValue = false;
|
|
213
207
|
govee_service_1.GooveeService.sendCommand(this, `on/false`).then((result) => {
|
|
214
208
|
if (!result) {
|