homeassistant 2025.10.0b1__py3-none-any.whl → 2025.10.0b2__py3-none-any.whl
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.
Potentially problematic release.
This version of homeassistant might be problematic. Click here for more details.
- homeassistant/components/accuweather/manifest.json +1 -1
- homeassistant/components/alexa_devices/binary_sensor.py +36 -38
- homeassistant/components/alexa_devices/config_flow.py +2 -2
- homeassistant/components/alexa_devices/coordinator.py +1 -1
- homeassistant/components/alexa_devices/diagnostics.py +1 -3
- homeassistant/components/alexa_devices/icons.json +0 -40
- homeassistant/components/alexa_devices/manifest.json +1 -1
- homeassistant/components/alexa_devices/sensor.py +13 -0
- homeassistant/components/alexa_devices/strings.json +0 -20
- homeassistant/components/alexa_devices/switch.py +27 -7
- homeassistant/components/alexa_devices/translations/bg.json +0 -13
- homeassistant/components/alexa_devices/translations/cs.json +0 -20
- homeassistant/components/alexa_devices/translations/de.json +0 -20
- homeassistant/components/alexa_devices/translations/el.json +0 -20
- homeassistant/components/alexa_devices/translations/en-GB.json +0 -20
- homeassistant/components/alexa_devices/translations/en.json +0 -20
- homeassistant/components/alexa_devices/translations/es.json +0 -20
- homeassistant/components/alexa_devices/translations/et.json +0 -20
- homeassistant/components/alexa_devices/translations/ga.json +0 -20
- homeassistant/components/alexa_devices/translations/he.json +0 -7
- homeassistant/components/alexa_devices/translations/hu.json +0 -20
- homeassistant/components/alexa_devices/translations/it.json +0 -20
- homeassistant/components/alexa_devices/translations/ja.json +0 -19
- homeassistant/components/alexa_devices/translations/lt.json +0 -20
- homeassistant/components/alexa_devices/translations/mk.json +0 -14
- homeassistant/components/alexa_devices/translations/nl.json +0 -20
- homeassistant/components/alexa_devices/translations/pl.json +0 -5
- homeassistant/components/alexa_devices/translations/pt.json +0 -20
- homeassistant/components/alexa_devices/translations/ru.json +0 -5
- homeassistant/components/alexa_devices/translations/sk.json +0 -20
- homeassistant/components/alexa_devices/translations/sv.json +0 -20
- homeassistant/components/alexa_devices/translations/tr.json +0 -5
- homeassistant/components/alexa_devices/translations/zh-Hans.json +0 -20
- homeassistant/components/alexa_devices/translations/zh-Hant.json +0 -20
- homeassistant/components/alexa_devices/utils.py +24 -1
- homeassistant/components/assist_pipeline/translations/nl.json +1 -0
- homeassistant/components/esphome/manifest.json +1 -1
- homeassistant/components/esphome/translations/nl.json +1 -1
- homeassistant/components/frontend/manifest.json +1 -1
- homeassistant/components/mvglive/manifest.json +2 -4
- homeassistant/components/mvglive/sensor.py +116 -86
- homeassistant/components/smartthings/manifest.json +1 -1
- homeassistant/components/voip/translations/nl.json +1 -1
- homeassistant/components/wyoming/translations/nl.json +1 -1
- homeassistant/const.py +1 -1
- homeassistant/package_constraints.txt +1 -1
- {homeassistant-2025.10.0b1.dist-info → homeassistant-2025.10.0b2.dist-info}/METADATA +1 -1
- {homeassistant-2025.10.0b1.dist-info → homeassistant-2025.10.0b2.dist-info}/RECORD +53 -53
- {homeassistant-2025.10.0b1.dist-info → homeassistant-2025.10.0b2.dist-info}/WHEEL +0 -0
- {homeassistant-2025.10.0b1.dist-info → homeassistant-2025.10.0b2.dist-info}/entry_points.txt +0 -0
- {homeassistant-2025.10.0b1.dist-info → homeassistant-2025.10.0b2.dist-info}/licenses/LICENSE.md +0 -0
- {homeassistant-2025.10.0b1.dist-info → homeassistant-2025.10.0b2.dist-info}/licenses/homeassistant/backports/LICENSE.Python +0 -0
- {homeassistant-2025.10.0b1.dist-info → homeassistant-2025.10.0b2.dist-info}/top_level.txt +0 -0
|
@@ -10,6 +10,7 @@ from aioamazondevices.api import AmazonDevice
|
|
|
10
10
|
from aioamazondevices.const import SENSOR_STATE_OFF
|
|
11
11
|
|
|
12
12
|
from homeassistant.components.binary_sensor import (
|
|
13
|
+
DOMAIN as BINARY_SENSOR_DOMAIN,
|
|
13
14
|
BinarySensorDeviceClass,
|
|
14
15
|
BinarySensorEntity,
|
|
15
16
|
BinarySensorEntityDescription,
|
|
@@ -20,6 +21,7 @@ from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
|
|
20
21
|
|
|
21
22
|
from .coordinator import AmazonConfigEntry
|
|
22
23
|
from .entity import AmazonEntity
|
|
24
|
+
from .utils import async_update_unique_id
|
|
23
25
|
|
|
24
26
|
# Coordinator is used to centralize the data updates
|
|
25
27
|
PARALLEL_UPDATES = 0
|
|
@@ -31,6 +33,7 @@ class AmazonBinarySensorEntityDescription(BinarySensorEntityDescription):
|
|
|
31
33
|
|
|
32
34
|
is_on_fn: Callable[[AmazonDevice, str], bool]
|
|
33
35
|
is_supported: Callable[[AmazonDevice, str], bool] = lambda device, key: True
|
|
36
|
+
is_available_fn: Callable[[AmazonDevice, str], bool] = lambda device, key: True
|
|
34
37
|
|
|
35
38
|
|
|
36
39
|
BINARY_SENSORS: Final = (
|
|
@@ -41,46 +44,15 @@ BINARY_SENSORS: Final = (
|
|
|
41
44
|
is_on_fn=lambda device, _: device.online,
|
|
42
45
|
),
|
|
43
46
|
AmazonBinarySensorEntityDescription(
|
|
44
|
-
key="
|
|
45
|
-
entity_category=EntityCategory.DIAGNOSTIC,
|
|
46
|
-
translation_key="bluetooth",
|
|
47
|
-
is_on_fn=lambda device, _: device.bluetooth_state,
|
|
48
|
-
),
|
|
49
|
-
AmazonBinarySensorEntityDescription(
|
|
50
|
-
key="babyCryDetectionState",
|
|
51
|
-
translation_key="baby_cry_detection",
|
|
52
|
-
is_on_fn=lambda device, key: (device.sensors[key].value != SENSOR_STATE_OFF),
|
|
53
|
-
is_supported=lambda device, key: device.sensors.get(key) is not None,
|
|
54
|
-
),
|
|
55
|
-
AmazonBinarySensorEntityDescription(
|
|
56
|
-
key="beepingApplianceDetectionState",
|
|
57
|
-
translation_key="beeping_appliance_detection",
|
|
58
|
-
is_on_fn=lambda device, key: (device.sensors[key].value != SENSOR_STATE_OFF),
|
|
59
|
-
is_supported=lambda device, key: device.sensors.get(key) is not None,
|
|
60
|
-
),
|
|
61
|
-
AmazonBinarySensorEntityDescription(
|
|
62
|
-
key="coughDetectionState",
|
|
63
|
-
translation_key="cough_detection",
|
|
64
|
-
is_on_fn=lambda device, key: (device.sensors[key].value != SENSOR_STATE_OFF),
|
|
65
|
-
is_supported=lambda device, key: device.sensors.get(key) is not None,
|
|
66
|
-
),
|
|
67
|
-
AmazonBinarySensorEntityDescription(
|
|
68
|
-
key="dogBarkDetectionState",
|
|
69
|
-
translation_key="dog_bark_detection",
|
|
70
|
-
is_on_fn=lambda device, key: (device.sensors[key].value != SENSOR_STATE_OFF),
|
|
71
|
-
is_supported=lambda device, key: device.sensors.get(key) is not None,
|
|
72
|
-
),
|
|
73
|
-
AmazonBinarySensorEntityDescription(
|
|
74
|
-
key="humanPresenceDetectionState",
|
|
47
|
+
key="detectionState",
|
|
75
48
|
device_class=BinarySensorDeviceClass.MOTION,
|
|
76
|
-
is_on_fn=lambda device, key: (
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
AmazonBinarySensorEntityDescription(
|
|
80
|
-
key="waterSoundsDetectionState",
|
|
81
|
-
translation_key="water_sounds_detection",
|
|
82
|
-
is_on_fn=lambda device, key: (device.sensors[key].value != SENSOR_STATE_OFF),
|
|
49
|
+
is_on_fn=lambda device, key: bool(
|
|
50
|
+
device.sensors[key].value != SENSOR_STATE_OFF
|
|
51
|
+
),
|
|
83
52
|
is_supported=lambda device, key: device.sensors.get(key) is not None,
|
|
53
|
+
is_available_fn=lambda device, key: (
|
|
54
|
+
device.online and device.sensors[key].error is False
|
|
55
|
+
),
|
|
84
56
|
),
|
|
85
57
|
)
|
|
86
58
|
|
|
@@ -94,6 +66,22 @@ async def async_setup_entry(
|
|
|
94
66
|
|
|
95
67
|
coordinator = entry.runtime_data
|
|
96
68
|
|
|
69
|
+
# Replace unique id for "detectionState" binary sensor
|
|
70
|
+
await async_update_unique_id(
|
|
71
|
+
hass,
|
|
72
|
+
coordinator,
|
|
73
|
+
BINARY_SENSOR_DOMAIN,
|
|
74
|
+
"humanPresenceDetectionState",
|
|
75
|
+
"detectionState",
|
|
76
|
+
)
|
|
77
|
+
|
|
78
|
+
async_add_entities(
|
|
79
|
+
AmazonBinarySensorEntity(coordinator, serial_num, sensor_desc)
|
|
80
|
+
for sensor_desc in BINARY_SENSORS
|
|
81
|
+
for serial_num in coordinator.data
|
|
82
|
+
if sensor_desc.is_supported(coordinator.data[serial_num], sensor_desc.key)
|
|
83
|
+
)
|
|
84
|
+
|
|
97
85
|
known_devices: set[str] = set()
|
|
98
86
|
|
|
99
87
|
def _check_device() -> None:
|
|
@@ -125,3 +113,13 @@ class AmazonBinarySensorEntity(AmazonEntity, BinarySensorEntity):
|
|
|
125
113
|
return self.entity_description.is_on_fn(
|
|
126
114
|
self.device, self.entity_description.key
|
|
127
115
|
)
|
|
116
|
+
|
|
117
|
+
@property
|
|
118
|
+
def available(self) -> bool:
|
|
119
|
+
"""Return if entity is available."""
|
|
120
|
+
return (
|
|
121
|
+
self.entity_description.is_available_fn(
|
|
122
|
+
self.device, self.entity_description.key
|
|
123
|
+
)
|
|
124
|
+
and super().available
|
|
125
|
+
)
|
|
@@ -64,7 +64,7 @@ class AmazonDevicesConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
|
64
64
|
data = await validate_input(self.hass, user_input)
|
|
65
65
|
except CannotConnect:
|
|
66
66
|
errors["base"] = "cannot_connect"
|
|
67
|
-
except
|
|
67
|
+
except CannotAuthenticate:
|
|
68
68
|
errors["base"] = "invalid_auth"
|
|
69
69
|
except CannotRetrieveData:
|
|
70
70
|
errors["base"] = "cannot_retrieve_data"
|
|
@@ -112,7 +112,7 @@ class AmazonDevicesConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
|
112
112
|
)
|
|
113
113
|
except CannotConnect:
|
|
114
114
|
errors["base"] = "cannot_connect"
|
|
115
|
-
except
|
|
115
|
+
except CannotAuthenticate:
|
|
116
116
|
errors["base"] = "invalid_auth"
|
|
117
117
|
except CannotRetrieveData:
|
|
118
118
|
errors["base"] = "cannot_retrieve_data"
|
|
@@ -68,7 +68,7 @@ class AmazonDevicesCoordinator(DataUpdateCoordinator[dict[str, AmazonDevice]]):
|
|
|
68
68
|
translation_key="cannot_retrieve_data_with_error",
|
|
69
69
|
translation_placeholders={"error": repr(err)},
|
|
70
70
|
) from err
|
|
71
|
-
except
|
|
71
|
+
except CannotAuthenticate as err:
|
|
72
72
|
raise ConfigEntryAuthFailed(
|
|
73
73
|
translation_domain=DOMAIN,
|
|
74
74
|
translation_key="invalid_auth",
|
|
@@ -60,7 +60,5 @@ def build_device_data(device: AmazonDevice) -> dict[str, Any]:
|
|
|
60
60
|
"online": device.online,
|
|
61
61
|
"serial number": device.serial_number,
|
|
62
62
|
"software version": device.software_version,
|
|
63
|
-
"
|
|
64
|
-
"response style": device.response_style,
|
|
65
|
-
"bluetooth state": device.bluetooth_state,
|
|
63
|
+
"sensors": device.sensors,
|
|
66
64
|
}
|
|
@@ -1,44 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"entity": {
|
|
3
|
-
"binary_sensor": {
|
|
4
|
-
"bluetooth": {
|
|
5
|
-
"default": "mdi:bluetooth-off",
|
|
6
|
-
"state": {
|
|
7
|
-
"on": "mdi:bluetooth"
|
|
8
|
-
}
|
|
9
|
-
},
|
|
10
|
-
"baby_cry_detection": {
|
|
11
|
-
"default": "mdi:account-voice-off",
|
|
12
|
-
"state": {
|
|
13
|
-
"on": "mdi:account-voice"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"beeping_appliance_detection": {
|
|
17
|
-
"default": "mdi:bell-off",
|
|
18
|
-
"state": {
|
|
19
|
-
"on": "mdi:bell-ring"
|
|
20
|
-
}
|
|
21
|
-
},
|
|
22
|
-
"cough_detection": {
|
|
23
|
-
"default": "mdi:blur-off",
|
|
24
|
-
"state": {
|
|
25
|
-
"on": "mdi:blur"
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
"dog_bark_detection": {
|
|
29
|
-
"default": "mdi:dog-side-off",
|
|
30
|
-
"state": {
|
|
31
|
-
"on": "mdi:dog-side"
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
"water_sounds_detection": {
|
|
35
|
-
"default": "mdi:water-pump-off",
|
|
36
|
-
"state": {
|
|
37
|
-
"on": "mdi:water-pump"
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
2
|
"services": {
|
|
43
3
|
"send_sound": {
|
|
44
4
|
"service": "mdi:cast-audio"
|
|
@@ -31,6 +31,9 @@ class AmazonSensorEntityDescription(SensorEntityDescription):
|
|
|
31
31
|
"""Amazon Devices sensor entity description."""
|
|
32
32
|
|
|
33
33
|
native_unit_of_measurement_fn: Callable[[AmazonDevice, str], str] | None = None
|
|
34
|
+
is_available_fn: Callable[[AmazonDevice, str], bool] = lambda device, key: (
|
|
35
|
+
device.online and device.sensors[key].error is False
|
|
36
|
+
)
|
|
34
37
|
|
|
35
38
|
|
|
36
39
|
SENSORS: Final = (
|
|
@@ -99,3 +102,13 @@ class AmazonSensorEntity(AmazonEntity, SensorEntity):
|
|
|
99
102
|
def native_value(self) -> StateType:
|
|
100
103
|
"""Return the state of the sensor."""
|
|
101
104
|
return self.device.sensors[self.entity_description.key].value
|
|
105
|
+
|
|
106
|
+
@property
|
|
107
|
+
def available(self) -> bool:
|
|
108
|
+
"""Return if entity is available."""
|
|
109
|
+
return (
|
|
110
|
+
self.entity_description.is_available_fn(
|
|
111
|
+
self.device, self.entity_description.key
|
|
112
|
+
)
|
|
113
|
+
and super().available
|
|
114
|
+
)
|
|
@@ -58,26 +58,6 @@
|
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
60
|
"entity": {
|
|
61
|
-
"binary_sensor": {
|
|
62
|
-
"bluetooth": {
|
|
63
|
-
"name": "Bluetooth"
|
|
64
|
-
},
|
|
65
|
-
"baby_cry_detection": {
|
|
66
|
-
"name": "Baby crying"
|
|
67
|
-
},
|
|
68
|
-
"beeping_appliance_detection": {
|
|
69
|
-
"name": "Beeping appliance"
|
|
70
|
-
},
|
|
71
|
-
"cough_detection": {
|
|
72
|
-
"name": "Coughing"
|
|
73
|
-
},
|
|
74
|
-
"dog_bark_detection": {
|
|
75
|
-
"name": "Dog barking"
|
|
76
|
-
},
|
|
77
|
-
"water_sounds_detection": {
|
|
78
|
-
"name": "Water sounds"
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
61
|
"notify": {
|
|
82
62
|
"speak": {
|
|
83
63
|
"name": "Speak"
|
|
@@ -8,13 +8,17 @@ from typing import TYPE_CHECKING, Any, Final
|
|
|
8
8
|
|
|
9
9
|
from aioamazondevices.api import AmazonDevice
|
|
10
10
|
|
|
11
|
-
from homeassistant.components.switch import
|
|
11
|
+
from homeassistant.components.switch import (
|
|
12
|
+
DOMAIN as SWITCH_DOMAIN,
|
|
13
|
+
SwitchEntity,
|
|
14
|
+
SwitchEntityDescription,
|
|
15
|
+
)
|
|
12
16
|
from homeassistant.core import HomeAssistant
|
|
13
17
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
|
14
18
|
|
|
15
19
|
from .coordinator import AmazonConfigEntry
|
|
16
20
|
from .entity import AmazonEntity
|
|
17
|
-
from .utils import alexa_api_call
|
|
21
|
+
from .utils import alexa_api_call, async_update_unique_id
|
|
18
22
|
|
|
19
23
|
PARALLEL_UPDATES = 1
|
|
20
24
|
|
|
@@ -24,16 +28,17 @@ class AmazonSwitchEntityDescription(SwitchEntityDescription):
|
|
|
24
28
|
"""Alexa Devices switch entity description."""
|
|
25
29
|
|
|
26
30
|
is_on_fn: Callable[[AmazonDevice], bool]
|
|
27
|
-
|
|
31
|
+
is_available_fn: Callable[[AmazonDevice, str], bool] = lambda device, key: (
|
|
32
|
+
device.online and device.sensors[key].error is False
|
|
33
|
+
)
|
|
28
34
|
method: str
|
|
29
35
|
|
|
30
36
|
|
|
31
37
|
SWITCHES: Final = (
|
|
32
38
|
AmazonSwitchEntityDescription(
|
|
33
|
-
key="
|
|
34
|
-
subkey="AUDIO_PLAYER",
|
|
39
|
+
key="dnd",
|
|
35
40
|
translation_key="do_not_disturb",
|
|
36
|
-
is_on_fn=lambda
|
|
41
|
+
is_on_fn=lambda device: bool(device.sensors["dnd"].value),
|
|
37
42
|
method="set_do_not_disturb",
|
|
38
43
|
),
|
|
39
44
|
)
|
|
@@ -48,6 +53,11 @@ async def async_setup_entry(
|
|
|
48
53
|
|
|
49
54
|
coordinator = entry.runtime_data
|
|
50
55
|
|
|
56
|
+
# Replace unique id for "DND" switch and remove from Speaker Group
|
|
57
|
+
await async_update_unique_id(
|
|
58
|
+
hass, coordinator, SWITCH_DOMAIN, "do_not_disturb", "dnd"
|
|
59
|
+
)
|
|
60
|
+
|
|
51
61
|
known_devices: set[str] = set()
|
|
52
62
|
|
|
53
63
|
def _check_device() -> None:
|
|
@@ -59,7 +69,7 @@ async def async_setup_entry(
|
|
|
59
69
|
AmazonSwitchEntity(coordinator, serial_num, switch_desc)
|
|
60
70
|
for switch_desc in SWITCHES
|
|
61
71
|
for serial_num in new_devices
|
|
62
|
-
if switch_desc.
|
|
72
|
+
if switch_desc.key in coordinator.data[serial_num].sensors
|
|
63
73
|
)
|
|
64
74
|
|
|
65
75
|
_check_device()
|
|
@@ -94,3 +104,13 @@ class AmazonSwitchEntity(AmazonEntity, SwitchEntity):
|
|
|
94
104
|
def is_on(self) -> bool:
|
|
95
105
|
"""Return True if switch is on."""
|
|
96
106
|
return self.entity_description.is_on_fn(self.device)
|
|
107
|
+
|
|
108
|
+
@property
|
|
109
|
+
def available(self) -> bool:
|
|
110
|
+
"""Return if entity is available."""
|
|
111
|
+
return (
|
|
112
|
+
self.entity_description.is_available_fn(
|
|
113
|
+
self.device, self.entity_description.key
|
|
114
|
+
)
|
|
115
|
+
and super().available
|
|
116
|
+
)
|
|
@@ -54,19 +54,6 @@
|
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
|
-
"entity": {
|
|
58
|
-
"binary_sensor": {
|
|
59
|
-
"baby_cry_detection": {
|
|
60
|
-
"name": "\u041f\u043b\u0430\u0447\u0435\u0449\u043e \u0431\u0435\u0431\u0435"
|
|
61
|
-
},
|
|
62
|
-
"bluetooth": {
|
|
63
|
-
"name": "Bluetooth"
|
|
64
|
-
},
|
|
65
|
-
"water_sounds_detection": {
|
|
66
|
-
"name": "\u0417\u0432\u0443\u0446\u0438 \u043d\u0430 \u0432\u043e\u0434\u0430\u0442\u0430"
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
57
|
"services": {
|
|
71
58
|
"send_sound": {
|
|
72
59
|
"fields": {
|
|
@@ -58,26 +58,6 @@
|
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
60
|
"entity": {
|
|
61
|
-
"binary_sensor": {
|
|
62
|
-
"baby_cry_detection": {
|
|
63
|
-
"name": "D\u011btsk\u00fd pl\u00e1\u010d"
|
|
64
|
-
},
|
|
65
|
-
"beeping_appliance_detection": {
|
|
66
|
-
"name": "P\u00edpaj\u00edc\u00ed spot\u0159ebi\u010d"
|
|
67
|
-
},
|
|
68
|
-
"bluetooth": {
|
|
69
|
-
"name": "Bluetooth"
|
|
70
|
-
},
|
|
71
|
-
"cough_detection": {
|
|
72
|
-
"name": "Ka\u0161el"
|
|
73
|
-
},
|
|
74
|
-
"dog_bark_detection": {
|
|
75
|
-
"name": "\u0160t\u011bk\u00e1n\u00ed psa"
|
|
76
|
-
},
|
|
77
|
-
"water_sounds_detection": {
|
|
78
|
-
"name": "Zvuky vody"
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
61
|
"notify": {
|
|
82
62
|
"announce": {
|
|
83
63
|
"name": "Ozn\u00e1mit"
|
|
@@ -58,26 +58,6 @@
|
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
60
|
"entity": {
|
|
61
|
-
"binary_sensor": {
|
|
62
|
-
"baby_cry_detection": {
|
|
63
|
-
"name": "Babyschrei"
|
|
64
|
-
},
|
|
65
|
-
"beeping_appliance_detection": {
|
|
66
|
-
"name": "Piependes Ger\u00e4t"
|
|
67
|
-
},
|
|
68
|
-
"bluetooth": {
|
|
69
|
-
"name": "Bluetooth"
|
|
70
|
-
},
|
|
71
|
-
"cough_detection": {
|
|
72
|
-
"name": "Husten"
|
|
73
|
-
},
|
|
74
|
-
"dog_bark_detection": {
|
|
75
|
-
"name": "Hundegebell"
|
|
76
|
-
},
|
|
77
|
-
"water_sounds_detection": {
|
|
78
|
-
"name": "Wasserger\u00e4usche"
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
61
|
"notify": {
|
|
82
62
|
"announce": {
|
|
83
63
|
"name": "Durchsagen"
|
|
@@ -57,26 +57,6 @@
|
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
"entity": {
|
|
60
|
-
"binary_sensor": {
|
|
61
|
-
"baby_cry_detection": {
|
|
62
|
-
"name": "\u039a\u03bb\u03ac\u03bc\u03b1 \u03bc\u03c9\u03c1\u03bf\u03cd"
|
|
63
|
-
},
|
|
64
|
-
"beeping_appliance_detection": {
|
|
65
|
-
"name": "\u03a3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae \u03c0\u03bf\u03c5 \u03ba\u03ac\u03bd\u03b5\u03b9 \u03b7\u03c7\u03b7\u03c4\u03b9\u03ba\u03cc \u03c3\u03ae\u03bc\u03b1"
|
|
66
|
-
},
|
|
67
|
-
"bluetooth": {
|
|
68
|
-
"name": "Bluetooth"
|
|
69
|
-
},
|
|
70
|
-
"cough_detection": {
|
|
71
|
-
"name": "\u0392\u03ae\u03c7\u03b1\u03c2"
|
|
72
|
-
},
|
|
73
|
-
"dog_bark_detection": {
|
|
74
|
-
"name": "\u0393\u03ac\u03b2\u03b3\u03b9\u03c3\u03bc\u03b1 \u03c3\u03ba\u03cd\u03bb\u03bf\u03c5"
|
|
75
|
-
},
|
|
76
|
-
"water_sounds_detection": {
|
|
77
|
-
"name": "\u0397\u03c7\u03bf\u03b9 \u03bd\u03b5\u03c1\u03bf\u03cd"
|
|
78
|
-
}
|
|
79
|
-
},
|
|
80
60
|
"notify": {
|
|
81
61
|
"announce": {
|
|
82
62
|
"name": "\u0391\u03bd\u03b1\u03ba\u03bf\u03af\u03bd\u03c9\u03c3\u03b7"
|
|
@@ -58,26 +58,6 @@
|
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
60
|
"entity": {
|
|
61
|
-
"binary_sensor": {
|
|
62
|
-
"baby_cry_detection": {
|
|
63
|
-
"name": "Baby crying"
|
|
64
|
-
},
|
|
65
|
-
"beeping_appliance_detection": {
|
|
66
|
-
"name": "Beeping appliance"
|
|
67
|
-
},
|
|
68
|
-
"bluetooth": {
|
|
69
|
-
"name": "Bluetooth"
|
|
70
|
-
},
|
|
71
|
-
"cough_detection": {
|
|
72
|
-
"name": "Coughing"
|
|
73
|
-
},
|
|
74
|
-
"dog_bark_detection": {
|
|
75
|
-
"name": "Dog barking"
|
|
76
|
-
},
|
|
77
|
-
"water_sounds_detection": {
|
|
78
|
-
"name": "Water sounds"
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
61
|
"notify": {
|
|
82
62
|
"announce": {
|
|
83
63
|
"name": "Announce"
|
|
@@ -58,26 +58,6 @@
|
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
60
|
"entity": {
|
|
61
|
-
"binary_sensor": {
|
|
62
|
-
"baby_cry_detection": {
|
|
63
|
-
"name": "Baby crying"
|
|
64
|
-
},
|
|
65
|
-
"beeping_appliance_detection": {
|
|
66
|
-
"name": "Beeping appliance"
|
|
67
|
-
},
|
|
68
|
-
"bluetooth": {
|
|
69
|
-
"name": "Bluetooth"
|
|
70
|
-
},
|
|
71
|
-
"cough_detection": {
|
|
72
|
-
"name": "Coughing"
|
|
73
|
-
},
|
|
74
|
-
"dog_bark_detection": {
|
|
75
|
-
"name": "Dog barking"
|
|
76
|
-
},
|
|
77
|
-
"water_sounds_detection": {
|
|
78
|
-
"name": "Water sounds"
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
61
|
"notify": {
|
|
82
62
|
"announce": {
|
|
83
63
|
"name": "Announce"
|
|
@@ -58,26 +58,6 @@
|
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
60
|
"entity": {
|
|
61
|
-
"binary_sensor": {
|
|
62
|
-
"baby_cry_detection": {
|
|
63
|
-
"name": "Beb\u00e9 llorando"
|
|
64
|
-
},
|
|
65
|
-
"beeping_appliance_detection": {
|
|
66
|
-
"name": "Electrodom\u00e9stico pitando"
|
|
67
|
-
},
|
|
68
|
-
"bluetooth": {
|
|
69
|
-
"name": "Bluetooth"
|
|
70
|
-
},
|
|
71
|
-
"cough_detection": {
|
|
72
|
-
"name": "Tos"
|
|
73
|
-
},
|
|
74
|
-
"dog_bark_detection": {
|
|
75
|
-
"name": "Ladridos de perros"
|
|
76
|
-
},
|
|
77
|
-
"water_sounds_detection": {
|
|
78
|
-
"name": "Sonidos del agua"
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
61
|
"notify": {
|
|
82
62
|
"announce": {
|
|
83
63
|
"name": "Anunciar"
|
|
@@ -58,26 +58,6 @@
|
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
60
|
"entity": {
|
|
61
|
-
"binary_sensor": {
|
|
62
|
-
"baby_cry_detection": {
|
|
63
|
-
"name": "Imiku nutt"
|
|
64
|
-
},
|
|
65
|
-
"beeping_appliance_detection": {
|
|
66
|
-
"name": "Piiksuv seade"
|
|
67
|
-
},
|
|
68
|
-
"bluetooth": {
|
|
69
|
-
"name": "Bluetooth"
|
|
70
|
-
},
|
|
71
|
-
"cough_detection": {
|
|
72
|
-
"name": "K\u00f6himine"
|
|
73
|
-
},
|
|
74
|
-
"dog_bark_detection": {
|
|
75
|
-
"name": "Koera haukumine"
|
|
76
|
-
},
|
|
77
|
-
"water_sounds_detection": {
|
|
78
|
-
"name": "Vee helid"
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
61
|
"notify": {
|
|
82
62
|
"announce": {
|
|
83
63
|
"name": "Teavita"
|
|
@@ -57,26 +57,6 @@
|
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
"entity": {
|
|
60
|
-
"binary_sensor": {
|
|
61
|
-
"baby_cry_detection": {
|
|
62
|
-
"name": "Leanbh ag caoineadh"
|
|
63
|
-
},
|
|
64
|
-
"beeping_appliance_detection": {
|
|
65
|
-
"name": "Fearas b\u00edp"
|
|
66
|
-
},
|
|
67
|
-
"bluetooth": {
|
|
68
|
-
"name": "Bluetooth"
|
|
69
|
-
},
|
|
70
|
-
"cough_detection": {
|
|
71
|
-
"name": "Casacht"
|
|
72
|
-
},
|
|
73
|
-
"dog_bark_detection": {
|
|
74
|
-
"name": "Madra ag tafann"
|
|
75
|
-
},
|
|
76
|
-
"water_sounds_detection": {
|
|
77
|
-
"name": "Fuaimeanna uisce"
|
|
78
|
-
}
|
|
79
|
-
},
|
|
80
60
|
"notify": {
|
|
81
61
|
"announce": {
|
|
82
62
|
"name": "F\u00f3graigh"
|
|
@@ -34,26 +34,6 @@
|
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
36
|
"entity": {
|
|
37
|
-
"binary_sensor": {
|
|
38
|
-
"baby_cry_detection": {
|
|
39
|
-
"name": "Baba s\u00edr\u00e1s"
|
|
40
|
-
},
|
|
41
|
-
"beeping_appliance_detection": {
|
|
42
|
-
"name": "S\u00edpol\u00f3 k\u00e9sz\u00fcl\u00e9k"
|
|
43
|
-
},
|
|
44
|
-
"bluetooth": {
|
|
45
|
-
"name": "Bluetooth"
|
|
46
|
-
},
|
|
47
|
-
"cough_detection": {
|
|
48
|
-
"name": "K\u00f6h\u00f6g\u00e9s"
|
|
49
|
-
},
|
|
50
|
-
"dog_bark_detection": {
|
|
51
|
-
"name": "Kutya ugat\u00e1sa"
|
|
52
|
-
},
|
|
53
|
-
"water_sounds_detection": {
|
|
54
|
-
"name": "V\u00edzcsobog\u00e1s"
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
37
|
"notify": {
|
|
58
38
|
"announce": {
|
|
59
39
|
"name": "Bejelent\u00e9s"
|
|
@@ -34,26 +34,6 @@
|
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
36
|
"entity": {
|
|
37
|
-
"binary_sensor": {
|
|
38
|
-
"baby_cry_detection": {
|
|
39
|
-
"name": "Bambino che piange"
|
|
40
|
-
},
|
|
41
|
-
"beeping_appliance_detection": {
|
|
42
|
-
"name": "Elettrodomestico che emette segnali acustici"
|
|
43
|
-
},
|
|
44
|
-
"bluetooth": {
|
|
45
|
-
"name": "Bluetooth"
|
|
46
|
-
},
|
|
47
|
-
"cough_detection": {
|
|
48
|
-
"name": "Tosse"
|
|
49
|
-
},
|
|
50
|
-
"dog_bark_detection": {
|
|
51
|
-
"name": "Cane che abbaia"
|
|
52
|
-
},
|
|
53
|
-
"water_sounds_detection": {
|
|
54
|
-
"name": "Suoni dell'acqua"
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
37
|
"notify": {
|
|
58
38
|
"announce": {
|
|
59
39
|
"name": "Annuncio"
|