homebridge-tasmota-control 1.7.10-beta.2 → 1.7.10-beta.3
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.
- package/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -151,7 +151,7 @@ class tasmotaPlatform {
|
|
|
151
151
|
//start impulse generator
|
|
152
152
|
const timers = [{ name: 'checkState', sampling: refreshInterval }];
|
|
153
153
|
if (remoteTemperatureSensorEnable) timers.push({ name: 'updateRemoteTemp', sampling: remoteTemperatureSensorRefreshInterval });
|
|
154
|
-
await deviceType.impulseGenerator(true, timers);
|
|
154
|
+
await deviceType.impulseGenerator.state(true, timers);
|
|
155
155
|
|
|
156
156
|
//stop impulse generator
|
|
157
157
|
await impulseGenerator.state(false);
|
package/package.json
CHANGED