コード例 #1
0
ファイル: KloutKlock.cs プロジェクト: bleroy/netduinohelpers
        public static void ShowKloutSplashScreen()
        {
            tftBacklight.SetPulse(0, 0);
            var background = new VirtualFrame(40960, 32, @"SD\Bitmaps\KLOUTSplashScreen.bin");

            background.Width  = 160;
            background.Height = 128;
            vm.Copy(background);
            tft.Refresh();
            BreatheTFT(BreatheInPulses);
            background.Dispose();
            background = null;
            Debug.GC(true);
            Thread.Sleep(2000);
        }