新營學習網
:::
社團報名
線上書籍
電腦作業繳交
連結網站
Scratch 網站
宜蘭scratch 網站
南市scratch競賽平台
全民資安素養自我評量
學校主站
登入
使用 臺南市 OpenID 快速登入
:::
所有書籍
「Arduino 介紹」目錄
MarkDown
4. arduino IDE
1. 硬體介紹
1-1 LED 接電(無程式)
1-2 LED 程式控制亮暗
1-3 麵包板
1-4 電位器控制馬達轉速
1-5 控制馬達正反轉
2. 電動車
2-1 Arduino Sensor Shield V5.0
2-2 L298N馬達驅動模組
2-3 避障車範例程式
2-4 Ultrasonic Sensor HC-SR04 超音波感測器
2-5 循線車範例
3. mBlock
4. arduino IDE
4-1 數位腳輸出輸入
4-2 analogRead ,analogWrite
4-2 analogRead ,analogWrite
Arduino 介紹 ========== ```c int ledPin = 13; // LED connected to digital pin 13 int inPin = 7; // pushbutton connected to digital pin 7 int val = 0; // variable to store the read value void setup() { pinMode(ledPin, OUTPUT); // sets the digital pin 13 as output pinMode(inPin, INPUT); // sets the digital pin 7 as input } void loop() { val = digitalRead(inPin); // read the input pin digitalWrite(ledPin, val); // sets the LED to the button's value } ```
Google網站翻譯工具列
站內搜尋
search
進階搜尋