
If you have bought a Gert VGA 666 VGA adapter kit (available here, £6.00 at the time of writing), here are some instructions for how to assemble the kit, and how to configure Raspbian to use the adapter instead of its normal video output system.
For assembly instructions, see last page of the manual in GitHub. Make sure that you use the image below the words 'Through-hole side'. Alternatively, you can use the pictorial instructions on this site or this blog
When you have finished soldering the board, you can plug it in and power up your Pi. The adapter won't work immediately, so you will need an intermediate solution to get video. If possible, we recommend borrowing an HDMI or DVI-D monitor. If this is not possible, and you only have a composite TV or monitor (the sort with with a yellow RCA input), you can use that temporarily. You will, however, need a special TRRS (4-pole 3.5mm jack) cable for this (see the pictorial buying guide for more information). If you only have an RCA cable, you can temporarily connect the cable directly to the Pi by soldering the video wire (inner wire) to a PAD on the bottom of the Pi marked PP24. The shield of the RCA cable needs to be soldered to GND, and you can use nearby soldered PP6 for that. Please note, though, that this can be difficult, and and it can be easy to damage your Pi inadvertently. Soldering to the board will void your warranty so only try this if there is no other solution and you are very confident in your soldering skills.
However you manage it achieve it, when you are using composite video, you must "inform" NOOBS that you are doing so. Watch the ACT LED to see what happens when you boot NOOBS, and when booting seems to have finished, immediately press either the 3 key to get PAL (European ETC) or 4 key for NTSC (American) composite video. When you get video, DO NOT follow the instructions to make this permanent: if you do this, or the Pi will be locked into composite, and your VGA adapter might no longer work. If this does seem to have happened, hold shift during boot to get back into NOOBS, and press 1 to get back to HDMI video.
Now you have booted up, follow the instructions below to install the necessary drivers for the Gert VGA 666 adapter. You will need an ethernet connection for most of them: simply plug in the ethernet cable you normally use to get an internet connection, and Raspbian automatically will use it.
1. Add settings for the board to /boot/config.txt
Code: Select all
sudo nano /boot/config.txt
Code: Select all
dtoverlay=vga666
enable_dpi_lcd=1
display_default_lcd=1
2. You will have to disable the SPI and I2C interfaces, otherwise VGA666 will not function correctly. Use the Advanced options from raspi-config to disable SPI and I2C.
Code: Select all
sudo raspi-config
4 Now adjust the resolution for your monitor (see this post and this one for more information). For the VGA board use 'dpi_' instead of 'hdmi_'.
For example, you could add these lines to /boot/config.txt
Code: Select all
dpi_group=2
dpi_mode=35
Alternatively, try the following variations:
# For 1920x1080 60Hz (1080p)
Code: Select all
dpi_group=2
dpi_mode=82
# For 1024x768 60Hz
Code: Select all
dpi_group=2
dpi_mode=16
# For 800x600 60Hz
Code: Select all
dpi_group=2
dpi_mode=9
P.S. This topic may have further information, such as which GPIO pins you can still use
[Edited seven times, latest edit 8 January 2016.]