homebridge-tasmota-control 1.6.15-beta.1 → 1.6.15-beta.11

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,19 +560,19 @@
560
560
  ]
561
561
  },
562
562
  {
563
- "title": "MODE PURIFY (not implemented)",
563
+ "title": "VANE H LEFT",
564
564
  "enum": [
565
- 6
565
+ 10
566
566
  ]
567
567
  },
568
568
  {
569
- "title": "VANE H LEFT",
569
+ "title": "VANE H LEFT MIDDLE",
570
570
  "enum": [
571
571
  11
572
572
  ]
573
573
  },
574
574
  {
575
- "title": "VANE H LEFT MIDDLE",
575
+ "title": "VANE H LEFT CENTER",
576
576
  "enum": [
577
577
  12
578
578
  ]
@@ -584,29 +584,35 @@
584
584
  ]
585
585
  },
586
586
  {
587
- "title": "VANE H RIGHT MIDDLE",
587
+ "title": "VANE H RIGHT",
588
588
  "enum": [
589
589
  14
590
590
  ]
591
591
  },
592
592
  {
593
- "title": "VANE H RIGHT",
593
+ "title": "VANE H RIGHT MIDDLE",
594
594
  "enum": [
595
595
  15
596
596
  ]
597
597
  },
598
598
  {
599
- "title": "VANE H SPLIT",
599
+ "title": "VANE H RIGHT CENTER",
600
600
  "enum": [
601
601
  16
602
602
  ]
603
603
  },
604
604
  {
605
- "title": "VANE H SWING",
605
+ "title": "VANE H SPLIT",
606
606
  "enum": [
607
607
  17
608
608
  ]
609
609
  },
610
+ {
611
+ "title": "VANE H SWING",
612
+ "enum": [
613
+ 18
614
+ ]
615
+ },
610
616
  {
611
617
  "title": "VANE V AUTO",
612
618
  "enum": [
@@ -686,23 +692,29 @@
686
692
  ]
687
693
  },
688
694
  {
689
- "title": "AIR DIRECTION EVEN",
695
+ "title": "AIR DIRECTION INDIRECT",
690
696
  "enum": [
691
697
  40
692
698
  ]
693
699
  },
694
700
  {
695
- "title": "AIR DIRECTION INDIRECT",
701
+ "title": "AIR DIRECTION DIRECT",
696
702
  "enum": [
697
703
  41
698
704
  ]
699
705
  },
700
706
  {
701
- "title": "AIR DIRECTION DIRECT",
707
+ "title": "AIR DIRECTION EVEN",
702
708
  "enum": [
703
709
  42
704
710
  ]
705
711
  },
712
+ {
713
+ "title": "AIR DIRECTION OFF",
714
+ "enum": [
715
+ 43
716
+ ]
717
+ },
706
718
  {
707
719
  "title": "LOCK CONTROL All (only as sensor now)",
708
720
  "enum": [
@@ -726,6 +738,12 @@
726
738
  "enum": [
727
739
  53
728
740
  ]
741
+ },
742
+ {
743
+ "title": "PURIFY (not implemented)",
744
+ "enum": [
745
+ 60
746
+ ]
729
747
  }
730
748
  ],
731
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.1",
4
+ "version": "1.6.15-beta.11",
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",
@@ -57,20 +56,19 @@ export const MiElHVAC = {
57
56
  "SetSwingH": {
58
57
  "left": "HVACSetSwingH%20left",
59
58
  "left_middle": "HVACSetSwingH%20left_middle",
59
+ "left_center": "HVACSetSwingH%20left_center",
60
60
  "center": "HVACSetSwingH%20center",
61
- "right_middle": "HVACSetSwingH%20right_middle",
62
61
  "right": "HVACSetSwingH%20right",
62
+ "right_middle": "HVACSetSwingH%20right_middle",
63
+ "right_center": "HVACSetSwingH%20right_center",
63
64
  "split": "HVACSetSwingH%20split",
64
65
  "swing": "HVACSetSwingH%20swing",
65
- "even": "HVACSetSwingH%20even",
66
- "indirect": "HVACSetSwingH%20indirect",
67
- "direct": "HVACSetSwingH%20direct",
68
66
  },
69
67
  "SetAirDirection": {
70
- "even": "HVACSetSwingH%20even",
71
- "indirect": "HVACSetSwingH%20indirect",
72
- "direct": "HVACSetSwingH%20direct",
73
- "off": "HVACSetSwingH%20off"
68
+ "indirect": "HVACSetAirDirection%20indirect",
69
+ "direct": "HVACSetAirDirection%20direct",
70
+ "even": "HVACSetAirDirection%20even",
71
+ "off": "HVACSetAirDirection%20off"
74
72
  },
75
73
  "SetProhibit": {
76
74
  "off": "HVACSetProhibit%20off",
@@ -86,6 +84,9 @@ export const MiElHVAC = {
86
84
  "c": "HVACSetDisplayUnit%20c",
87
85
  "f": "HVACSetDisplayUnit%20f"
88
86
  },
87
+ "SetPurify": {
88
+ "purify": "HVACSetPurify%20purify"
89
+ },
89
90
  "RemoteTemp": "HVACRemoteTemp%20",
90
91
  "RemoteTempClearTime": "HVACRemoteTempClearTime%20",
91
92
  "OperationMode": [