File tree 3 files changed +41
-1
lines changed
src/assemble/resources/addons/conf/services
3 files changed +41
-1
lines changed Original file line number Diff line number Diff line change 315
315
<artifactId >org.openhab.binding.modbus</artifactId >
316
316
<version >${oh1.version} </version >
317
317
</dependency >
318
+ <dependency >
319
+ <groupId >org.openhab.binding</groupId >
320
+ <artifactId >org.openhab.binding.mqtt</artifactId >
321
+ <version >${oh1.version} </version >
322
+ </dependency >
318
323
<dependency >
319
324
<groupId >org.openhab.binding</groupId >
320
325
<artifactId >org.openhab.binding.networkhealth</artifactId >
467
472
<groupId >org.openhab.io</groupId >
468
473
<artifactId >org.openhab.io.multimedia.tts.marytts</artifactId >
469
474
<version >${oh1.version} </version >
470
- </dependency >
475
+ </dependency >
476
+ <dependency >
477
+ <groupId >org.openhab.io</groupId >
478
+ <artifactId >org.openhab.io.transport.mqtt</artifactId >
479
+ <version >${oh1.version} </version >
480
+ </dependency >
471
481
</dependencies >
472
482
473
483
<repositories >
Original file line number Diff line number Diff line change
1
+ # URL to the MQTT broker, e.g. tcp://localhost:1883 or ssl://localhost:8883
2
+ # <broker>.url=tcp://localhost:1883
3
+
4
+ # Optional. Client id (max 23 chars) to use when connecting to the broker.
5
+ # If not provided a default one is generated.
6
+ # <broker>.clientId=<clientid>
7
+
8
+ # Optional. User id to authenticate with the broker.
9
+ # <broker>.user=<username>
10
+
11
+ # Optional. Password to authenticate with the broker.
12
+ # <broker>.pwd=<password>
13
+
14
+ # Optional. Set the quality of service level for sending messages to this broker.
15
+ # Possible values are 0 (Deliver at most once),1 (Deliver at least once) or 2
16
+ # (Deliver exactly once). Defaults to 0.
17
+ # <broker>.qos=<qos>
18
+
19
+ # Optional. True or false. Defines if the broker should retain the messages sent to
20
+ # it. Defaults to false.
21
+ # <broker>.retain=<retain>
22
+
23
+ # Optional. True or false. Defines if messages are published asynchronously or
24
+ # synchronously. Defaults to true.
25
+ # <broker>.async=<async>
26
+
27
+ # Optional. Defines the last will and testament that is sent when this client goes offline
28
+ # Format: topic:message:qos:retained <br/>
29
+ # <broker>.lwt=<last will definition>
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ All optional add-ons for openHAB 2 are [available in a separate download](https:
59
59
| LCN | Binding |
60
60
| Milight | Binding |
61
61
| Modbus | Binding |
62
+ | MQTT | Binding |
62
63
| Networkhealth | Binding |
63
64
| Nibeheatpump | Binding |
64
65
| NTP | Binding |
You can’t perform that action at this time.
0 commit comments