-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path_config.example.yml
37 lines (26 loc) · 1.49 KB
/
_config.example.yml
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
---
# Port number to listen on
port: 8080
#Default (info) - error, warn, info, verbose, debug, silly
loglevel: "info"
#is there an external device config file: true, false
deviceconfig: true
mqtt:
# Specify your MQTT Broker's hostname or IP address here
host: "mqtt://192.168.1.2"
# Preface for the topics $PREFACE/$DEVICE_NAME/$PROPERTY
preface: smartthings
# These are legacy setting for integration for ha or hassio. Never used them but retained for anybody who has been using the bridge
# The write and read suffixes need to be different to be able to differentiate when state comes from SmartThings or when its coming from the physical device/application
# Suffix for the topics that receive state from SmartThings $PREFACE/$DEVICE_NAME/$PROPERTY/$STATE_READ_SUFFIX
# Your physical device or application should subscribe to this topic to get updated status from SmartThings
#state_read_suffix: state
# Suffix for the topics to send state back to SmartThings $PREFACE/$DEVICE_NAME/$PROPERTY/$STATE_WRITE_SUFFIX
# your physical device or application should write to this topic to update the state of SmartThings devices that support setStatus
# state_write_suffix: set_state
# Suffix for the command topics $PREFACE/$DEVICE_NAME/$PROPERTY/$COMMAND_SUFFIX
#command_suffix: cmd
# Other optional settings from https://www.npmjs.com/package/mqtt#mqttclientstreambuilder-options
# username: AzureDiamond
# password: hunter2
retain: false