Return the week of year of manufacture @param edid The EDID byte array @return The week of year
(byte[] edid)
| 104 | * @return The week of year |
| 105 | */ |
| 106 | public static byte getWeek(byte[] edid) { |
| 107 | // Byte 16 is manufacture week |
| 108 | return edid[16]; |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * Return the year of manufacture |
no outgoing calls