PCAN-MiniDisplay – User Manual
70
fontcolor
Defines the font color as an 8-bit RGB value. The color components
red, green, and blue have a value range from 0 to 255.
fontcolor=255,255,255 // white
bgcolor
Defines the background color as an 8-bit RGB value. The color
components red, green, and blue have a value range from 0 to 255.
bgcolor=255,0,0 // red
update_rate
Defines the update rate of a label in milliseconds. The label is
redrawn with this rate, independent of the reception of a relevant
variable.
update_rate=100 // Redraw label not faster than every 100 ms
update_rate=0 // Updates label as fast as possible
// (each time the variable is received)
sector
The value range of a variable can be divided in up to 5 sectors. For
each sector a different font color and background color can be
defined. Each sector can have the “flashing” keyword set to 1 or 0.
A sector can be enabled (1) or disabled (0).
sector=1 // sector enabled
range=0,10
fontcolor=255,0,0 // bright red
offcolor=127,0,0 // light red
bgcolor=0,0,0 // black
flashing=1
sector=1 // sector enabled
range=11,244