Bemerkung
Die openHAB-Dokumentation ist nur auf Englisch verfügbar.
Warnung
The openHAB bindings are still in beta, but the development was stopped.
This is the description of the openHAB API bindings for the CAN Bricklet. General information and technical specifications for the CAN Bricklet are summarized in its hardware description.
An installation guide for the openHAB API bindings is part of their general description.
The example code below is Public Domain (CC0 1.0).
Download (ExampleLoopback.rules)
1// For this example configure your CAN Bricklet to loopback mode in Paper UI.
2
3import java.util.Arrays
4
5val FRAME_TYPE_STANDARD_DATA = 0 as short
6val FRAME_TYPE_STANDARD_REMOTE = 1 as short
7val FRAME_TYPE_EXTENDED_DATA = 2 as short
8val FRAME_TYPE_EXTENDED_REMOTE = 3 as short
9
10rule "send"
11when
12 System started // Replace with trigger of your choice
13then
14 // Change XYZ to the UID of your CAN Bricklet
15 val canActions = getActions("tinkerforge", "tinkerforge:brickletcan:XYZ")
16
17 var data = newShortArrayOfSize(8)
18 data.set(0, 42 as short)
19 data.set(1, 23 as short)
20 data.set(2, 17 as short)
21
22 // Write standard data frame with identifier 1742 and 3 bytes of data
23 canActions.brickletCANWriteFrame(FRAME_TYPE_STANDARD_DATA, 1742 as short, data, 3 as short)
24end
25
26rule "receive"
27when
28 // Change XYZ to the UID of your CAN Bricklet
29 Channel "tinkerforge:brickletcan:XYZ:BrickletCANFrameReadable" triggered
30then
31 // Change XYZ to the UID of your CAN Bricklet
32 val canActions = getActions("tinkerforge", "tinkerforge:brickletcan:XYZ")
33 val frame = canActions.brickletCANReadFrame()
34
35 val success = frame.get("success") as boolean
36 if (success) {
37 val frameType = frame.get("frameType") as short
38
39 if(frameType == FRAME_TYPE_STANDARD_DATA) {
40 logInfo("Example", "Frame Type: Standard Data")
41 } else if(frameType == FRAME_TYPE_STANDARD_REMOTE) {
42 logInfo("Example", "Frame Type: Standard Remote")
43 } else if(frameType == FRAME_TYPE_EXTENDED_DATA) {
44 logInfo("Example", "Frame Type: Extended Data")
45 } else if(frameType == FRAME_TYPE_EXTENDED_REMOTE) {
46 logInfo("Example", "Frame Type: Extended Remote")
47 }
48
49 logInfo("Example", "Identifier: " + frame.get("identifier"))
50
51 // Extract data
52 val len = frame.get("length") as int
53 var data = frame.get("data") as short[]
54 data = Arrays.copyOfRange(data, 0, len)
55
56 logInfo("Example", "Data (Length: " + len + "): " + Arrays.toString(data))
57 } else {
58 logInfo("Example", "Failed to read frame")
59 }
60end
UID:
- tinkerforge:brickletcan:[UID]
Required firmware version:
- 2.0.1
Firmware update supported:
- yes
Channels: Actions: Parameters:
- Baud Rate – Type: Choice, Default: 125kbps
- The baud rate to send/receive with.
- Options: 10kbps, 20kbps, 50kbps, 125kbps, 250kbps, 500kbps, 800kbps, 1000kbps
- Transceiver Mode – Type: Choice, Default: Normal
- The CAN transceiver has three different modes:
- Normal: Reads from and writes to the CAN bus and performs active bus error detection and acknowledgement.
- Loopback: All reads and writes are performed internally. The transceiver is disconnected from the actual CAN bus.
- Read-Only: Only reads from the CAN bus, but does neither active bus error detection nor acknowledgement. Only the receiving part of the transceiver is connected to the CAN bus.
- Options: Normal, Loopback, Read Only
- Write Timeout – Type: integer, Default: 0, Min: -1, Max: 2147483647
- The write timeout has three different modes that define how a failed frame transmission should be handled:
- One-Shot (= -1): Only one transmission attempt will be made. If the transmission fails then the frame is discarded.
- Infinite (= 0): Infinite transmission attempts will be made. The frame will never be discarded.
- Milliseconds (> 0): A limited number of transmission attempts will be made. If the frame could not be transmitted successfully after the configured number of milliseconds then the frame is discarded.
This channel is triggered when a new frame was received and can be read out. The channel will only trigger again if the frame was read.
Type:
- Trigger (system.trigger)
UID:
- tinkerforge:brickletcan:[UID]:BrickletCANFrameReadable
Read only:
- No
The write error level indicates the current level of checksum, acknowledgement, form, bit and stuffing errors during CAN bus write operations.
When the write error level extends 255 then the CAN transceiver gets disabled and no frames can be transmitted or received anymore. The CAN transceiver will automatically be activated again after the CAN bus is idle for a while.
The write error level is not available in read-only transceiver mode and is reset to 0 as a side effect of changing the configuration or the read filter.
This channel will only update after the configured update interval, not on changed values.
Type:
- Number:Dimensionless
UID:
- tinkerforge:brickletcan:[UID]:BrickletCANWriteErrorLevel
Read only:
- Yes
Parameters:
- Update Interval – Type: integer, Default: 1000, Unit: ms
- Specifies the update interval in milliseconds. A value of 0 disables automatic updates.
The read error level indicates the current level of checksum, acknowledgement, form, bit and stuffing errors during CAN bus read operations.
The read error level is not available in read-only transceiver mode and is reset to 0 as a side effect of changing the configuration or the read filter.
This channel will only update after the configured update interval, not on changed values.
Type:
- Number:Dimensionless
UID:
- tinkerforge:brickletcan:[UID]:BrickletCANReadErrorLevel
Read only:
- Yes
Parameters:
- Update Interval – Type: integer, Default: 1000, Unit: ms
- Specifies the update interval in milliseconds. A value of 0 disables automatic updates.
When the write error level extends 255 then the CAN transceiver gets disabled and no frames can be transmitted or received anymore. The CAN transceiver will automatically be activated again after the CAN bus is idle for a while.
This channel will only update after the configured update interval, not on changed values.
Type:
- Contact
UID:
- tinkerforge:brickletcan:[UID]:BrickletCANTransceiverDisabled
Read only:
- No
Parameters:
- Update Interval – Type: integer, Default: 1000, Unit: ms
- Specifies the update interval in milliseconds. A value of 0 disables automatic updates.
A write timeout occurs if a frame could not be transmitted before the configured write timeout expired.
This channel will only update after the configured update interval, not on changed values.
Type:
- Number:Dimensionless
UID:
- tinkerforge:brickletcan:[UID]:BrickletCANWriteTimeoutCount
Read only:
- Yes
Parameters:
- Update Interval – Type: integer, Default: 1000, Unit: ms
- Specifies the update interval in milliseconds. A value of 0 disables automatic updates.
A read register overflow occurs if the read register of the CAN transceiver still contains the last received frame when the next frame arrives. In this case the newly arrived frame is lost. This happens if the CAN transceiver receives more frames than the Bricklet can handle. Using the read filter (see the setReadFilter action) can help to reduce the amount of received frames. This count is not exact, but a lower bound, because the Bricklet might not able detect all overflows if they occur in rapid succession.
This channel will only update after the configured update interval, not on changed values.
Type:
- Number:Dimensionless
UID:
- tinkerforge:brickletcan:[UID]:BrickletCANReadRegisterOverflowCount
Read only:
- Yes
Parameters:
- Update Interval – Type: integer, Default: 1000, Unit: ms
- Specifies the update interval in milliseconds. A value of 0 disables automatic updates.
A read buffer overflow occurs if the read buffer of the Bricklet is already full when the next frame should be read from the read register of the CAN transceiver. In this case the frame in the read register is lost. This happens if the CAN transceiver receives more frames to be added to the read buffer than are removed from the read buffer using the readFrame action.
This channel will only update after the configured update interval, not on changed values.
Type:
- Number:Dimensionless
UID:
- tinkerforge:brickletcan:[UID]:BrickletCANReadBufferOverflowCount
Read only:
- Yes
Parameters:
- Update Interval – Type: integer, Default: 1000, Unit: ms
- Specifies the update interval in milliseconds. A value of 0 disables automatic updates.
Actions can be used in rules by creating an action object. All actions return a Map<String, Object>. Returned values can be accessed by name, sometimes the type deduction needs some hints, as shown below:
val actions = getActions("tinkerforge", "tinkerforge:brickletcan:[UID]")
val hwVersion = actions.brickletCANGetIdentity().get("hardwareVersion") as short[]
logInfo("Example", "Hardware version: " + hwVersion.get(0) + "." + hwVersion.get(1) + "." + hwVersion.get(2))
| Parameters: |
|
|---|---|
| Return Map: |
|
Writes a data or remote frame to the write buffer to be transmitted over the CAN transceiver.
The Bricklet supports the standard 11-bit (CAN 2.0A) and the additional extended
18-bit (CAN 2.0B) identifiers. For standard frames the Bricklet uses bit 0 to 10
from the identifier parameter as standard 11-bit identifier. For extended
frames the Bricklet additionally uses bit 11 to 28 from the identifier
parameter as extended 18-bit identifier.
For remote frames the data parameter is ignored.
Returns true if the frame was successfully added to the write buffer. Returns false if the frame could not be added because write buffer is already full.
The write buffer can overflow if frames are written to it at a higher rate
than the Bricklet can transmitted them over the CAN transceiver. This may
happen if the CAN transceiver is configured as read-only or is using a low baud
rate (see the thing configuration). It can also happen if the CAN bus is
congested and the frame cannot be transmitted because it constantly loses
arbitration or because the CAN transceiver is currently disabled due to a high
write error level (see Write Error Level).
The following constants are available for this function:
For frameType:
val FRAME_TYPE_STANDARD_DATA = 0
val FRAME_TYPE_STANDARD_REMOTE = 1
val FRAME_TYPE_EXTENDED_DATA = 2
val FRAME_TYPE_EXTENDED_REMOTE = 3
| Return Map: |
|
|---|
Tries to read the next data or remote frame from the read buffer and return it.
If a frame was successfully read, then the success return value is set to
true and the other return values contain the frame. If the read buffer is
empty and no frame could be read, then the success return value is set to
false and the other return values contain invalid data.
The identifier return value follows the identifier format described for
WriteFrame().
For remote frames the data return value always contains invalid data.
A configurable read filter can be used to define which frames should be
received by the CAN transceiver and put into the read buffer (see
SetReadFilter()).
The following constants are available for this function:
For frameType:
val FRAME_TYPE_STANDARD_DATA = 0
val FRAME_TYPE_STANDARD_REMOTE = 1
val FRAME_TYPE_EXTENDED_DATA = 2
val FRAME_TYPE_EXTENDED_REMOTE = 3
| Return Map: |
|
|---|
Returns the configuration as set by the thing configuration.
The following constants are available for this function:
For baudRate:
val BAUD_RATE_10KBPS = 0
val BAUD_RATE_20KBPS = 1
val BAUD_RATE_50KBPS = 2
val BAUD_RATE_125KBPS = 3
val BAUD_RATE_250KBPS = 4
val BAUD_RATE_500KBPS = 5
val BAUD_RATE_800KBPS = 6
val BAUD_RATE_1000KBPS = 7
For transceiverMode:
val TRANSCEIVER_MODE_NORMAL = 0
val TRANSCEIVER_MODE_LOOPBACK = 1
val TRANSCEIVER_MODE_READ_ONLY = 2
| Parameters: |
|
|---|
Set the read filter configuration. This can be used to define which frames should be received by the CAN transceiver and put into the read buffer.
The read filter has five different modes that define if and how the mask and the two filters are applied:
Disabled: No filtering is applied at all. All frames are received even incomplete and defective frames. This mode should be used for debugging only.
Accept-All: All complete and error-free frames are received.
Match-Standard: Only standard frames with a matching identifier are received.
Match-Standard-and-Data: Only standard frames with matching identifier and data bytes are received.
Match-Extended: Only extended frames with a matching identifier are received.
The mask and filters are used as bit masks. Their usage depends on the mode:
Disabled: Mask and filters are ignored.
Accept-All: Mask and filters are ignored.
Match-Standard: Bit 0 to 10 (11 bits) of mask and filters are used to match the 11-bit identifier of standard frames.
Match-Standard-and-Data: Bit 0 to 10 (11 bits) of mask and filters are used to match the 11-bit identifier of standard frames. Bit 11 to 18 (8 bits) and bit 19 to 26 (8 bits) of mask and filters are used to match the first and second data byte (if present) of standard frames.
Match-Extended: Bit 0 to 10 (11 bits) of mask and filters are used to match the standard 11-bit identifier part of extended frames. Bit 11 to 28 (18 bits) of mask and filters are used to match the extended 18-bit identifier part of extended frames.
The mask and filters are applied in this way: The mask is used to select the identifier and data bits that should be compared to the corresponding filter bits. All unselected bits are automatically accepted. All selected bits have to match one of the filters to be accepted. If all bits for the selected mode are accepted then the frame is accepted and is added to the read buffer.
Mask Bit |
Filter Bit |
Identifier/Data Bit |
Result |
|---|---|---|---|
0 |
X |
X |
Accept |
1 |
0 |
0 |
Accept |
1 |
0 |
1 |
Reject |
1 |
1 |
0 |
Reject |
1 |
1 |
1 |
Accept |
For example, to receive standard frames with identifier 0x123 only the mode can be set to Match-Standard with 0x7FF as mask and 0x123 as filter 1 and filter 2. The mask of 0x7FF selects all 11 identifier bits for matching so that the identifier has to be exactly 0x123 to be accepted.
To accept identifier 0x123 and identifier 0x456 at the same time, just set filter 2 to 0x456 and keep mask and filter 1 unchanged.
The following constants are available for this function:
For mode:
val FILTER_MODE_DISABLED = 0
val FILTER_MODE_ACCEPT_ALL = 1
val FILTER_MODE_MATCH_STANDARD = 2
val FILTER_MODE_MATCH_STANDARD_AND_DATA = 3
val FILTER_MODE_MATCH_EXTENDED = 4
| Return Map: |
|
|---|
Returns the read filter as set by SetReadFilter().
The following constants are available for this function:
For mode:
val FILTER_MODE_DISABLED = 0
val FILTER_MODE_ACCEPT_ALL = 1
val FILTER_MODE_MATCH_STANDARD = 2
val FILTER_MODE_MATCH_STANDARD_AND_DATA = 3
val FILTER_MODE_MATCH_EXTENDED = 4
| Return Map: |
|
|---|
Returns information about different kinds of errors.
The write and read error levels indicate the current level of checksum, acknowledgement, form, bit and stuffing errors during CAN bus write and read operations.
When the write error level exceeds 255 then the CAN transceiver gets disabled and no frames can be transmitted or received anymore. The CAN transceiver will automatically be activated again after the CAN bus is idle for a while.
The write and read error levels are not available in read-only transceiver mode (see the thing configuration) and are reset to 0 as a side effect of changing the configuration or the read filter.
The write timeout, read register and buffer overflow counts represents the number of these errors:
A write timeout occurs if a frame could not be transmitted before the configured write timeout expired (see the thing configuration).
A read register overflow occurs if the read register of the CAN transceiver
still contains the last received frame when the next frame arrives. In this
case the newly arrived frame is lost. This happens if the CAN transceiver
receives more frames than the Bricklet can handle. Using the read filter
(see SetReadFilter()) can help to reduce the amount of received frames.
This count is not exact, but a lower bound, because the Bricklet might not
able detect all overflows if they occur in rapid succession.
A read buffer overflow occurs if the read buffer of the Bricklet is already
full when the next frame should be read from the read register of the CAN
transceiver. In this case the frame in the read register is lost. This
happens if the CAN transceiver receives more frames to be added to the read
buffer than are removed from the read buffer using the ReadFrame()
function.
| Return Map: |
|
|---|
Returns the UID, the UID where the Bricklet is connected to, the position, the hardware and firmware version as well as the device identifier.
The position can be 'a', 'b', 'c', 'd', 'e', 'f', 'g' or 'h' (Bricklet Port). A Bricklet connected to an Isolator Bricklet is always at position 'z'.
The device identifier numbers can be found here.