關於 Arduino 適合初學者觀看的影片 檔案來源:YouTuBe 由RS Components為您呈現十個讓您學會使用Arduino入門套件中文字幕系列影片。在本影片,我們會學習使用Arduino入門套件的基本知識。第一課 — 了解您的工具。 Arduino Start Kit: RS Part Arduino 編輯程式下載: http://www.arduino.cc/en/Main/Software Sample: /* Blink Turns on an LED on for one second, then off for one second, repeatedly. This example code is in the public domain. */ // Pin 13 has an LED connected on most Arduino boards. // give it a name: int led = 13; // the setup routine runs once when you press reset: void setup() { // initialize the digital pin as an output. pinMode(led, OUTPUT); } // the loop routine runs over and over again forever: void loop() { digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); ...