電路圖
影片
程式碼
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const int trig = 5; | |
const int echo = 4; | |
int buzzerPin = 3;//蜂鳴器 | |
const int inter_time = 100; | |
int time = 0; | |
void setup() { | |
Serial.begin(9600); | |
pinMode (trig, OUTPUT); | |
pinMode (echo, INPUT); | |
pinMode (buzzerPin, OUTPUT); | |
} | |
void loop() { | |
float duration, distance; | |
digitalWrite(trig, HIGH); | |
delayMicroseconds(100); | |
digitalWrite(trig, LOW); | |
duration = pulseIn (echo, HIGH); | |
distance = (duration/2)/29; | |
Serial.print("Data:"); | |
Serial.print (time/100); | |
Serial.print(", d = "); | |
Serial.print(distance); | |
if(distance<10){ | |
digitalWrite (buzzerPin, HIGH); | |
delay (5); | |
digitalWrite (buzzerPin, LOW); | |
delay (5); | |
} | |
else | |
{ | |
digitalWrite (buzzerPin, HIGH); | |
delay (100); | |
digitalWrite (buzzerPin, LOW); | |
delay (100); | |
} | |
Serial.println(" cm"); | |
time = time + inter_time; | |
delay(inter_time); | |
} |