กลับไปหน้ารวมไฟล์
smart-sticksmart-glovessmart-shoesblind-help-c34722.md

ชื่อโปรเจกต์: ไม้เท้า/ถุงมือ/รองเท้าอัจฉริยะ ช่วยเหลือผู้พิการทางสายตา (จัดไปวัยรุ่น!)

const int trigPin = 10; // ขา Trig ของ Ultrasonic ต่อ Pin 10 นะน้อง
const int echoPin = 9; // ขา Echo ต่อ Pin 9
const int [buzzer](https://s.shopee.co.th/6pvZFdZdRf) = 12; // เสียงเตือนออก Pin 12
const int ledPin = 13; // LED บน Board เอาไว้ดูสถานะขำๆ
long duration;
int distance;
int safetyDistance;
void setup() {
pinMode(trigPin, OUTPUT); // ตั้ง TrigPin เป็น Output ไว้ส่งสัญญาณ
pinMode(echoPin, INPUT); // ตั้ง EchoPin เป็น Input ไว้รับสัญญาณ
pinMode(buzzer, OUTPUT);
pinMode(ledPin, OUTPUT);
Serial.begin(9600); // เปิด Serial Monitor ไว้เช็คค่า ระยะทาง
}
void loop() {
digitalWrite(trigPin, LOW); // เคลียร์สัญญาณก่อนเริ่ม
delayMicroseconds(2);
digitalWrite(trigPin, HIGH); // ยิงคลื่น Ultrasonic ออกไป 10 micro seconds
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
// รับค่าเวลาที่คลื่นเดินทางกลับมา
duration = pulseIn(echoPin, HIGH);
// คำนวณระยะทางเป็นเซนติเมตร
distance= duration*0.034/2;
safetyDistance = distance;
if (safetyDistance <= 5) // ถ้าใกล้เกิน 5 ซม. ห้ามชนนะตัวนี้!
{ digitalWrite(buzzer, HIGH);
digitalWrite(ledPin, HIGH);
}
else{
digitalWrite(buzzer, LOW);
digitalWrite(ledPin, LOW);
}
// พ่นค่าระยะทางออกมาดูหน่อย
Serial.print("Distance: ");
Serial.println(distance);}

รายละเอียดทางเทคนิคแบบจัดเต็ม

เทคโนโลยีช่วยเหลือแบบสวมใส่ (Wearable Assistive Technology)

โปรเจกต์นี้เราสร้างระบบช่วยเหลือแบบครบวงจร เพื่อให้ผู้พิการทางสายตาใช้ชีวิตได้อิสระและมั่นใจมากขึ้น สู้งานนะน้อง!

  • โครงสร้างการรวมเซนเซอร์ (Sensor Fusion Architecture): อุปกรณ์ทุกชิ้นไม่ว่าจะเป็นไม้เท้า, ถุงมือ หรือรองเท้า จะติดตั้ง Ultrasonic sensor (HC-SR04) ไว้ตรวจจับสิ่งกีดขวาง โดยมีเจ้า Arduino เป็นสมองกลคอยประมวลผลระยะทางเพื่อเช็คความเสี่ยงในระยะ 2 เมตร
  • การตอบสนองด้วยเสียงและแรงสั่น (Haptic & Audible Feedback): ใช้ทั้ง Piezo Buzzers ส่งเสียงร้อง และ vibration motors ไว้สั่นเตือน ยิ่งเดินเข้าไปใกล้ของเท่าไหร่ มันยิ่งเตือนถี่ยิบ ให้ความรู้สึกถึงระยะห่างได้แบบ Real-time เลยล่ะ

การจัดการพลังงานและการเชื่อมต่ออัจฉริยะ

  • หัวใจหลักขนาดจิ๋ว (Compact Core): เลือกใช้บอร์ด Arduino Nano หรือ Pro Micro เพื่อให้งานออกมาเล็ก กะทัดรัด สวมใส่สบาย ไม่เทอะทะ หล่อเท่เลยงานนี้
  • ระบบความปลอดภัยเสริม (Safety Connectivity): ตัวนี้ทีเด็ด! สามารถอัปเกรดใส่ GPS module และ GSM shield เพื่อส่ง SMS แจ้งพิกัดฉุกเฉินให้ญาติรู้ได้ทันทีถ้าเกิดอุบัติเหตุล้มลง โดยใช้ Accelerometer บนบอร์ดตรวจจับแรงกระแทก บอกเลยว่าแจ๋ว!

ข้อมูล Frontmatter ดั้งเดิม

title: "Smart stick/smart gloves/smart shoes/blind help"
description: "Just of less cost and mass use"
author: "stt4236"
category: ""
tags:
  - "human welfare"
  - "communication"
  - "internet of things"
views: 1957
likes: 4
price: 299
difficulty: "Intermediate"
components:
  - "1x stick"
  - "1x 9V Battery Clip"
  - "1x Arduino UNO"
  - "1x Ultrasonic Sensor - HC-SR04 (Generic)"
  - "1x 9V battery (generic)"
  - "1x Tape, Foam"
  - "1x Buzzer"
  - "1x Jumper wires (generic)"
  - "1x 5 mm LED: Green"
tools: []
apps:
  - "1x Arduino IDE"
downloadableFiles: []
documentationLinks: []
passwordHash: "dd65780114fafa5881d6540a5d7fa5aaa0524481beb6b6566f1c8ab9f18770bd"
encryptedPayload: "U2FsdGVkX196ahPR86v9r0mbMj70AQmAVp2GPaMQf3aeDA1Z24LqUqePyAv/OYiNjw6GL2tuGTTkFE0vFPhqVPCKafqvuYctmVjJtp7no20="
seoDescription: "Low-cost Arduino project for the blind featuring Smart stick, smart gloves, and smart shoes designed for mass use and accessibility."
videoLinks: []
heroImage: "https://cdn.jsdelivr.net/gh/bigboxthailand/arduino-assets@main/images/projects/smart-sticksmart-glovessmart-shoesblind-help-c34722_cover.jpg"
lang: "th"