-
Notifications
You must be signed in to change notification settings - Fork 15
/
broadlink-thermostat.conf
41 lines (34 loc) · 1.2 KB
/
broadlink-thermostat.conf
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
## lookup parameters
lookup_timeout = 20
#send data every x seconds
loop_time = 10
#rediscover devices every x seconds
rediscover_time = 600
# auto_mode = 1 for auto (scheduled/timed) mode, 0 for manual mode.
auto_mode = 0
# loop_mode refers to index in [ "12345,67", "123456,7", "1234567" ]
# E.g. loop_mode = 0 ("12345,67") means Saturday and Sunday follow the "weekend" schedule
# loop_mode = 2 ("1234567") means every day (including Saturday and Sunday) follows the "weekday" schedule
loop_mode = 0
#lock device
remote_lock = 0
#timezone
time_zone = 'Europe/Berlin'
## MQTT connection parameters
mqtt_broker = 'mqtt' # default: 'localhost'
mqtt_port = 1883 # default: 1883
mqtt_clientid = 'broadlink'
mqttname = 'mqtt'
mqtt_username = ''
mqtt_password = ''
mqtt_topic_prefix = '/broadlink'
mqtt_retain = False
mqtt_qos = 2
## MQTT TLS parameters
# Required with TLS: a string path to the Certificate Authority certificate files that are to be treated as trusted by this client.
# ca_certs = '/path/to/ca_certsfile'
# Optional Clients Cert/Key
# certfile = '/path/to/certfile'
# keyfile = '/path/to/keyfile'
# Required TLS version. Valid values: 'sslv3', 'tlsv1', 'tlsv1.2'
# tls_version = 'tlsv1.2'