Unboxing and power up reaction

Full motion video on power up - sexy… :heart_eyes:

Cellphone image doesn’t do it justice…

4 Likes

First achievement unlocked…

using System.Threading;
using GHIElectronics.TinyCLR.Pins;
using GHIElectronics.TinyCLR.Devices.Gpio;

namespace SITCoreTest
{
    class Program
    {
        static void Main()
        {
            var led = GpioController.GetDefault().OpenPin(SC20260.GpioPin.PE11);
            led.SetDriveMode(GpioPinDriveMode.Output);

            while (true)
            {
                led.Write(GpioPinValue.High);
                Thread.Sleep(100);

                led.Write(GpioPinValue.Low);
                Thread.Sleep(100);
            }
        }
    }
}
4 Likes

Deploying is nice and quick :smiling_face_with_three_hearts:

4 Likes