再來呢 我們要介紹 arduino IDE
arduino IDE 呢 是專門為arduino程式跟將程式燒錄進去的開發界面
而arduino主要的語法類似於c 或c++
官方載點 https://www.arduino.cc/en/main/software#
下載好打開來就會看到這個畫面
而使用Arduino Software IDE編寫的程式被稱為「sketch」
一開始寫程式的時候,可能會不知道要怎麼做,所以arduino有給基本的範例程式
在左上角的file點進去點example 裡面會有預設的範例程式
一開始先選Blink的範例程式
功能是讓arduino上面內建的LED燈閃爍而已
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
這就是一套arduino可以使用的程式
但是呢
雖然範例程式可以用,卻沒什麼用處,所以範例程式只是拿來測試,或是用來讓你了解引入的函式庫怎用
真的要自己做出功能呢,就會需要自己寫程式來達到自己的需求.
明天呢,會來介紹arduino基本的程式語法.