+ Reply
Results 1 to 13 of 13

Thread: Bluetooth gps

  1. #1
    iPhone? More like MyPhone
    Join Date
    Aug 2007
    Posts
    207
    Thanks
    0
    Thanked 12 Times in 10 Posts

    Default Bluetooth gps

    Will a bluetooth gps work with the iphone

  2. #2
    iPhone? More like MyPhone GreggSymington's Avatar
    Join Date
    Jun 2007
    Location
    Windsor Locks, CT
    Posts
    228
    Thanks
    11
    Thanked 23 Times in 21 Posts

    It may pair, but no. Unless someone creates a gps map program.

  3. #3
    Green Apple
    Join Date
    Sep 2007
    Posts
    39
    Thanks
    1
    Thanked 2 Times in 2 Posts

    umm... I developed a program some time ago in perl, which runs on a webserver (apache or such) and displays a gps location on google maps. the gps fix is provided to the app by a unix utility called gpsd. all one would need to do is install a webserver on the iphone, install my perl script (POSSIBLY requires getting a Google Maps API code (if the location on the iphone webserver stays the same, one API code will do... e.g. 127.0.0.1/cgi-bin/gmaps/ - Google provides them for free), compile and install gpsd for the iphone, run gpsd using the serial port of the gps receiver, point safari to the perl application in safari - and voila

    the program was developed fairly quickly by me, so it does not have live updating or tracking... but who says some developer won't add that... the source code can be found here... http://code.google.com/p/googlepsmap/

    The project is not being developed by me anymore, it just sits and sleeps, feel free to do anything with it but give credit

  4. #4
    Owner / Founder - ModMyi
    aka poetic_folly
    Kyle Matthews's Avatar
    Join Date
    May 2007
    Location
    Tampa, Florida, United States
    Posts
    8,207
    Thanks
    508
    Thanked 4,484 Times in 1,114 Posts

    Interesting idea...
    .


    ↑ ↑ ↓ ↓ ← → ← → B A [select] [start] Kyle Matthews

  5. #5
    iPhoneaholic EmoRebellion's Avatar
    Join Date
    Aug 2007
    Posts
    406
    Thanks
    4
    Thanked 24 Times in 23 Posts

    Is anyone willing to take over this project? Sounds like a good idea.

  6. #6
    Green Apple
    Join Date
    Sep 2007
    Posts
    31
    Thanks
    1
    Thanked 2 Times in 2 Posts

    i wrote some code at the end of this last semester in c and ruby that takes gps fixes and plots them on google maps using their api... would this be of help?

  7. #7
    Green Apple MSHax's Avatar
    Join Date
    Aug 2007
    Location
    In front of my Computer
    Posts
    50
    Thanks
    1
    Thanked 1 Time in 1 Post
    That depends, I see noone asked what the plans were with the bluetooth GPS.
    Short answer, Yes. If I'm in my minivan I pair with my GPS and use it as a handsfree kit. So if you're asking can you use it for handsfree, then Yes.

    Actually, in another car I have the rearview mirror that has a monitor in it which also uses bluetooth for caller id, recent calls and handsfree. See you can even use your iPhone with your vehicle mounted video monitors

    If you're wondering about the actual GPS then read above

  8. #8
    CVB
    CVB is offline
    What's Jailbreak?
    Join Date
    Sep 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    I tried this out last weekend. The tricky part is it seems like the iphone has some sort of protections in place to prevent receiving serial communications. Sending serial commands seems to work well though.

    I just tried it on the 30 pin connectors rx/tx lines... haven't messed with the bluetooth yet but I'd assume they would have the same type of scheme in place.

  9. #9
    Green Apple andrew's Avatar
    Join Date
    Sep 2007
    Posts
    49
    Thanks
    9
    Thanked 1 Time in 1 Post
    check the installer app.
    i'm sure there is a web server of some sort included in there...
    anyone verify?
    called proxy server/ tiny proxy/ tiny server or something..?

  10. #10
    What's Jailbreak?
    Join Date
    Nov 2007
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default iphone bluetooth serial port

    Quote Originally Posted by CVB View Post
    I tried this out last weekend. The tricky part is it seems like the iphone has some sort of protections in place to prevent receiving serial communications. Sending serial commands seems to work well though.

    I just tried it on the 30 pin connectors rx/tx lines... haven't messed with the bluetooth yet but I'd assume they would have the same type of scheme in place.
    I don't what it's worth but I thought it might help:http://www.dailyack.com/2004/12/mobi...-mac-os-x.html

  11. #11
    What's Jailbreak?
    Join Date
    Nov 2007
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Quote Originally Posted by CVB View Post
    I tried this out last weekend. The tricky part is it seems like the iphone has some sort of protections in place to prevent receiving serial communications. Sending serial commands seems to work well though.

    I just tried it on the 30 pin connectors rx/tx lines... haven't messed with the bluetooth yet but I'd assume they would have the same type of scheme in place.
    Just found this:
    http://www.hackaday.com/2007/12/11/i...cess-tutorial/

    Seems that the protection on receiving is that the device has to rotate the ground through the pins in the correct order. After you've done that, the port is open for serial business as usual. There's even a another project that built a serial GPS this way - a microcontroller to do the ground-toggling, then access is handed to the GPS device.

    http://www.hackaday.com/2007/12/14/iphone-gps-module/

    The good news is, this means that we can use the serial port, maybe even making cool things like a USB port or an SD slot. The bad news is, it pretty much trashes the theory that bluetooth would have the same protection.

    My understanding is that the bluetooth stack lacks the serial protocols entirely. I think what would have to be done is the following:
    1) find out what bluetooth chipset is in the iPhone
    2) find another, fully bluetooth enabled phone with the same chipset
    3) copy the bluetooth stack from the enabled phone to the iPhone
    4) drink beer

    Sadly, I'm not hacker enough to do it. Well, I could probably manage step 4 on my own, and maybe even steps 1 and 2, but I don't have the equipment for step 3.

  12. #12
    What's Jailbreak?
    Join Date
    Jun 2007
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Quote Originally Posted by luigi6699 View Post
    Just found this:
    http://www.hackaday.com/2007/12/11/i...cess-tutorial/

    Seems that the protection on receiving is that the device has to rotate the ground through the pins in the correct order. After you've done that, the port is open for serial business as usual. There's even a another project that built a serial GPS this way - a microcontroller to do the ground-toggling, then access is handed to the GPS device.

    http://www.hackaday.com/2007/12/14/iphone-gps-module/

    The good news is, this means that we can use the serial port, maybe even making cool things like a USB port or an SD slot. The bad news is, it pretty much trashes the theory that bluetooth would have the same protection.

    My understanding is that the bluetooth stack lacks the serial protocols entirely. I think what would have to be done is the following:
    1) find out what bluetooth chipset is in the iPhone
    2) find another, fully bluetooth enabled phone with the same chipset
    3) copy the bluetooth stack from the enabled phone to the iPhone
    4) drink beer

    Sadly, I'm not hacker enough to do it. Well, I could probably manage step 4 on my own, and maybe even steps 1 and 2, but I don't have the equipment for step 3.
    I just found this interesting info here

    http://www.engadgetmobile.com/2007/1...le-for-iphone/

  13. #13
    What's Jailbreak?
    Join Date
    Feb 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    BLUEmagic Bluetooth stack

    that's the stack the iphone uses!!!

    source: tlrobinson.net / blog » Blog Archive » Geolocation possibilities on the iPhone scroll to GPS... or search for "stack"

    "GPS
    A built in GPS receiver in the iPhone would be the ideal solution, but of course this is out of the question at least until iPhone “2.0″ (wink wink Apple).

    Bluetooth GPS support for the iPhone would be awesome as well. It would require the Bluetooth serial port profile, which I would be surprised if the iPhone already has. iPhone uses the BLUEmagic Bluetooth stack which is “modular”… it’s unlikely that Apple would pay for unnecessary modules or include them if they did. Maybe someone could port an existing open source Bluetooth stack to the iPhone (Bluez, perhaps? OS X probably isn’t similar enough to Linux for that to be easy). Worst case, we could use a laptop as the missing link (iPhone -> WiFi -> laptop <- serial/USB/bluetooth <- GPS) but that seems like a really poor solution. Maybe iPhone <- serial <- GPS?
    "

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts