Test if this EDID is a digital monitor based on byte 20 @param edid The EDID byte array @return True if the EDID represents a digital monitor, false otherwise
(byte[] edid)
| 142 | * @return True if the EDID represents a digital monitor, false otherwise |
| 143 | */ |
| 144 | public static boolean isDigital(byte[] edid) { |
| 145 | // Byte 20 is Video input params |
| 146 | return 1 == (edid[20] & 0xff) >> 7; |
| 147 | } |
| 148 | |
| 149 | /** |
| 150 | * Get monitor width in cm |
no outgoing calls