I'm trying to get my CAN-Messages shown on the PCAN MiniDisplay. CAN bus connection works and I can trace messaages I'm sending. The problem is, I don't get any values to the display (I've tried both plotter and label for numeric display). Could someone help me with this issue? I'll copy my scene below. Message id is 0x100, byte order intel and the signal I'm working on with is in the first two bytes of the message.
Thanks in advance!
Code: Select all
[message1]
enable=1 // 0 => disables message proccessing, 1 => enables message processing
name="Act_values"
canid=0x100 // ID
frametype=0 // 0 => 11 Bit, 1 => 29 Bit
channel=0 // 0 => CAN channel 1, 1 => CAN channel 2
timeout=0 // 0 => disables timeout function, 1 => enables timeout function
[variable1]
name="Voltage"
messagename="Act_values"
position=0,16 // Bit start and length
byteorder=0 // 0 => Intel, 1 => Motorola
scale=0.0009765923
offset=0
vartype=1 // Representation of CAN data: 0 => unsigned, 1 => signed, 2 => float
datatype=2 // Representation of result: 0 => unsigned, 1 => signed, 2 => float
maxval=35
minval=0
timeoutval=0
[label1]
name="label1" // Name of the label for reference
position=11,154 // X-position,Y-position in pixel; 0,0 is the top left corner
font_idx=0
length=8 // Number of characters
initval="Voltage:"
fontcolor=255,255,255 // RGB value
bgcolor=48,48,48 // RGB value
[label2]
name="label2" // Name of the label for reference
position=88,154 // X-position,Y-position in pixel; 0,0 is the top left corner
font_idx=0
fmt_string="%03f V" // Format definition
var_name="Voltage" // Reference to the variable
length=6 // Number of characters
initval="--- V"
fontcolor=111,147,252 // RGB value green
bgcolor=48,48,48 // RGB value black