-
Notifications
You must be signed in to change notification settings - Fork 7
/
knx2mqtt.conf.example
42 lines (42 loc) · 1.02 KB
/
knx2mqtt.conf.example
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
40
41
42
{
"mqtt_host": "localhost",
"mqtt_port": "1883"
"mqtt_port": "keepalive"
"mqtt_clientid": "knx2mqtt"
"mqtt_user": "knx2mqtt",
"mqtt_password": "t0p_s3cr3t",
"mqtt_topic": "bus/knx",
"mqtt_tls": "false",
"mqtt_tls_version": "TLSv1.2",
"mqtt_verify_mode": "CERT_NONE",
"mqtt_ssl_ca_path": "/etc/ssl/myca.pem",
"mqtt_tls_no_verify": "false",
"knx_host": "10.0.0.11",
"knx_local_ip": "10.0.7.12",
"knx_individual_address": "15.15.250",
"knx_no_queue": "true",
"verbose": "false",
"items": [
{
"address": "4/0/11",
"type": "DPTBinary",
"mqtt_subscribe": "true"
},
{
"address": "4/0/21",
"type": "DPTUpDown"
},
{
"address": "5/0/11",
"type": "DPTTemperature"
},
{
"address": "5/0/17",
"type": "DPTHumidity"
},
{
"address": "5/0/18",
"type": "DPTPartsPerMillion"
}
]
}