led_matrix_arduino/
lib.rs

1//! MATRIX
2
3#![no_std]
4
5pub mod matrix;
6
7pub fn test(number: u8) -> u8 {
8    number
9}