Esempio n. 1
0
        public GIString1AllWhite(string name)
            : base(name)
        {
            _lightArray = new LightArray(32, 1);

            HostName = HardwareConstants.LEDWIZ1;
            initSequence();
        }
Esempio n. 2
0
 /// <summary>
 /// The light array has the columns and rows and a 3rd dimension, 
 /// depth, which adds time.
 /// </summary>
 /// <param name="rows"></param>
 /// <param name="columns"></param>
 /// <param name="depth"></param>
 public LightMatrix(int rows, int columns, int depth)
 {
     _rows = new LightArray(rows, depth);
     _cols = new LightArray(columns, depth);
 }
Esempio n. 3
0
 /// <summary>
 /// The light array has the columns and rows and a 3rd dimension,
 /// depth, which adds time.
 /// </summary>
 /// <param name="rows"></param>
 /// <param name="columns"></param>
 /// <param name="depth"></param>
 public LightMatrix(int rows, int columns, int depth)
 {
     _rows = new LightArray(rows, depth);
     _cols = new LightArray(columns, depth);
 }