狠狠撸

狠狠撸Share a Scribd company logo
Arduino???? 
??????????
Lession 0 
Arduino
Lession 0 - Arduino 
??????????? 
Arduino???? 
????????????
??????????? 
- open source 
????????????????????? 
??????????????? 
- ???〇??????? 
(electronics prototyping) 
- ??????? 
- ┠???? 
????タィ??????? 
????? 
Arduino Duemilanove
??????????? 
- ????????????????? 
?????????????? 
?? 
- ?????⿶??????? 
- Arduino??????? 
- Arduino????????? 
????????? 
Arduino IDE
??????????? 
+ +
Arduino??? 
Arduino Duemilanove (???????? 
Arduino Diecimila 
Arduino Nano 
Arduino Mega 
Arduino Bluetooth 
Arduino LilyPad 
Arduino Mini 
Arduino Mini USB Adapter 
Arduino Pro 
Arduino Pro Mini 
Arduino Serial 
Arduino Serial Single Sided 
?※???http://arduino.cc/en/Main/Hardware
Arduino Duemilanove (????????
Arduino Diecimila
Arduino Nano
Arduino Mega
Arduino Bluetooth
Arduino LilyPad
Arduino Mini
Arduino Mini USB Adapter
Arduino Pro
Arduino Pro Mini
Arduino Serial
Arduino Serial Single Sided
????????????????┦??????????? 
Seeeduino 
Sanguino 
Pinguino 
funnel IO 
...????????????????????????????????????
Seeeduino 
http://www.seeedstudio.com/blog/?page_id=110
Sanguino 
http://sanguino.cc/
Pinguino 
http://www.hackinglab.org/pinguino/index.html
funnel IO 
http://funnel.cc/Main/HomePage
???????????? 
?????? 
http://www.playrobot.com/home_index.htm http://www.aroboto.com/ 
?????? 
http://www.sparkfun.com/commerce/categories.php 
??? 
Arduino????????チ???? 
http://arduino.cc/en/Main/Buy
Lession 1 
Let's get start!
Lession 1 - Let's get start! 
???? 
???????????????????? 
?ゎ????????????????? 
?ゎ???????????? 
?ゎ??? 
?????? 
????????????????????????????? 
???????????? 
???????? 
???????????
???? 
?? ??????????????????? 
?? ???⿶??????????? 
http://arduino.cc/en/Main/Software 
?? ?⿶??????????????????? 
[Windows ???? 
????????????????????????????????┦?????????? 
?⿶??????????????⿶???????????㈨??⿹???? 
????????????????????????????????????⿶????? 
[ PowerPC Mac ?????Powerbook, iBook, G4 or G5)] 
????????????????????????㈨??⿹??????????????????? 
???????????????????????????????⿶ 
[Intel Mac ?????MacBook, MacBook Pro, or Mac Pro)] 
????????????????????????㈨??⿹??????????????????? 
???????????????????????????????⿶
?????????????????????????? 
A? 
B? 
PS. Windows????????????????ど????┤??????⿶???????? 
??????????????????http://arduino.cc/en/Guide/Windows)
?ゎ????????????????? 
㈨??※?http://interactive2go.blogspot.com/2009/04/get-to-start.html
?ゎ????????????????? 
p.s. 
(1) ?????????????????????????????????????????????????? 
(2) ?????????????????????????????????????????????? 
㈨??※?http://interactive2go.blogspot.com/2009/04/get-to-start.html
?ゎ??????????? 
??? 
????? 
??內容 
イ????
?ゎ???
?????? 
???※?http://interactive2go.blogspot.com/2009/04/digital-out.html
????????????? 
???※?http://interactive2go.blogspot.com/2009/04/digital-out.html
????????????????????????????? 
220??????? 
(????? 
?????????????????????????????????????????????????????????????? 
???※?http://interactive2go.blogspot.com/2009/04/digital-out.html
?????????????? 
?? ??????????? 
?? ?查程式是否有誤 
?? タ????????????? 
Tools > Board > Arduino Duemilanove w/ ATmega328 
4. タ????????????????? 
Tools > Serial Port > (windows??????? 
Windows?戶請參考:http://arduino.cc/en/Guide/Windows 
Mac?戶請參考:http://arduino.cc/en/Guide/MacOSX 
?? ??????????????
????????????????????????????? 
???????
????????????????????????????? 
?????????????????????????? 
???????????內建電阻)
????????????????????????????? 
Duemilanove?????????????????????? 
?內建接在pin 13的尝贰顿灯
Blink???ゎ說 
int ledPin = 13; //タ?????????????????腳 
void setup() //??タ??????????? 
{ 
pinMode(ledPin, OUTPUT); //タ????腳模式為輸出 
} 
void loop() //?」??????????」??? 
{ 
digitalWrite(ledPin, HIGH); //????腳高電壓 (LED通電就亮) 
delay(1000); //??????????? 
????????????????????????????????????????????????????????腳低電壓 (LED 
不通電就暗) 
delay(1000); //????????????? 
}
Blink???ゎ說 
int ledPin = 13; //タ?????????????????腳 
void setup() 
{ 
pinMode(ledPin, OUTPUT); //タ????腳模式為輸出 
} 
void loop() 
{ 
digitalWrite(ledPin, HIGH); //????腳高電壓 (LED通電就亮) 
delay(1000); //??????????? 
????????????????????????????????????????????????????????腳低電壓 (LED 
不通電就暗) 
delay(1000); //????????????? 
}
Blink???ゎ說 
int ledPin = 13; //タ?????????????????腳 
void setup() 
{ 
pinMode(ledPin, OUTPUT); //タ????腳模式為輸出 
} 
void loop() 
{ 
digitalWrite(ledPin, HIGH); //????腳高電壓 (LED通電就亮) 
delay(1000); //????????????? 
digitalWrite(ledPin, LOW); //????腳低電壓 (LED不通電就暗) 
delay(1000); //????????????? 
}
???????????? 
????????????????????????????????????????????????????????????? 
???※?http://interactive2go.blogspot.com/2009/04/digital-out.html
????????????
???????????? 
???※?http://www.youtube.com/watch?v=2q2jiePq6Ww
?????????????? 
?? 
???※?http://interactive2go.blogspot.com/2009/04/digital-out.html
???????????????? 
10k????? 
(????? 
??????????????????????????????????????????????????????????????? 
???※?http://arduino.cc/en/Tutorial/Button
Button (????????ゎ說 
int ledPin = 13; //タ????????????? 
int inPin = 2; //タ???????????????????????? 
int val = 0; //?????? 
void setup() { 
pinMode(ledPin, OUTPUT); //タ????????腳狀態為輸出 
pinMode(inPin, INPUT); //タ???????????? 
} 
void loop(){ 
val = digitalRead(inPin); //???????腳的值 
if (val == HIGH) { //?ㄆ??????????????? 
digitalWrite(ledPin, LOW); //????腳低電壓 (關掉LED燈) 
} else { 
digitalWrite(ledPin, HIGH); //????腳高電壓 (開啟LED燈) 
} 
}
????????????????
??㈨? 
Arduino???http://arduino.cc 
Arduino???http://arduino.tw/ 
??????????????????http://interactive2go.blogspot.com 
ladyada????????????????? http://www.ladyada.net/learn/arduino/index.html 
???????http://tw.group.knowledge.yahoo.com/primary-school/listitem/view?iid=190 
????ィ??http://samengstrom.com/nxl/3660/4_band_resistor_color_code_page.en. 
html 
??┦???ィ????http://bbs.audiohall.net/viewtopic.php? 
t=1337&sid=999ddd2b9f932f45c95e192388a5dfa3 
?????http://sun.cis.scu.edu.tw/~lab/knowledge/r.htm 
?????http://en.wikipedia.org/wiki/Ohm%27s_law

More Related Content

Similar to Arduino (20)

KEY
Scottish Ruby Conference 2010 Arduino, Ruby RAD
lostcaggy
?
PDF
Arduino guide
Rajan Gautam
?
PDF
Mao arduino
Mao Wu
?
PPTX
Introduction to Arduino
Yong Heui Cho
?
PDF
Arduino: Analog I/O
June-Hao Hou
?
PPT
Arduino Introduction by coopermaa
馬 萬圳
?
PDF
Arduino: Intro and Digital I/O
June-Hao Hou
?
PDF
IOTC08 The Arduino Platform
Eoin Brazil
?
PDF
Coscup
Mao Wu
?
PPTX
Arduino 習作工坊 - Lesson 1 燈光之夜
CAVEDU Education
?
PDF
Power supply learning kit for uno
IvonneVzquezdelaTorr
?
PPTX
Fund. of IoT LAB - CO 252.pptx
y22co015
?
PDF
Arduino talk
izzetatam
?
PDF
Arduino talk
kerematam
?
PDF
Arduino talk
pakizeatam
?
PPTX
Internet of Things prescribed by University
Sanjay Kumar
?
PDF
Getting Started With Arduino_Tutorial
NYCCTfab
?
PPTX
Arduino
Jerin John
?
PDF
introductiontoarduino-111120102058-phpapp02.pdf
HebaEng
?
PDF
Arduino talk by Toon Nelissen
Industrial Design Center
?
Scottish Ruby Conference 2010 Arduino, Ruby RAD
lostcaggy
?
Arduino guide
Rajan Gautam
?
Mao arduino
Mao Wu
?
Introduction to Arduino
Yong Heui Cho
?
Arduino: Analog I/O
June-Hao Hou
?
Arduino Introduction by coopermaa
馬 萬圳
?
Arduino: Intro and Digital I/O
June-Hao Hou
?
IOTC08 The Arduino Platform
Eoin Brazil
?
Coscup
Mao Wu
?
Arduino 習作工坊 - Lesson 1 燈光之夜
CAVEDU Education
?
Power supply learning kit for uno
IvonneVzquezdelaTorr
?
Fund. of IoT LAB - CO 252.pptx
y22co015
?
Arduino talk
izzetatam
?
Arduino talk
kerematam
?
Arduino talk
pakizeatam
?
Internet of Things prescribed by University
Sanjay Kumar
?
Getting Started With Arduino_Tutorial
NYCCTfab
?
Arduino
Jerin John
?
introductiontoarduino-111120102058-phpapp02.pdf
HebaEng
?
Arduino talk by Toon Nelissen
Industrial Design Center
?

More from Wayne Huang (14)

PPTX
厂迟别补尘教育的开展经验
Wayne Huang
?
PPTX
我在星空玩创客(300)
Wayne Huang
?
PDF
试看痴搁的教育轻应用
Wayne Huang
?
PDF
颈笔补诲大量部署与管理
Wayne Huang
?
PPTX
從「數位學習」到「數位製造」我的教育Fablab --北市大
Wayne Huang
?
PPTX
自造者世代 @Edu
Wayne Huang
?
PDF
厂迟辞谤颈蹿测应用教学
Wayne Huang
?
PDF
厂罢贰惭教学模式实例推广机构创意实作教学
Wayne Huang
?
PPTX
小學生的 Fablab 教室_入門班科技機器人課程介紹
Wayne Huang
?
PPT
Arduino 與 s4 a
Wayne Huang
?
PPTX
PortableApps
Wayne Huang
?
PPTX
教育鑑赏与教育批评
Wayne Huang
?
PPTX
1 know beta3.1介紹
Wayne Huang
?
PPTX
新增您的贵濒颈辫产辞补谤诲帐号
Wayne Huang
?
厂迟别补尘教育的开展经验
Wayne Huang
?
我在星空玩创客(300)
Wayne Huang
?
试看痴搁的教育轻应用
Wayne Huang
?
颈笔补诲大量部署与管理
Wayne Huang
?
從「數位學習」到「數位製造」我的教育Fablab --北市大
Wayne Huang
?
自造者世代 @Edu
Wayne Huang
?
厂迟辞谤颈蹿测应用教学
Wayne Huang
?
厂罢贰惭教学模式实例推广机构创意实作教学
Wayne Huang
?
小學生的 Fablab 教室_入門班科技機器人課程介紹
Wayne Huang
?
Arduino 與 s4 a
Wayne Huang
?
PortableApps
Wayne Huang
?
教育鑑赏与教育批评
Wayne Huang
?
1 know beta3.1介紹
Wayne Huang
?
新增您的贵濒颈辫产辞补谤诲帐号
Wayne Huang
?
Ad

Recently uploaded (20)

PPTX
Martyrs of Ireland - who kept the faith of St. Patrick.pptx
Martin M Flynn
?
PPTX
Iván Bornacelly - Presentation of the report - Empowering the workforce in th...
EduSkills OECD
?
PDF
Nanotechnology and Functional Foods Effective Delivery of Bioactive Ingredien...
rmswlwcxai8321
?
PPTX
How to Configure Taxes in Company Currency in Odoo 18 Accounting
Celine George
?
PPT
M&A5 Q1 1 differentiate evolving early Philippine conventional and contempora...
ErlizaRosete
?
PDF
COM and NET Component Services 1st Edition Juval L?wy
kboqcyuw976
?
PPTX
ESP 10 Edukasyon sa Pagpapakatao PowerPoint Lessons Quarter 1.pptx
Sir J.
?
PDF
Supply Chain Security A Comprehensive Approach 1st Edition Arthur G. Arway
rxgnika452
?
PPTX
ENGLISH -PPT- Week1 Quarter1 -day-1.pptx
garcialhavz
?
DOCX
ANNOTATION on objective 10 on pmes 2022-2025
joviejanesegundo1
?
PDF
Andreas Schleicher_Teaching Compass_Education 2040.pdf
EduSkills OECD
?
PPTX
How to Manage Wins & Losses in Odoo 18 CRM
Celine George
?
PDF
Public Health For The 21st Century 1st Edition Judy Orme Jane Powell
trjnesjnqg7801
?
PPTX
How to Setup Automatic Reordering Rule in Odoo 18 Inventory
Celine George
?
PPTX
Tanja Vujicic - PISA for Schools contact Info
EduSkills OECD
?
PPTX
How to use _name_search() method in Odoo 18
Celine George
?
PPTX
Comparing Translational and Rotational Motion.pptx
AngeliqueTolentinoDe
?
PPTX
How to Add New Item in CogMenu in Odoo 18
Celine George
?
PDF
The Power of Compound Interest (Stanford Initiative for Financial Decision-Ma...
Stanford IFDM
?
PPTX
How Physics Enhances Our Quality of Life.pptx
AngeliqueTolentinoDe
?
Martyrs of Ireland - who kept the faith of St. Patrick.pptx
Martin M Flynn
?
Iván Bornacelly - Presentation of the report - Empowering the workforce in th...
EduSkills OECD
?
Nanotechnology and Functional Foods Effective Delivery of Bioactive Ingredien...
rmswlwcxai8321
?
How to Configure Taxes in Company Currency in Odoo 18 Accounting
Celine George
?
M&A5 Q1 1 differentiate evolving early Philippine conventional and contempora...
ErlizaRosete
?
COM and NET Component Services 1st Edition Juval L?wy
kboqcyuw976
?
ESP 10 Edukasyon sa Pagpapakatao PowerPoint Lessons Quarter 1.pptx
Sir J.
?
Supply Chain Security A Comprehensive Approach 1st Edition Arthur G. Arway
rxgnika452
?
ENGLISH -PPT- Week1 Quarter1 -day-1.pptx
garcialhavz
?
ANNOTATION on objective 10 on pmes 2022-2025
joviejanesegundo1
?
Andreas Schleicher_Teaching Compass_Education 2040.pdf
EduSkills OECD
?
How to Manage Wins & Losses in Odoo 18 CRM
Celine George
?
Public Health For The 21st Century 1st Edition Judy Orme Jane Powell
trjnesjnqg7801
?
How to Setup Automatic Reordering Rule in Odoo 18 Inventory
Celine George
?
Tanja Vujicic - PISA for Schools contact Info
EduSkills OECD
?
How to use _name_search() method in Odoo 18
Celine George
?
Comparing Translational and Rotational Motion.pptx
AngeliqueTolentinoDe
?
How to Add New Item in CogMenu in Odoo 18
Celine George
?
The Power of Compound Interest (Stanford Initiative for Financial Decision-Ma...
Stanford IFDM
?
How Physics Enhances Our Quality of Life.pptx
AngeliqueTolentinoDe
?
Ad

Arduino