Board logo

標題: 紅外線避障模組 [打印本頁]

作者: tonyh    時間: 2021-3-28 14:07     標題: 紅外線避障模組

[attach]11613[/attach]
  1. int detectPin = 7;
  2. int isObstacle = HIGH;  // HIGH MEANS NO OBSTACLE

  3. void setup() {
  4.   pinMode(detectPin, INPUT);
  5.   Serial.begin(9600);
  6. }

  7. void loop() {
  8.   isObstacle = digitalRead(detectPin);
  9.   if (isObstacle == LOW)
  10.     Serial.println("OBSTACLE!!, OBSTACLE!!");
  11.   else
  12.     Serial.println("clear");
  13.   delay(100);
  14. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2