18 lines
441 B
Python
18 lines
441 B
Python
from ha_deconz_bridge.automation import RemoteSpec
|
|
|
|
|
|
REMOTES = {
|
|
"example_sensor_1": RemoteSpec(
|
|
sensor_id="example_sensor_1",
|
|
remote_id="example_living_remote",
|
|
name="Example living remote",
|
|
model="RWL021",
|
|
),
|
|
"example_sensor_2": RemoteSpec(
|
|
sensor_id="example_sensor_2",
|
|
remote_id="example_kitchen_remote",
|
|
name="Example kitchen remote",
|
|
model="RWL021",
|
|
),
|
|
}
|