Skip to content

Commit

Permalink
Added array to EdidDecode
Browse files Browse the repository at this point in the history
  • Loading branch information
claar committed May 17, 2011
1 parent eb22cef commit a16d377
Show file tree
Hide file tree
Showing 3 changed files with 240 additions and 162 deletions.
3 changes: 1 addition & 2 deletions README.markdown
Expand Up @@ -7,5 +7,4 @@ edid decoder](http://cgit.freedesktop.org/xorg/app/edid-decode/).
It attempts to keep the changes from the original as minimal as possible
to ease integrating future improvements.

In the future, this project will (hopefully) include an access mechinism
to retrieve individual edid components (likely just an associative array).
Usage instructions and examples can be found in index.php.
4 changes: 3 additions & 1 deletion index.php
Expand Up @@ -82,8 +82,10 @@
<pre>
<?php
if (isset($input)) {
echo "<h2>Output</h2>";
echo "<h2>Standard Output</h2>";
$edidDecode->main($input,$inputIsBinary);
echo "<h2>PHP result Array</h2>";
var_export($edidDecode->result);
}
?>
</pre>
Expand Down

0 comments on commit a16d377

Please sign in to comment.