HDMI 1.3-compliant
HDMI 1.3-compliant
VGA (HD-15)
3.5mm stereo audio jack
Up to 1920x1200 @ 60Hz
USB-powered (cable included)
0C to 40C (32F to 104F)
-20C to 70C (-4F to 158F)
60mm x 40mm x 20mm (2.36" x 1.57" x 0.79")
40g (1.41 oz)
Package Contents
HDMI to VGA Converter with Audio - White
USB power cable
User manual
HDMI to VGA Converter with Audio - WhiteThe HDMI to VGA Converter with Audio - White is a compact and reliable device that converts HDMI video signals to VGA (Video Graphics Array) signals, allowing users to connect HDMI devices to VGA displays or projectors. This converter also supports audio transmission, making it a versatile solution for various applications.Technical Specifications:Input: HDMI (Type A)
Output: VGA (HD-15) + 3.5mm Audio Jack
Resolution: Up to 1080p (1920x1080) @ 60Hz
Audio: 2-Channel Analog Audio (Stereo)
Power: USB Bus-Powered (No External Power Required)
Operating Temperature: 0C to 40C (32F to 104F)
Dimensions: 60mm x 40mm x 20mm (2.36" x 1.57" x 0.79")Code Examples:Example 1: Using the HDMI to VGA Converter with an Arduino BoardIn this example, we will use the HDMI to VGA Converter to display the output of an Arduino board on a VGA monitor.Hardware Requirements:Arduino Board (e.g., Arduino Uno)
HDMI to VGA Converter with Audio - White
VGA MonitorSoftware Requirements:Arduino IDE (Version 1.8 or later)Code:
```c++
#include < Adafruit_GFX.h>
#include <Adafruit_SPITFT.h>#define VGA_PIN 11 // Pin for VGA signalAdafruit_SPITFT tft = Adafruit_SPITFT(VGA_PIN);void setup() {
tft.begin();
tft.fillScreen(ILI9341_BLACK);
tft.setTextColor(ILI9341_WHITE);
tft.setTextSize(2);
tft.println("Hello, World!");
}void loop() {
// Nothing to do here, output is displayed on VGA monitor
}
```
Explanation:In this example, we use the Arduino board to generate a VGA signal, which is then converted to HDMI using the HDMI to VGA Converter. The output is displayed on a VGA monitor.Example 2: Using the HDMI to VGA Converter with a Raspberry PiIn this example, we will use the HDMI to VGA Converter to display the output of a Raspberry Pi on a VGA projector.Hardware Requirements:Raspberry Pi (e.g., Raspberry Pi 4)
HDMI to VGA Converter with Audio - White
VGA ProjectorSoftware Requirements:Raspbian OS (Version 10 or later)Code:
```bash
# Configure the Raspberry Pi to output VGA signal
sudo raspi-config
```
Select:Advanced Options
Resolution
VGA (640x480)Explanation:In this example, we configure the Raspberry Pi to output a VGA signal, which is then converted to HDMI using the HDMI to VGA Converter. The output is displayed on a VGA projector.Example 3: Using the HDMI to VGA Converter with a PC (Windows)In this example, we will use the HDMI to VGA Converter to extend the desktop of a Windows PC to a VGA monitor.Hardware Requirements:PC (Windows 10 or later)
HDMI to VGA Converter with Audio - White
VGA MonitorSoftware Requirements:Windows 10 or laterCode:Not applicable (no code required)Explanation:In this example, we connect the HDMI output of the PC to the HDMI input of the HDMI to VGA Converter. The converter then outputs a VGA signal, which is connected to the VGA monitor. The Windows PC recognizes the VGA monitor as an extended desktop, allowing us to display content on both the primary monitor and the VGA monitor.Note: These examples are for illustration purposes only and may require additional configuration or software setup depending on the specific use case.