<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog of Travis Hydzik &#187; BRAVIA</title>
	<atom:link href="http://thydzik.com/tag/bravia/feed/" rel="self" type="application/rss+xml" />
	<link>http://thydzik.com</link>
	<description>random snippets and information</description>
	<lastBuildDate>Fri, 27 Jan 2012 13:54:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>hdmiOn &#8211; a solution to loss of DVI video EDID signal on HD TVs</title>
		<link>http://thydzik.com/hdmion-a-solution-to-loss-of-dvi-video-epid-signal-on-hd-tvs/</link>
		<comments>http://thydzik.com/hdmion-a-solution-to-loss-of-dvi-video-epid-signal-on-hd-tvs/#comments</comments>
		<pubDate>Thu, 15 May 2008 13:29:47 +0000</pubDate>
		<dc:creator>thydzik</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[ATI]]></category>
		<category><![CDATA[BRAVIA]]></category>
		<category><![CDATA[DVI]]></category>
		<category><![CDATA[EDID]]></category>
		<category><![CDATA[handshake]]></category>
		<category><![CDATA[HDMI]]></category>
		<category><![CDATA[hdmiOn]]></category>
		<category><![CDATA[loss]]></category>
		<category><![CDATA[TV]]></category>
		<category><![CDATA[unplug]]></category>

		<guid isPermaLink="false">http://thydzik.com/?p=49</guid>
		<description><![CDATA[The last few days I have been pulling my hair out over my new HD TV not working with my Home Theatre PC, specifically when switching from HDMI input to TV and back again. The HDMI signal is lost and can only be reset by either rebooting the PC or unplugging and replugging the HDMI [...]<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://thydzik.com/hdmion-a-solution-to-loss-of-dvi-video-epid-signal-on-hd-tvs/' addthis:title='hdmiOn &#8211; a solution to loss of DVI video EDID signal on HD TVs ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p>The last few days I have been pulling my hair out over my new HD TV not working with my Home Theatre PC, specifically when switching from HDMI input to TV and back again. The HDMI signal is lost and can only be reset by either rebooting the PC or unplugging and replugging the HDMI cable.</p>
<p>This problem seems to affect ATI video cards only, with NVIDEA updating their drivers to fix this. ATI <a title="737-26329: Radeon series: No display through DVI-HDMI when switching back from TV input source on LCD TVs" href="http://support.ati.com/ics/support/default.asp?deptID=894" target="_blank">states</a> that Catalyst drivers at version 7.3 or higher have fixed this problem, but that wasn&#8217;t the case for me. A Google search for <a title="ati hdmi edid Google search" href="http://www.google.com.au/search?q=ati+hdmi+edid" target="_blank">ati hdmi edid</a> shows a number of users with the same problem.</p>
<p>Hence, I present to you my solution; hdmiOn.<br />
hdmiOn  is a tiny program that turns the monitor off and on, which resends the EDID data bringing back the TV to life. Suggested usage is to assign the program to a function or hotkey.</p>
<p>Program was tested on my <a title="SONY - Australia - Product KDL46X3100" href="http://www.sony.com.au/homecinema/catalog/product.jsp?id=KDL46X3100" target="_blank">Sony BRAVIA KDL46X3100</a> with a <a title="ATI Radeon™ HD 2400 Series" href="http://ati.amd.com/products/Radeonhd2400/index.html" target="_blank">ATI HD 2400 PRO</a>.</p>
<p><a title="Download hdmiOn.exe" href="http://thydzik.com/hdmiOn/hdmiOn.exe" target="_self">Download hdmiOn.exe</a></p>
<p>As requested, source code is as follows.</p>
<pre class="brush: cpp; title: ; notranslate">
#include &lt;windows.h&gt;

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
	// Turn off monitor
	SendMessage(HWND_BROADCAST, WM_SYSCOMMAND, SC_MONITORPOWER, (LPARAM) 2);
	// Turn on monitor
	SendMessage(HWND_BROADCAST, WM_SYSCOMMAND, SC_MONITORPOWER, (LPARAM) -1);

	return 0;
}
</pre>
<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://thydzik.com/hdmion-a-solution-to-loss-of-dvi-video-epid-signal-on-hd-tvs/' addthis:title='hdmiOn &#8211; a solution to loss of DVI video EDID signal on HD TVs ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://thydzik.com/hdmion-a-solution-to-loss-of-dvi-video-epid-signal-on-hd-tvs/feed/</wfw:commentRss>
		<slash:comments>149</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Object Caching 448/460 objects using disk: basic
Content Delivery Network via t01.thydzik.com

Served from: thydzik.com @ 2012-02-10 19:36:32 -->
