Quantcast
Channel: CAVEDU教育團隊技術部落格
Viewing all articles
Browse latest Browse all 673

LattePanda 拿鐵熊貓教學#1:LED 閃爍,使用Visual Studio

$
0
0

本範例將在 Lattepanda 上使用 Visual studio 來編寫程式控制其腳位,就從 LED 閃爍開始吧。本範例根據 LattePanda官方範例實作而來:http://www.lattepanda.com/docs/

延伸閱讀:

所需硬體:

  1. LattePanda 開發板 x 1
  2. LED x 1

電路:

  1. LED 直接插入13號腳位(長)與 GND(短)
    _example_blink
    「lattepanda pin layout」的圖片搜尋結果

    Lattepanda 腳位配置

Code:

  1. 請在 Latte Panda 中的Visual Studio 中建立一個新專案
  2. 您需要匯入 LattePanda.Firmata class 函式庫才能順利執行本專案
  3. 程式碼如下:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Threading;
    using LattePanda.Firmata;
    namespace blinkYourBoard//project name
    {
    class Program
    {
        static Arduino arduino = new Arduino();//create an instance and initialize with the default parameters
        static void Main(string[] args)
        {
          arduino.pinMode(13, Arduino.OUTPUT);//Set the digital pin 13 as output
          while (true)
          {
            // ==== set the led on or off
            arduino.digitalWrite(13, Arduino.HIGH);//set the LED on
            Thread.Sleep(1000);//delay a seconds
            arduino.digitalWrite(13, Arduino.LOW);//set the LED off
            Thread.Sleep(1000);//delay a seconds
          }
        }
    }
    }
    Lattepanda – digitalWrite LED

測試:

  1. 請點選 Visual Studio 中的Debug按鈕,LED就會開始閃動

Viewing all articles
Browse latest Browse all 673

Trending Articles