วันจันทร์ที่ 23 กรกฎาคม พ.ศ. 2561

2-way morot speed sensor เซนเซอร์ infrared วัดความเร็วรอบ speed counter สำหรับ Smart Car

2-way morot speed sensor เซนเซอร์ infrared วัดความเร็วรอบ speed counter สำหรับ Smart Car

2-way morot speed sensor เซนเซอร์ infrared วัดความเร็วรอบ speed counter สำหรับ Smart Car

เซนเซอร์วัดความเร็วรอบ speed counter สำหรับ Smart Car
เซนเซอร์แสง ให้สัญญาณเอาต์พุตเป็นแบบดิจิตอลค่า 1 เมื่อมีวัตถุผ่านเซนเซอร์พร้อม LED แสดงผล ใช้ไฟเลี้ยง 3.3-5V
ปรับความไวการตรวจจับได้ที่ตัวต้านทานปรับค่าได้บนบอร์ด เหมาะสำหรับนับความเร็วรอบ smart car
ตัวอย่างโคดทดลอง Arduino Speed counter 
int sp1 = 2;
int sp2 = 3;
int count_sp1 = 0;
int count_sp2 = 0;
void setup() {
pinMode(sp1, INPUT);
pinMode(sp2, INPUT);
Serial.begin(9600);
}
void loop() {
if (digitalRead(sp1) == 1) {
count_sp1++;
Serial.print("speed1 = "); Serial.println(count_sp1);
}
if (digitalRead(sp2) == 1) {
count_sp2++;
Serial.print("speed2 = "); Serial.println(count_sp2);
}
}




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

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

หลักของมาตรฐาน ISO 9001:2000      หลักการมาตรฐานของ ISO 9001:2000 จะเป็นการระบุถึงข้อกำหนดที่ใช้ในระบบบริหารที่เกี่ยวกับคุณภาพ โดยเป้าหมา...