Skip to content
README.md 360 B
Newer Older
Doc's avatar
Doc committed
# Matrix Orbital C# Lib
Doc's avatar
Doc committed

Doc's avatar
Doc committed
## using this
Doc's avatar
Doc committed

```
Doc's avatar
Doc committed
using System;
using System.IO.Ports;
using MatrixOrbital;

class Program {
    // create a SerialPort before using
    static void Main() {
        mySerialPort = new SerialPort("/dev/ttyUSB0",19200);

        //insert other display commands here
        MatrixOrbital.Display.ClearDisplay(mySerialPort);
    }
}
```