homebridge-tasmota-control 1.6.15-beta.0 → 1.6.15-beta.10

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.
@@ -519,7 +519,7 @@
519
519
  "title": "Mode",
520
520
  "type": "integer",
521
521
  "minimum": 0,
522
- "maximum": 53,
522
+ "maximum": 60,
523
523
  "default": 0,
524
524
  "description": "Here select function.",
525
525
  "oneOf": [
@@ -560,25 +560,19 @@
560
560
  ]
561
561
  },
562
562
  {
563
- "title": "MODE PURIFY (not implemented)",
564
- "enum": [
565
- 6
566
- ]
567
- },
568
- {
569
- "title": "VANE H AUTO",
563
+ "title": "VANE H LEFT",
570
564
  "enum": [
571
565
  10
572
566
  ]
573
567
  },
574
568
  {
575
- "title": "VANE H LEFT",
569
+ "title": "VANE H LEFT MIDDLE",
576
570
  "enum": [
577
571
  11
578
572
  ]
579
573
  },
580
574
  {
581
- "title": "VANE H LEFT MIDDLE",
575
+ "title": "VANE H LEFT CENTER",
582
576
  "enum": [
583
577
  12
584
578
  ]
@@ -590,29 +584,35 @@
590
584
  ]
591
585
  },
592
586
  {
593
- "title": "VANE H RIGHT MIDDLE",
587
+ "title": "VANE H RIGHT",
594
588
  "enum": [
595
589
  14
596
590
  ]
597
591
  },
598
592
  {
599
- "title": "VANE H RIGHT",
593
+ "title": "VANE H RIGHT MIDDLE",
600
594
  "enum": [
601
595
  15
602
596
  ]
603
597
  },
604
598
  {
605
- "title": "VANE H SPLIT",
599
+ "title": "VANE H RIGHT CENTER",
606
600
  "enum": [
607
601
  16
608
602
  ]
609
603
  },
610
604
  {
611
- "title": "VANE H SWING",
605
+ "title": "VANE H SPLIT",
612
606
  "enum": [
613
607
  17
614
608
  ]
615
609
  },
610
+ {
611
+ "title": "VANE H SWING",
612
+ "enum": [
613
+ 18
614
+ ]
615
+ },
616
616
  {
617
617
  "title": "VANE V AUTO",
618
618
  "enum": [
@@ -692,25 +692,25 @@
692
692
  ]
693
693
  },
694
694
  {
695
- "title": "AIR DIRECTION EVEN (only as sensor now)",
695
+ "title": "AIR DIRECTION INDIRECT",
696
696
  "enum": [
697
697
  40
698
698
  ]
699
699
  },
700
700
  {
701
- "title": "AIR DIRECTION INDIRECT (only as sensor now)",
701
+ "title": "AIR DIRECTION DIRECT",
702
702
  "enum": [
703
703
  41
704
704
  ]
705
705
  },
706
706
  {
707
- "title": "AIR DIRECTION DIRECT (only as sensor now)",
707
+ "title": "AIR DIRECTION EVEN",
708
708
  "enum": [
709
709
  42
710
710
  ]
711
711
  },
712
712
  {
713
- "title": "AIR DIRECTION OFF (only as sensor now)",
713
+ "title": "AIR DIRECTION OFF",
714
714
  "enum": [
715
715
  43
716
716
  ]
@@ -738,6 +738,12 @@
738
738
  "enum": [
739
739
  53
740
740
  ]
741
+ },
742
+ {
743
+ "title": "PURIFY (not implemented)",
744
+ "enum": [
745
+ 60
746
+ ]
741
747
  }
742
748
  ],
743
749
  "required": false
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "Tasmota Control",
3
3
  "name": "homebridge-tasmota-control",
4
- "version": "1.6.15-beta.0",
4
+ "version": "1.6.15-beta.10",
5
5
  "description": "Homebridge plugin to control Tasmota flashed devices.",
6
6
  "license": "MIT",
7
7
  "author": "grzegorz914",
package/src/constants.js CHANGED
@@ -34,7 +34,6 @@ export const MiElHVAC = {
34
34
  "cool": "HVACSetMode%20cool",
35
35
  "fan": "HVACSetMode%20fan",
36
36
  "auto": "HVACSetMode%20auto",
37
- "purify": "HVACSetMode%20purify"
38
37
  },
39
38
  "SetFanSpeed": {
40
39
  "auto": "HVACSetFanSpeed%20auto",
@@ -55,20 +54,21 @@ export const MiElHVAC = {
55
54
  "swing": "HVACSetSwingV%20swing"
56
55
  },
57
56
  "SetSwingH": {
58
- "auto": "HVACSetSwingH%20auto",
59
57
  "left": "HVACSetSwingH%20left",
60
58
  "left_middle": "HVACSetSwingH%20left_middle",
59
+ "left_center": "HVACSetSwingH%20left_center",
61
60
  "center": "HVACSetSwingH%20center",
62
- "right_middle": "HVACSetSwingH%20right_middle",
63
61
  "right": "HVACSetSwingH%20right",
62
+ "right_middle": "HVACSetSwingH%20right_middle",
63
+ "right_center": "HVACSetSwingH%20right_center",
64
64
  "split": "HVACSetSwingH%20split",
65
65
  "swing": "HVACSetSwingH%20swing",
66
66
  },
67
67
  "SetAirDirection": {
68
- "even": "HVACSetSwingH%20even",
69
- "indirect": "HVACSetSwingH%20indirect",
70
- "direct": "HVACSetSwingH%20direct",
71
- "off": "HVACSetSwingH%20off"
68
+ "indirect": "HVACSetAirDirection%20indirect",
69
+ "direct": "HVACSetAirDirection%20direct",
70
+ "even": "HVACSetAirDirection%20even",
71
+ "off": "HVACSetAirDirection%20off"
72
72
  },
73
73
  "SetProhibit": {
74
74
  "off": "HVACSetProhibit%20off",
@@ -84,6 +84,9 @@ export const MiElHVAC = {
84
84
  "c": "HVACSetDisplayUnit%20c",
85
85
  "f": "HVACSetDisplayUnit%20f"
86
86
  },
87
+ "SetPurify": {
88
+ "purify": "HVACSetPurify%20purify"
89
+ },
87
90
  "RemoteTemp": "HVACRemoteTemp%20",
88
91
  "RemoteTempClearTime": "HVACRemoteTempClearTime%20",
89
92
  "OperationMode": [