Return the EDID version @param edid The EDID byte array @return The EDID version
(byte[] edid)
| 130 | * @return The EDID version |
| 131 | */ |
| 132 | public static String getVersion(byte[] edid) { |
| 133 | // Bytes 18-19 are EDID version |
| 134 | return edid[18] + "." + edid[19]; |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * Test if this EDID is a digital monitor based on byte 20 |
no outgoing calls