Commit the changes from sending individual cols with send_col(), displaying the matrix. This makes sure that the matrix isn't partially updated.
(port: &mut Box<dyn SerialPort>)
| 521 | /// Commit the changes from sending individual cols with send_col(), displaying the matrix. |
| 522 | /// This makes sure that the matrix isn't partially updated. |
| 523 | fn commit_cols(port: &mut Box<dyn SerialPort>) { |
| 524 | simple_cmd_port(port, Command::CommitCols, &[]); |
| 525 | } |
| 526 | |
| 527 | ///Increase the brightness with each pixel. |
| 528 | ///Only 0-255 available, so it can't fill all 306 LEDs |
no test coverage detected