前言:
在Arduino Project06中有用到millis的指令,官網介紹的也蠻詳細的不過給了範例有誤,無法執行。
硬體:
無
程式:
程式碼有少一些command,所以執行會錯誤,少的部分是一些宣告。
Code:
int time = 0;
void setup(){
Serial.begin(9600);
}
void loop(){
Serial.print("Time: ");
time = millis();
//prints time since program started
Serial.println(time);
// wait a second so as not to send massive amounts of data
delay(20);
}
底線的部分就是少的部分,缺了一開始的宣告就會整個有問題,所以真是編寫程式要很注意與細心呢!
後記:
還在思考怎麼怎麼將所學到的Code整理成資訊。最近額外的也在構思我的記帳程式,不過這個部分應該是使用LabVIEW囉。
沒有留言:
張貼留言