homebridge-tuya-plus 3.11.2 → 3.11.3-beta.1

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.
@@ -8,7 +8,7 @@ const BaseAccessory = require('./BaseAccessory');
8
8
  // Without the delay between the stop and open/close command some controllers
9
9
  // drop the direction command because it arrives before they have
10
10
  // finished processing the stop.
11
- const STOP_TO_DIRECTION_DELAY_MS = 500;
11
+ const STOP_TO_DIRECTION_DELAY_MS = 1000;
12
12
 
13
13
  // Delay between the direction command and flipping CurrentDoorState. The
14
14
  // device has no position feedback so this is purely cosmetic — it keeps
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homebridge-tuya-plus",
3
- "version": "3.11.2",
3
+ "version": "3.11.3-beta.1",
4
4
  "description": "A community-maintained Homebridge plugin for controlling Tuya devices locally over LAN. Includes new features, fixes, and updated device support.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -5,7 +5,7 @@ const { HAP, makeInstance } = require('./support/mocks');
5
5
 
6
6
  const { CurrentDoorState: CDS, TargetDoorState: TDS } = HAP.Characteristic;
7
7
 
8
- const STOP_TO_DIRECTION_DELAY_MS = 500;
8
+ const STOP_TO_DIRECTION_DELAY_MS = 1000;
9
9
  const CURRENT_STATE_DELAY_MS = 1000;
10
10
  const TOTAL_DELAY_MS = STOP_TO_DIRECTION_DELAY_MS + CURRENT_STATE_DELAY_MS;
11
11