siddharth sahu
Published

Keys, wallet finder tag

The bluetooth controlled tag is to attached on our keys or on wallet so we can find by ringing tag using our phone

BeginnerFull instructions provided1 hour4,035
Keys, wallet finder tag

Things used in this project

Hardware components

Arduino Nano R3
Arduino Nano R3
×1
HC-05 Bluetooth Module
HC-05 Bluetooth Module
×1
Li-Ion Battery 100mAh
Li-Ion Battery 100mAh
×1
Buzzer
Buzzer
5 volt
×1

Software apps and online services

MIT App Inventor 2
MIT App Inventor 2
Arduino IDE
Arduino IDE

Hand tools and fabrication machines

Soldering iron (generic)
Soldering iron (generic)
and some copper wires

Story

Read more

Schematics

bluetooth keys finder

Code

bluetooth keys finder

C/C++
char Incoming_value = 0;
                
void setup() 
{
  Serial.begin(9600);         
  pinMode(4,OUTPUT);       
}

void loop()
{
  if(Serial.available() > 0)  
  {
    Incoming_value = Serial.read();      
    Serial.print(Incoming_value);        
    Serial.print("\n");        
    if(Incoming_value == '1')             
      digitalWrite(4, HIGH);  
    else if(Incoming_value == '0')       
      digitalWrite(4, LOW);   
  }                            
} 

Credits

siddharth sahu
2 projects • 21 followers
i am an electronics and communication engineering student

Comments