mirror of
https://github.com/ChuckBuilds/LEDMatrix.git
synced 2026-04-11 13:23:00 +00:00
12 lines
169 B
C#
12 lines
169 B
C#
namespace RPiRgbLEDMatrix;
|
|
|
|
/// <summary>
|
|
/// Type of multiplexing.
|
|
/// </summary>
|
|
public enum Multiplexing : int
|
|
{
|
|
Direct = 0,
|
|
Stripe = 1,
|
|
Checker = 2
|
|
}
|