Return the year of manufacture @param edid The EDID byte array @return The year of manufacture
(byte[] edid)
| 116 | * @return The year of manufacture |
| 117 | */ |
| 118 | public static int getYear(byte[] edid) { |
| 119 | // Byte 17 is manufacture year-1990 |
| 120 | byte temp = edid[17]; |
| 121 | LOG.debug("Year-1990: {}", temp); |
| 122 | return temp + 1990; |
| 123 | } |
| 124 | |
| 125 | /** |
| 126 | * Return the EDID version |
no outgoing calls