I have a multi-display system with two displays on MPF v56 branch
In config.yaml I have:
displays:
display_red:
width: 1024
height: 600
display_blue:
width: 1024
height: 600
display_both:
width: 2048
height: 600
default: true
and:
slides:
base_slide:
widgets:
- type: display
source_display: display_red
width: 1024
height: 600
x: left
anchor_x: left
- type: display
source_display: display_blue
width: 1024
height: 600
x: right
anchor_x: right
I have service in the modes list and the widget_styles defined as:
# additionally you need to define some slide styles which are used in the mode
widget_styles:
medium:
font_name: Arial
font_size: 40 # for LCDs you need to increase this to 30-40. also change the font above
adjust_top: 1
adjust_bottom: 1
small:
font_name: Arial
font_size: 32 # for LCDs you need to increase this to 30-40. also change the font above
adjust_top: 2
adjust_bottom: 3
I need to get the service mode to show up on the display_red target, right now when service mode loads it is just showing a blank screen with no text on it what-so-ever.
Any thoughts? Appreciate the help.