Esempio n. 1
0
        static int Main(string[] args)
        {
            //var cancelRequested = false;
            //Console.TreatControlCAsInput = true;
            //Console.CancelKeyPress += (o,e) => _cancelRequested = 1;

            // Here's a good post on capturing *all* termination signals
            // http://www.developersalley.com/blog/post/2011/05/13/How-To-Catch-CTRL-C-Or-Break-In-C-Console-Application.aspx
            // http://www.codeproject.com/Articles/2357/Console-Event-Handling
            // Better than Console.TreatControlCAsInput
            // but *oh dear* not cross-platform
            ProcessCancellationToken.SetupHooks();

            var client = new NeoPixels(LED_COUNT);
            using (var session = client.Open())
            {
                for (int i = 0; i < LED_COUNT; i++)
                {
                    if (ProcessCancellationToken.CancelRequested || CancelKeyPressed())
                        return 0;

                    Console.WriteLine("Set LED {0}", i);
                    session.SetPixel(i, 0x00FF0000);
                    session.Render();

                    if (ProcessCancellationToken.CancelRequested || CancelKeyPressed())
                        Thread.Sleep(100);
                }
            }
            return 0;
        }
Esempio n. 2
0
        static int Main(string[] args)
        {
            //var cancelRequested = false;
            //Console.TreatControlCAsInput = true;
            //Console.CancelKeyPress += (o,e) => _cancelRequested = 1;

            // Here's a good post on capturing *all* termination signals
            // http://www.developersalley.com/blog/post/2011/05/13/How-To-Catch-CTRL-C-Or-Break-In-C-Console-Application.aspx
            // http://www.codeproject.com/Articles/2357/Console-Event-Handling
            // Better than Console.TreatControlCAsInput
            // but *oh dear* not cross-platform
            ProcessCancellationToken.SetupHooks();

            var client = new NeoPixels(LED_COUNT);

            using (var session = client.Open())
            {
                for (int i = 0; i < LED_COUNT; i++)
                {
                    if (ProcessCancellationToken.CancelRequested || CancelKeyPressed())
                    {
                        return(0);
                    }

                    Console.WriteLine("Set LED {0}", i);
                    session.SetPixel(i, 0x00FF0000);
                    session.Render();

                    if (ProcessCancellationToken.CancelRequested || CancelKeyPressed())
                    {
                        Thread.Sleep(100);
                    }
                }
            }
            return(0);
        }