Commit the changes from sending individual cols with send_col(), displaying the matrix. This makes sure that the matrix isn't partially updated.
(dev, s)
| 237 | |
| 238 | |
| 239 | def commit_cols(dev, s): |
| 240 | """Commit the changes from sending individual cols with send_col(), displaying the matrix. |
| 241 | This makes sure that the matrix isn't partially updated.""" |
| 242 | command = FWK_MAGIC + [CommandVals.DrawGreyColBuffer, 0x00] |
| 243 | send_serial(dev, s, command) |
| 244 | |
| 245 | |
| 246 | def checkerboard(dev, n): |
no test coverage detected