homebridge-melcloud-control 4.0.0-beta.225 → 4.0.0-beta.227
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/config.schema.json +87 -82
- package/package.json +1 -1
package/config.schema.json
CHANGED
|
@@ -1950,104 +1950,109 @@
|
|
|
1950
1950
|
"type": "tabarray",
|
|
1951
1951
|
"title": "{{ value.name }}",
|
|
1952
1952
|
"items": [
|
|
1953
|
-
"accounts[].atwDevices[].displayType",
|
|
1954
1953
|
{
|
|
1955
|
-
"
|
|
1956
|
-
"title": "Settings",
|
|
1957
|
-
"expandable": true,
|
|
1958
|
-
"expanded": false,
|
|
1954
|
+
"key": "accounts[].atwDevices[]",
|
|
1959
1955
|
"items": [
|
|
1956
|
+
"accounts[].atwDevices[].displayType",
|
|
1960
1957
|
{
|
|
1961
|
-
"
|
|
1962
|
-
"
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
"
|
|
1966
|
-
|
|
1958
|
+
"type": "section",
|
|
1959
|
+
"title": "Settings",
|
|
1960
|
+
"expandable": true,
|
|
1961
|
+
"expanded": false,
|
|
1962
|
+
"items": [
|
|
1963
|
+
{
|
|
1964
|
+
"key": "accounts[].atwDevices[].id",
|
|
1965
|
+
"readonly": true
|
|
1966
|
+
},
|
|
1967
|
+
{
|
|
1968
|
+
"key": "accounts[].atwDevices[].type",
|
|
1969
|
+
"readonly": true
|
|
1970
|
+
},
|
|
1971
|
+
{
|
|
1972
|
+
"key": "accounts[].atwDevices[].typeString",
|
|
1973
|
+
"readonly": true
|
|
1974
|
+
},
|
|
1975
|
+
"accounts[].atwDevices[].hideZone",
|
|
1976
|
+
"accounts[].atwDevices[].name",
|
|
1977
|
+
"accounts[].atwDevices[].refreshInterval"
|
|
1978
|
+
],
|
|
1979
|
+
"condition": {
|
|
1980
|
+
"functionBody": "return model.accounts[arrayIndices[0]].atwDevices[arrayIndices[1]].displayType > 0;"
|
|
1981
|
+
}
|
|
1967
1982
|
},
|
|
1968
1983
|
{
|
|
1969
|
-
"
|
|
1970
|
-
"
|
|
1984
|
+
"title": "Temperature Sensors",
|
|
1985
|
+
"type": "section",
|
|
1986
|
+
"expandable": true,
|
|
1987
|
+
"expanded": false,
|
|
1988
|
+
"items": [
|
|
1989
|
+
"accounts[].atwDevices[].temperatureSensor",
|
|
1990
|
+
"accounts[].atwDevices[].temperatureSensorFlow",
|
|
1991
|
+
"accounts[].atwDevices[].temperatureSensorReturn",
|
|
1992
|
+
"accounts[].atwDevices[].temperatureSensorFlowZone1",
|
|
1993
|
+
"accounts[].atwDevices[].temperatureSensorReturnZone1",
|
|
1994
|
+
"accounts[].atwDevices[].temperatureSensorFlowWaterTank",
|
|
1995
|
+
"accounts[].atwDevices[].temperatureSensorReturnWaterTank",
|
|
1996
|
+
"accounts[].atwDevices[].temperatureSensorFlowZone2",
|
|
1997
|
+
"accounts[].atwDevices[].temperatureSensorReturnZone2"
|
|
1998
|
+
],
|
|
1999
|
+
"condition": {
|
|
2000
|
+
"functionBody": "return model.accounts[arrayIndices[0]].atwDevices[arrayIndices[1]].displayType > 0;"
|
|
2001
|
+
}
|
|
1971
2002
|
},
|
|
1972
|
-
"accounts[].atwDevices[].hideZone",
|
|
1973
|
-
"accounts[].atwDevices[].name",
|
|
1974
|
-
"accounts[].atwDevices[].refreshInterval"
|
|
1975
|
-
],
|
|
1976
|
-
"condition": {
|
|
1977
|
-
"functionBody": "return model.accounts[arrayIndices[0]].atwDevices[arrayIndices[1]].displayType > 0;"
|
|
1978
|
-
}
|
|
1979
|
-
},
|
|
1980
|
-
{
|
|
1981
|
-
"title": "Temperature Sensors",
|
|
1982
|
-
"type": "section",
|
|
1983
|
-
"expandable": true,
|
|
1984
|
-
"expanded": false,
|
|
1985
|
-
"items": [
|
|
1986
|
-
"accounts[].atwDevices[].temperatureSensor",
|
|
1987
|
-
"accounts[].atwDevices[].temperatureSensorFlow",
|
|
1988
|
-
"accounts[].atwDevices[].temperatureSensorReturn",
|
|
1989
|
-
"accounts[].atwDevices[].temperatureSensorFlowZone1",
|
|
1990
|
-
"accounts[].atwDevices[].temperatureSensorReturnZone1",
|
|
1991
|
-
"accounts[].atwDevices[].temperatureSensorFlowWaterTank",
|
|
1992
|
-
"accounts[].atwDevices[].temperatureSensorReturnWaterTank",
|
|
1993
|
-
"accounts[].atwDevices[].temperatureSensorFlowZone2",
|
|
1994
|
-
"accounts[].atwDevices[].temperatureSensorReturnZone2"
|
|
1995
|
-
],
|
|
1996
|
-
"condition": {
|
|
1997
|
-
"functionBody": "return model.accounts[arrayIndices[0]].atwDevices[arrayIndices[1]].displayType > 0;"
|
|
1998
|
-
}
|
|
1999
|
-
},
|
|
2000
|
-
{
|
|
2001
|
-
"title": "Presets",
|
|
2002
|
-
"type": "section",
|
|
2003
|
-
"expandable": true,
|
|
2004
|
-
"expanded": false,
|
|
2005
|
-
"items": [
|
|
2006
2003
|
{
|
|
2007
|
-
"
|
|
2008
|
-
"type": "
|
|
2009
|
-
"
|
|
2004
|
+
"title": "Presets",
|
|
2005
|
+
"type": "section",
|
|
2006
|
+
"expandable": true,
|
|
2007
|
+
"expanded": false,
|
|
2010
2008
|
"items": [
|
|
2011
2009
|
{
|
|
2012
|
-
"key": "accounts[].atwDevices[].presets
|
|
2013
|
-
"
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
"items": [
|
|
2010
|
+
"key": "accounts[].atwDevices[].presets",
|
|
2011
|
+
"type": "tabarray",
|
|
2012
|
+
"title": "{{ value.name }}",
|
|
2013
|
+
"items": [
|
|
2014
|
+
{
|
|
2015
|
+
"key": "accounts[].atwDevices[].presets[].id",
|
|
2016
|
+
"readonly": true
|
|
2017
|
+
},
|
|
2018
|
+
"accounts[].atwDevices[].presets[].displayType",
|
|
2019
|
+
"accounts[].atwDevices[].presets[].name",
|
|
2020
|
+
"accounts[].atwDevices[].presets[].namePrefix"
|
|
2021
|
+
]
|
|
2022
|
+
}
|
|
2023
|
+
],
|
|
2024
|
+
"condition": {
|
|
2025
|
+
"functionBody": "return model.accounts[arrayIndices[0]].atwDevices[arrayIndices[1]].displayType > 0;"
|
|
2026
|
+
}
|
|
2027
|
+
},
|
|
2031
2028
|
{
|
|
2032
|
-
"
|
|
2033
|
-
"type": "
|
|
2034
|
-
"
|
|
2029
|
+
"title": "Buttons / Sensors",
|
|
2030
|
+
"type": "section",
|
|
2031
|
+
"expandable": true,
|
|
2032
|
+
"expanded": false,
|
|
2035
2033
|
"items": [
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2034
|
+
{
|
|
2035
|
+
"key": "accounts[].atwDevices[].buttonsSensors",
|
|
2036
|
+
"type": "tabarray",
|
|
2037
|
+
"title": "{{ value.name || 'button/sensor' }}",
|
|
2038
|
+
"items": [
|
|
2039
|
+
"accounts[].atwDevices[].buttonsSensors[].displayType",
|
|
2040
|
+
"accounts[].atwDevices[].buttonsSensors[].mode",
|
|
2041
|
+
"accounts[].atwDevices[].buttonsSensors[].name",
|
|
2042
|
+
"accounts[].atwDevices[].buttonsSensors[].namePrefix"
|
|
2043
|
+
]
|
|
2044
|
+
}
|
|
2045
|
+
],
|
|
2046
|
+
"condition": {
|
|
2047
|
+
"functionBody": "return model.accounts[arrayIndices[0]].atwDevices[arrayIndices[1]].displayType > 0;"
|
|
2048
|
+
}
|
|
2041
2049
|
}
|
|
2042
2050
|
],
|
|
2043
2051
|
"condition": {
|
|
2044
|
-
"functionBody": "return model.accounts[arrayIndices[0]].atwDevices[arrayIndices[1]].
|
|
2052
|
+
"functionBody": "return model.accounts[arrayIndices[0]].atwDevices[arrayIndices[1]].id !== '0';"
|
|
2045
2053
|
}
|
|
2046
2054
|
}
|
|
2047
|
-
]
|
|
2048
|
-
"condition": {
|
|
2049
|
-
"functionBody": "return model.accounts[arrayIndices[0]].atwDevices[arrayIndices[1]].id !== '0';"
|
|
2050
|
-
}
|
|
2055
|
+
]
|
|
2051
2056
|
}
|
|
2052
2057
|
]
|
|
2053
2058
|
},
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "MELCloud Control",
|
|
3
3
|
"name": "homebridge-melcloud-control",
|
|
4
|
-
"version": "4.0.0-beta.
|
|
4
|
+
"version": "4.0.0-beta.227",
|
|
5
5
|
"description": "Homebridge plugin to control Mitsubishi Air Conditioner, Heat Pump and Energy Recovery Ventilation.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "grzegorz914",
|