Warning
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 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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | // For this example configure your CAN Bricklet to loopback mode in Paper UI.
import java.util.Arrays
val FRAME_TYPE_STANDARD_DATA = 0 as short
val FRAME_TYPE_STANDARD_REMOTE = 1 as short
val FRAME_TYPE_EXTENDED_DATA = 2 as short
val FRAME_TYPE_EXTENDED_REMOTE = 3 as short
rule "send"
when
System started // Replace with trigger of your choice
then
// Change XYZ to the UID of your CAN Bricklet
val canActions = getActions("tinkerforge", "tinkerforge:brickletcan:XYZ")
var data = newShortArrayOfSize(8)
data.set(0, 42 as short)
data.set(1, 23 as short)
data.set(2, 17 as short)
// Write standard data frame with identifier 1742 and 3 bytes of data
canActions.brickletCANWriteFrame(FRAME_TYPE_STANDARD_DATA, 1742 as short, data, 3 as short)
end
rule "receive"
when
// Change XYZ to the UID of your CAN Bricklet
Channel "tinkerforge:brickletcan:XYZ:BrickletCANFrameReadable" triggered
then
// Change XYZ to the UID of your CAN Bricklet
val canActions = getActions("tinkerforge", "tinkerforge:brickletcan:XYZ")
val frame = canActions.brickletCANReadFrame()
val success = frame.get("success") as boolean
if (success) {
val frameType = frame.get("frameType") as short
if(frameType == FRAME_TYPE_STANDARD_DATA) {
logInfo("Example", "Frame Type: Standard Data")
} else if(frameType == FRAME_TYPE_STANDARD_REMOTE) {
logInfo("Example", "Frame Type: Standard Remote")
} else if(frameType == FRAME_TYPE_EXTENDED_DATA) {
logInfo("Example", "Frame Type: Extended Data")
} else if(frameType == FRAME_TYPE_EXTENDED_REMOTE) {
logInfo("Example", "Frame Type: Extended Remote")
}
logInfo("Example", "Identifier: " + frame.get("identifier"))
// Extract data
val len = frame.get("length") as int
var data = frame.get("data") as short[]
data = Arrays.copyOfRange(data, 0, len)
logInfo("Example", "Data (Length: " + len + "): " + Arrays.toString(data))
} else {
logInfo("Example", "Failed to read frame")
}
end
|
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.
Frame Readable
¶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
Write Error Level
¶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.
Read Error Level
¶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.
Transceiver Disabled
¶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.
Write Timeouts
¶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.
Read Register Overflows
¶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.
Read Buffer Overflow Count
¶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))
brickletCANWriteFrame
(short frameType, long identifier, short[] data, short length)¶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:
brickletCANReadFrame
()¶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:
brickletCANGetConfiguration
()¶Return Map: |
|
---|
Returns the configuration as set by the thing configuration.
The following constants are available for this function:
For baudRate:
For transceiverMode:
brickletCANSetReadFilter
(short mode, long mask, long filter1, long filter2)¶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:
The mask and filters are used as bit masks. Their usage depends on the mode:
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:
brickletCANGetReadFilter
()¶Return Map: |
|
---|
Returns the read filter as set by SetReadFilter()
.
The following constants are available for this function:
For mode:
brickletCANGetErrorLog
()¶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:
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.ReadFrame()
function.brickletCANGetIdentity
()¶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.