-
Notifications
You must be signed in to change notification settings - Fork 108
/
config.json
39 lines (39 loc) · 1.16 KB
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "rtl_433 MQTT Auto Discovery",
"image": "ghcr.io/pbkhrv/rtl_433-hass-addons-rtl_433_mqtt_autodiscovery-{arch}",
"version": "0.8.2",
"slug": "rtl433mqttautodiscovery",
"description": "Automatic discovery of rtl_433 device information via MQTT",
"url": "https://github.com/pbkhrv/rtl_433-hass-addons/tree/main/rtl_433_mqtt_autodiscovery",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"startup": "application",
"boot": "auto",
"init": false,
"options": {
"mqtt_host": "",
"mqtt_port": 1883,
"mqtt_user": "",
"mqtt_password": "",
"mqtt_retain": true,
"rtl_topic": "rtl_433/+/events",
"device_topic_suffix": "",
"discovery_prefix": "homeassistant",
"discovery_interval": 600,
"force_update": false,
"log_level": "default"
},
"schema": {
"mqtt_host": "str?",
"mqtt_port": "int?",
"mqtt_user": "str?",
"mqtt_password": "str?",
"mqtt_retain": "bool",
"rtl_topic": "str",
"device_topic_suffix": "str?",
"discovery_prefix": "str",
"discovery_interval": "int",
"force_update": "bool",
"log_level": "list(default|quiet|debug)"
},
"services": ["mqtt:want"]
}