(final String path, final byte[] value)
| 126 | } |
| 127 | |
| 128 | public static boolean writeBytes(final String path, final byte[] value) { |
| 129 | try { |
| 130 | Files.write(Paths.get(path), value, StandardOpenOption.WRITE); |
| 131 | } catch (IOException e) { |
| 132 | throw new RuntimeException("Unable to draw the LCD", e); |
| 133 | } |
| 134 | return true; |
| 135 | } |
| 136 | |
| 137 | } |