The German Maker supplier Watterott sells a HDMI/DVI to RGB Display adapter. The Adapter itself contains a ATmega32U4 controller attached to USB, which works as touchcontroller. The designs and firmware for the adapter are available on GitHub. I am not sure if we can call this OpenSource because of a missing License file.

Beside the HDMI/DVI Bridge controller the board contains a EEPREOM to store the EDID data. EDID is needed to provide the attached Host device like your PC or Mac to identify what resolution and capabilities your Display has.

Due to the fact that the adapter supports a wide range of displays the EEPROM is not programmed on a freshly ordered board.

Flashing the EDID EEPROM

Watterott suggests to flash the EEPROM through the ATmega32U4 controller and provides a short description how to do this. But this requires to close two solder jumpers. I decided to flash the EDID EEPROM with my Bus Pirate and the Delock 65168

For me the Delock 65168 is the perfect toy to play around with EDID or HDMI CEC.

The host controller communicates through I2C with the EDID EEPROM. There are at least 3 line needed to establish the I2C communication. You need a good ground connection (GND) and a clock line (SCL) and of course the data line (SDA)

Comments