16 lines
872 B
Python
16 lines
872 B
Python
"""Provide common test tools for Z-Wave JS."""
|
|
AIR_TEMPERATURE_SENSOR = "sensor.multisensor_6_air_temperature"
|
|
ENERGY_SENSOR = "sensor.smart_plug_with_two_usb_ports_value_electric_consumed_2"
|
|
POWER_SENSOR = "sensor.smart_plug_with_two_usb_ports_value_electric_consumed"
|
|
SWITCH_ENTITY = "switch.smart_plug_with_two_usb_ports_current_value"
|
|
LOW_BATTERY_BINARY_SENSOR = "binary_sensor.multisensor_6_low_battery_level"
|
|
ENABLED_LEGACY_BINARY_SENSOR = "binary_sensor.z_wave_door_window_sensor_any"
|
|
DISABLED_LEGACY_BINARY_SENSOR = "binary_sensor.multisensor_6_any"
|
|
NOTIFICATION_MOTION_BINARY_SENSOR = (
|
|
"binary_sensor.multisensor_6_home_security_motion_detection"
|
|
)
|
|
NOTIFICATION_MOTION_SENSOR = "sensor.multisensor_6_home_security_motion_sensor_status"
|
|
PROPERTY_DOOR_STATUS_BINARY_SENSOR = (
|
|
"binary_sensor.august_smart_lock_pro_3rd_gen_the_current_status_of_the_door"
|
|
)
|