Smart Walking Stick
Engineer | School | Area of Interest | Grade |
---|---|---|---|
Tanmay P | Moreland Middle School | Aeronautical Engineering | Upcoming 8th Grader |
Modifications
For my smart walking sticks modifications I did a toggle switch and also added an LED for people to see that someone is there . Some challenges and problems I encountered while making this were that, one, there weren’t enough grounds, to solve this, I created a splitter which basically splits the grounds powers with the toggle switch and buzzer. Another problem I encountered was the toggle switch randomly going off, after a bit of searching, I was able to find that the issue was with the how the toggle switch’s wire was connected, it was very thin and short, to fix this, I cut a male-male wire and soldered both the wires together so it would connect better.
Final Milestone
For my final milestone I decided to reprint the box with a clip to prevent tilting, as this was a large problem. I’ve also put all the electronics inside this new box and have gotten everything to work. My biggest challenges while making this project were my vibration motor pulling itself out and my box rotating or being unstable. The best part when I was making this project was when I got the electronics working, it was so cool to see everything work in synchrony. Some of the most important things I learned while making this project was how to solder, how aurdinos work,, and how breadboards work. I hope to learn how I can use all of this to provide input to a device so that I can make larger things.
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯
Second Milestone
My smart walking stick now has all of its hardware complete. To get here, I had to get drill-trained and make a custom 3D box. I used the drill to drill into the cane as well as the box so that they could be attached. The reason I made this box was so that I could put all the electronics inside. A challenge that came was finding the right screw for the box to attach to, it took me a lot of time as I needed something very thing as well as decently long. However if it was thin and long it could block the electronics so finding something perfect took a long time. Another challenge was the box tilting to the side, to solve this I added tape, in the future I plan to either add another bolt or hot glue. The next thing I will do is put all the eloctronics in the box and make everything usable.
First Milestone
My smart walking stick’s electronics are now finished. There is an ultra-sonic sensor, buzzer, and vibration motor. The motor is connected to a solderable breadboard, which then connects to a male-male wire going to the Aurduino; the buzzer has two female-male wires going directly to the Aurduino; and the Ultra Soncic snesors are connected to a breadboard and four more male-male wires leading to the Aurduino. Soldering the motor connections was my main issue. It took me roughly 30 minutes, and I had to be very precise and couldn’t touch other metals or it would cause a short circuit. The next thing I am going to do is get a box and attach it to the cane.
I used the following code:
#include <Arduino.h>
const int sensorPin = A0; // Sensor connected to analog pin A0
const int buzzerPin = 9; // Buzzer connected to digital pin 9
void setup() {
pinMode(sensorPin, INPUT);
pinMode(buzzerPin, OUTPUT);
Serial.begin(9600);
}
void loop() {
int sensorValue = analogRead(sensorPin);
Serial.println(sensorValue);
if (sensorValue > 500) { // Threshold value for light intensity
digitalWrite(buzzerPin, HIGH); // Turn buzzer on
} else {
digitalWrite(buzzerPin, LOW); // Turn buzzer off
}
delay(100); // Delay for stability
}
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯
Part | Note | Price | Link |
---|---|---|---|
Arduino Uno | Controls all inputs and outputs | $27 | Link |
Buzzer | Provides sound for the user to hear | $0.95 | Link |
Vibration motor | Provides vibration for user to feel | $8 | Link |
Cane | For the user to grab and hold | $14 | Link |
Toggle Switch | Saves battery and allows device to be turned on and off (bought in packs of 10) | $8 | Link |
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯
Starter Project
My starter project was the RGB Slider. This project included three sliders and three LEDs belonging to red, green, and blue colors. Sliders, when moved, change the color of the LEDs. The slider raises or lowers resistance to drive the amount of energy and power flowing to a circuit. During the development of the project, there were some mishaps—I remember one time when the sliders slid out from the PCB and another time applying way too much solder. Having faced and overcome all those obstacles, I am getting ready to work on my next project—a smart walking stick.