Industrial manufacturing
Industrial Internet of Things | Industrial materials | Equipment Maintenance and Repair | Industrial programming |
home  MfgRobots >> Industrial manufacturing >  >> Manufacturing Technology >> Manufacturing process

Find Me: Smart Item Locator with Arduino and Bluetooth

Components and supplies

Find Me: Smart Item Locator with Arduino and Bluetooth
Arduino Nano R3
or the Arduino Pro Mini
×1
Find Me: Smart Item Locator with Arduino and Bluetooth
Ultrasonic Sensor - HC-SR04 (Generic)
×3
Find Me: Smart Item Locator with Arduino and Bluetooth
Jumper wires (generic)
×1
Find Me: Smart Item Locator with Arduino and Bluetooth
HC-06 Bluetooth Module
×1
3.7 V LiPo Battery
×1
Find Me: Smart Item Locator with Arduino and Bluetooth
Buzzer
×1

Necessary tools and machines

Find Me: Smart Item Locator with Arduino and Bluetooth
Soldering iron (generic)
Find Me: Smart Item Locator with Arduino and Bluetooth
Hot glue gun (generic)

About this project

Overview

By attaching the Find Me to any item, you can ring your missing item simply by clicking a button from your smart phone, using the app to locate it in seconds.

Step 1: How it works

1) Attach this find me key chain to any of the devices ex; keys , wallet, etc.

2) Pair this device with your mobile phone

3) when ever you want press find button on your smart phone the find me rings and helps you to find the missing thing

Step 2: List of components

Find Me: Smart Item Locator with Arduino and Bluetooth
Find Me: Smart Item Locator with Arduino and Bluetooth
Find Me: Smart Item Locator with Arduino and Bluetooth
Find Me: Smart Item Locator with Arduino and Bluetooth
Find Me: Smart Item Locator with Arduino and Bluetooth
Find Me: Smart Item Locator with Arduino and Bluetooth
  • Arduino Pro Mini or Arduino Nano
  • HC-06 Bluetooth module
  • Small LiPo battery
  • Small Piezo electric buzzer
  • Battery charging circuit
  • Empty Tic Tac box or any small box

Step 3: Tools required

  • soldering iron
  • some wires
  • glue

Step 4: Connections

Bluetooth to Arduino

  • VCC 🠦 VCC
  • GND 🠦 GND
  • TX 🠦 RX
  • RX 🠦 TX

Buzzer to Arduino

  • GND 🠦 GND
  • +VCC 🠦 DIGITAL PIN 5

Battery to Arduino

  • + 🠦 VCC
  • - 🠦 GND

Step 5: Arduino Code

F4GUK1YIZ4UMQYW.ino

Step 6: Android App

Bluetooth Controller: you can get this app in the Play Store

https://play.google.com/store/apps/details?id=apps.BT&hl=en

Step 7: Config the app

Find Me: Smart Item Locator with Arduino and Bluetooth
Find Me: Smart Item Locator with Arduino and Bluetooth
Find Me: Smart Item Locator with Arduino and Bluetooth

After installing the app, you will get some thing like this. Go to set keys, and set the find key value to u and stop key value to s.

DO NOT CHANGE THE VALUES

Step 8: Finishing

Now embed all the circuits into the box and hook up a ring to it. If you want, you can also add a vibrator parallel to the buzzer pins. Because if the head of the buzzer is closed, you won't be able to hear it properly.

Now you are done with "Find Me".

I hope you like this project. And if so, don't forget to vote me.

If you guys have any problems, please post a comment. Thank you :)

Code

  • buzzer.ino
buzzer.inoArduino
int outPin = 5;  // connect buzzer to pin 5
void setup(){
Serial.begin(9600);
pinMode(outPin,OUTPUT);
}
void loop(){
  if (Serial.available()){
  char bt = Serial.read();
  if(bt == 'u'){    // buzzer on       
digitalWrite(outPin,HIGH);
 }
  else if (bt == 's'){    // buzzer off  
digitalWrite(outPin,LOW);
 }
  }
}

Manufacturing process

  1. Arduino Digital Dice Project: Build Your Own LCD-based Random Number Generator
  2. Build an Arduino Iron Man: Components, Sensors, and Step‑by‑Step Guide
  3. Build a Functional Arduino-Powered 3D‑Printed Robotic Arm – Step‑by‑Step Guide
  4. DIY Arduino Humidifier Controller with Relay – Safe High‑Voltage Setup
  5. Build a Custom Arduino Joystick Steering Wheel for Gaming
  6. Arduino 101: Build a Pedometer with DHT11 Sensor & LCD Display
  7. Build an Arduino RGB Color Mixer – Step‑by‑Step Tutorial
  8. PhoneLocator: Securely Locate Your Phone Anywhere
  9. Arduino LED Bar Graph Controlled by Potentiometer
  10. Custom Arduino MIDI Arpeggiator – Modular Firmware & Euclidean Rhythms