Engage 10

From Bloominglabs
Revision as of 00:11, 12 December 2016 by Willrobot (talk | contribs) (Created page with "Engage 10 Wireless LCD Model number : W10T200-HWH1WH The following file is used to make the screen work on a rasberry pi. 60-pluggable.conf Formatting is completely broken...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Engage 10 Wireless LCD Model number : W10T200-HWH1WH

The following file is used to make the screen work on a rasberry pi.

60-pluggable.conf

Formatting is completely broken, I can't figure out how to make the wiki show unformatted code and it is late.

<syntaxhighlight lang="c++">

Section "Device"

 Identifier "displaylink device" 
 driver "fbdev" 
 Option "fbdev" "/dev/fb1" 
 Option "ShadowFB" "off"

EndSection

Section "Monitor"

 Identifier "displaylink monitor" 

EndSection

Section "Screen"

 Identifier "displaylink screen" 
 Device "displaylink device" 
 Monitor "displaylink monitor"
 DefaultDepth    16
 SubSection "Display"
   Depth    16
   Modes     "1024x600"
 EndSubSection

EndSection

Section "ServerLayout"

 Identifier "default" 
 Screen 0 "displaylink screen" 0 0 

EndSection

</syntaxhighlight>