Example #1
0
        public static void Main()
        {
            var chain = new NeopixelChain(GpioPin, Size);

            while (true)
            {
                chain.MovePixel();
            }
        }
Example #2
0
        public static void Main()
        {
            var chain = new NeopixelChain(GpioPin, Size);

            while (true)
            {
                for (uint i = 0; i < Size; i++)
                {
                    chain[i] = RedColor;
                    chain.Update();
                    chain[i] = BlackColor;
                }
            }
        }