Hi I'm new to this forum and was hoping that somebody could give me some guidance with a project I have been thinking about.
I've been looking for a way to unlock my car when my iPhone is within range of the car using Bluetooth. The actual range isn't really that critical. Then while I'm in the car I want to use a push button to start it, only if the iPhone is still connected. Then when I leave the range of my car I want it to lock again
I have tried doing some research but most of the stuff I have found is from a few years ago and I know Bluetooth has come a long way since then.
Im still pretty new to the arduino programming but I'm pretty tech savvy so I learn quick if someone could explain what the best way to do this would be.
Any help would be greatly appreciated. Thanks!
Hi friend,
First: did you connect your Bleutooth device to Arduino
if yes,
you can send AT commands to your bluetooth module, you can also discover nearby devices.
AT+JDDS=0
should return list of matching devices. Additionally, you can also search for specific services:
AT+JSDS=F4F15A9D060C,1101
Where F4F15A9D060C is MAC address of device and 1101 is code for serial port
regards
Samir Tafesh