From 360e87d85d8d559b00371bb2398d4ddc5a20ad9f Mon Sep 17 00:00:00 2001 From: Bob Eckhoff Date: Sat, 8 Apr 2023 13:46:38 -0400 Subject: [PATCH] Update channels php files Added alarm_cold & alarm_humidity to align with merged PR. Also because file did not match the current dropdown, added or deleted channels to match. Left channels with no match in the binding alone for now. Signed-off-by: Bob Eckhoff --- zwave/devicecheck.php | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/zwave/devicecheck.php b/zwave/devicecheck.php index 66e473a..e37d6ab 100644 --- a/zwave/devicecheck.php +++ b/zwave/devicecheck.php @@ -30,7 +30,16 @@ class devicecheck 'EMERGENCY', 'CLOCK', 'APPLIANCE', - 'HOME_HEALTH' + 'HOME_HEALTH', + 'SIREN', + 'WATER_VALVE', + 'WEATHER', + 'IRRIGATION', + 'GAS', + 'PEST_CONTROL', + 'LIGHT_SENSOR', + 'WATER_QUALITY', + 'HOME_MONITORING' ); private $channelsThatCanBeDuplicated = array( @@ -41,18 +50,21 @@ class devicecheck ); private $channelsImplemented = array( + 'air_temperature[sensor_temperature]', 'alarm_access', 'alarm_battery', 'alarm_burglar', 'alarm_clock', 'alarm_co', 'alarm_co2', + 'alarm_cold', 'alarm_combustiblegas', 'alarm_emergency', 'alarm_entry', 'alarm_flood', 'alarm_general', 'alarm_heat', + 'alarm_humidity', 'alarm_motion', 'alarm_number', 'alarm_power', @@ -60,6 +72,7 @@ class devicecheck 'alarm_smoke', 'alarm_system', 'alarm_tamper', + 'alarm_watervalve', 'barrier_position', 'barrier_state', 'basic_number', @@ -67,8 +80,10 @@ class devicecheck 'blinds_lamella', 'blinds_shutter', 'color_color', + 'color_raw', 'color_temperature', 'config_decimal', + 'floor_temperature[sensor_temperature]', 'indicator_level', 'indicator_period', 'indicator_flash', @@ -110,7 +125,6 @@ class devicecheck 'sensor_flood', 'sensor_frequency', 'sensor_general', - 'sensor_loudness', 'sensor_luminance', 'sensor_moisture', 'sensor_particulate', @@ -123,8 +137,12 @@ class devicecheck 'sensor_temperature', 'sensor_ultraviolet', 'sensor_velocity', - 'sensor_voc', 'sensor_voltage', + 'sensor_waterflow', + 'sensor_waterpressure', + 'sound_default_tone', + 'sound_tone_play', + 'sound_volume', 'switch_binary', 'switch_dimmer', 'switch_startstop',