1. Home
  2. /
  3. IOT 物聯網
  4. /
  5. Arduino
  6. /
  7. [ Arduino ] –...

[ Arduino ] – Hello LED

評等結果
點擊便能為這篇文章進行評等!
[評等總次數: 0,平均評等: 0]

開啟blink範例程式
blink
編譯程式中
verfily
compiling
將程式上傳到板子
upload
程式碼的部份
[java]
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
Most Arduinos have an on-board LED you can control. On the Uno and
Leonardo, it is attached to digital pin 13. If you’re unsure what
pin the on-board LED is connected to on your Arduino model, check
the documentation at http://www.arduino.cc
This example code is in the public domain.
modified 8 May 2014
by Scott Fitzgerald
*/
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin 13 as an output.
pinMode(13, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second 試著改變 delay()中的數字
digitalWrite(13, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second 試著改變 delay()中的數字
}
[/java]
執行影片(內建LED)

LED 正極負極說明圖
長的為 正極 (LED內部 比較小塊的為正極)
短的為 負極 (LED內部 比較大塊的為負極)
由於有時會將LED的腳位做彎曲的動作 這時請看LED的內部區塊做 正負極的判斷

led

試著將 LED 的長腳位(正極) 插入版本中 13 的孔位, LED 的短腳位(負極) 插入 GND(接地線)中,如下圖。第一個外接LED就成功了。
IMG_20160301_092236
執行影片(外接LED)

我要買 5mm LED
我要買 5mm LED 固定座

評等結果
點擊便能為這篇文章進行評等!
[評等總次數: 0,平均評等: 0]
!去下營經續永站本助幫能就下一點輕輕,話的您到助幫有章文的我果如 如果我的文章有幫助到您的話,輕輕點一下就能幫助本站永續經營下去!

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *