mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-25 14:55:55 +01:00
[serial] Allow custom baudrate and add option 2400 (#13265)
Fix #13131 Signed-off-by: Laurent Garnier <lg.hc@free.fr>
This commit is contained in:
parent
41fcdd6c71
commit
8e8eb059fd
@ -14,6 +14,7 @@ thing-type.serial.serialDevice.description = Represents a device
|
||||
|
||||
thing-type.config.serial.serialBridge.baudRate.label = Baud Rate
|
||||
thing-type.config.serial.serialBridge.baudRate.description = Set the baud rate
|
||||
thing-type.config.serial.serialBridge.baudRate.option.2400 = 2400
|
||||
thing-type.config.serial.serialBridge.baudRate.option.4800 = 4800
|
||||
thing-type.config.serial.serialBridge.baudRate.option.9600 = 9600
|
||||
thing-type.config.serial.serialBridge.baudRate.option.19200 = 19200
|
||||
|
@ -26,8 +26,10 @@
|
||||
<advanced>true</advanced>
|
||||
<label>Baud Rate</label>
|
||||
<description>Set the baud rate</description>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
<default>9600</default>
|
||||
<options>
|
||||
<option value="2400">2400</option>
|
||||
<option value="4800">4800</option>
|
||||
<option value="9600">9600</option>
|
||||
<option value="19200">19200</option>
|
||||
|
Loading…
Reference in New Issue
Block a user