Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions source/_integrations/serial.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,36 @@ baudrate:
required: false
default: 9600 Bps
type: integer
bytesize:
description: "Number of data bits. Possible values: `5=FIVEBITS`, `6=SIXBITS`, `7=SEVENBITS`, `8=EIGHTBITS`."
required: false
default: 8
type: integer
parity:
description: "Enable parity checking. Possible values: `N=PARITY_NONE`, `E=PARITY_EVEN`, `O=PARITY_ODD`, `M=PARITY_MARK`, `S=PARITY_SPACE`."
required: false
default: "N"
type: string
stopbits:
description: "Number of stop bits. Possible values: `1=STOPBITS_ONE`, `1.5=STOPBITS_ONE_POINT_FIVE`, `2=STOPBITS_TWO`."
required: false
default: 1
type: float
xonxoff:
description: Enable software flow control.
required: false
default: False
type: boolean
rtscts:
description: Enable hardware (RTS/CTS) flow control.
required: false
default: False
type: boolean
dsrdtr:
description: Enable hardware (DSR/DTR) flow control.
required: false
default: False
type: boolean
value_template:
description: "Defines a [template](/docs/configuration/templating/#processing-incoming-data) to extract a value from the serial line."
required: false
Expand Down