วันเสาร์ที่ 17 พฤศจิกายน พ.ศ. 2561

งานที่ 4 ตัวอย่างงานที่ใช้โปรแกรม Arduino สปที่ 4

ตัวอย่างงานที่ใช้โปรแกรม Arduino

การเขียนโปรแกรมเบื้องต้นกับ Arduino C++ (การ interrupt)



งานทฤษฎี สปที่ 4

ตัวอย่างCode
int pin = 13;
volatile int state = LOW;
void setup()
{
  Serial.begin(9600);
  pinMode(pin, OUTPUT);
//CHANGE  changes value
// RISING  form low to high .
// FALLING form high to low.
  attachInterrupt(1, blink, RISING);
}
void loop()
{
  digitalWrite(pin, state);
}
void blink()
{
 Serial.println("Interrupt");
  state = !state;
}

}
อ้างอิง http://www.myarduino.net/article/9/%E0%B8%81%E0%B8%B2%E0%B8%A3%E0%B9%80%E0%B8%82%E0%B8%B5%E0%B8%A2%E0%B8%99%E0%B9%82%E0%B8%9B%E0%B8%A3%E0%B9%81%E0%B8%81%E0%B8%A3%E0%B8%A1%E0%B9%80%E0%B8%9A%E0%B8%B7%E0%B9%89%E0%B8%AD%E0%B8%87%E0%B8%95%E0%B9%89%E0%B8%99%E0%B8%81%E0%B8%B1%E0%B8%9A-arduino-c-%E0%B8%81%E0%B8%B2%E0%B8%A3-interrupt

ไม่มีความคิดเห็น:

แสดงความคิดเห็น