Jump to content

HawtDogFlvrWtr

Journey Member
  • Posts

    124
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by HawtDogFlvrWtr

  1. Will do. I've got most of it working on the raspberry pi, now. The only part i'm having issues with is pairing the devices. The bluetooth support for arm systems is limited and antiquated. It doesn't support SSP either, which is what the LX uses.. i'll figure it out though.
  2. Got my raspberry pi 2 in today. Loaded ubuntu core on it. Getting everything setup to start working on the final images. Checking to ensure I can get all the libraries needed to make it work, on the pi. If I can't make it work with ubuntu core, I'll back out to rasbian. I'm going to create a configuration website also, to allow configure wifi connections, bluetooth connections, and yadda yadda. Will update soon!
  3. initially it will be web based, but formatted to work on your phone. In the long run, i'll be making apps for all major phone os's, yes. This will be able to remote start/stop, unlock, lock and track if your alarm was triggered. For certain vehicles, you'll be able to roll down windows, and other features.
  4. It's going to be a substitute. If you have a remote start on your journey you should be able to use this. No 8.4 inch screen required.
  5. Here's a quick preview of the dashboard. I've added all recall information for all of your vehicles. I've added the abilty to add and remove vehicles. Most of the API work is complete. I've also added a list of all recent actions you've performed. I'm going to be adding a list of current issues with your car as reported by obd, so you can track that dreaded "check engine light". Let me know what you think!
  6. Site is online but still a shell with a lot of generic text. Added basic api functionality and the ability to add vehicle via vin. It calls back to the edmunds api to resolve the vehicle year, make, and model. Api keys are generated for new users for use on the pi when the image is done. If you would like to sign up for an account now for early access and to be a tester, feel free. After much consideration, I'm going to have to take a small monthly fee to cover server costs, but it will be very very small. If you want to be exempt from this charge in the future, sign up for an account now and you'll be exempt from future fees when they are put in place. Http://www.uHacknect.com
  7. very cool. Do you have a link to his thread? perhaps i can expand on his obd calls so that I can get it working for the nitro's also. My hope is to include most, if not all dodges so that folks don't have to pay the $20 for uconnect access..
  8. This is the repo for my latest work https://github.com/HawtDogFlvrWtr/uhacknect
  9. Database is up and the schema has been added. A basic website has been created for just my vehicle.. no it won't work as of yet.. i'm just testing buttons and getting the php backend worked out. I'll start working on the user creation portion of the site next week sometime, and begin working on the raspberry pi custom image. http://www.mytankstats.com/uhacknect/
  10. I'm uploading a video to youtube so everyone can see where I am. The window work isn't working as it should so i've removed that function for the time being. I'm going to get start, stop, unlock and lock finished and working from the web, on a pi, then i'll work on sniffing the rest of them correctly. My guess is, there are checks and balances that need to be in place to deal with the windows (possibly, the call changes each time)
  11. as soon as I have some real code, it'll be online. I just have some demo/testing scripts, nothing worth posting
  12. i'm glad you like. Another update: I was just able to get things working on my linux laptop with a small python script that I wrote with pybluez. That's probably spanish to folks, but i wanted to put it on here for my reference later. I'm able to now do all of the functions i mentioned above from a pc. This is the first step to converting everything over to working on a raspberry pi. The only setback i've seen, is the remote start for our journeys only allows you to remotely start it once without actually starting the car. I assume the same thing happens when you autostart it and it times out and turns off. It throws the message "remote start disbaled, please start car to reset" or something like that. This isn't that big of a deal, it just means that we can't start and stop it over and over again. I'll start working on the deeper portions of the python code, primarily making a webcall to a site that i'll make later that will let you start the car remotely. The raspberry pi will check in with the server every 30 seconds or so to see if there is a message waiting to do something "like start the car, roll down windows, etc". This means that it won't be instant, but it will happen in half a second, depending on when the last time it checked in with the web server. This is the same way that uconnect access works... i'll try to figure out a faster way of making it happen.. perhaps a push function or something that keeps the pi connected to the server until it receives something, vs checking now and again... will have to see. Notes for myself (How I got it running): need python-dev and libbluetooth-dev installed on the system to connect leverage pybluez. also need to install the pybluez python egg from https://github.com/karulis/pybluez.git, with python setup.py install ensure that rfcomm is installed Test script in python that was created """ A simple Python script to send messages to a sever over Bluetooth using PyBluez (with Python 2). """ import bluetooth serverMACAddress = '00:04:3E:08:42:2F' port = 1 s = bluetooth.BluetoothSocket(bluetooth.RFCOMM) s.connect((serverMACAddress, port)) while 1: text = raw_input() # Note change to the old (Python 2) raw_input if text == "quit": break s.send(text) s.close() edit /etc/bluetooth/rfcomm.conf for manual run... pybluez does this for you so it won't be needed to establish a connection that's already registered via push button on the obdlink lx # # RFCOMM configuration file. # rfcomm0 { # # Automatically bind the device at startup bind yes; # # Bluetooth address of the device device 00:04:3E:08:42:2F; # # RFCOMM channel for the connection channel 1; # # Description of the connection comment "odblink lx"; }
  13. ok, so i've made some progress with this. I'm currently able to roll down/up all windows or just individual windows, start and stop the car, lock all doors, unlock just the driver door or unlock all doors from the web. It's not 100% yet, and I still have other features I want to add, like only cracking the windows when the temperature outside gets above a defined value, cracking the sunroof (if equiped), etc.. The good news is, it appears there is location information associacted with each window, which I can read to determine how far it's been lowered. This will be good for folks with those window vent plastic thingies that allow them to roll the window down slightly in bad weather without getting soaked. My intent is to allow you to click a button from your cell, or a website that drops the windows about an inch at any time, and then roll them back up. Still trying to figure out how to make this happen when the car isn't on... i'll keep working on that, though. if you can think of anything else you want to automate, let me know... one of them I was thinking of, was notifications if the alarm was tripped for some reason. perhaps add a camera module to the raspberry pi, and create a nice mount on the rear view mirror, or somewhere else, that snaps a photo and quickly emails it to you with whoever is jacking with the vehicle... call me paranoid, but if i'm capable of doing it, i'd like to do it...
  14. If anyone wants to test my results, here are the calls i've currently sniffed. Please note that I used a odblink lx bluetooth odb connector in the vehicle and used bluetooth terminal for my android smartphone, with the "append \r\n" setting enabled. For the remote start features to work, you obviously have to have the factory remote start functions in your journey already, or added it after the fact. if you're using an aftermarket remote start device, these will probably not work, but would appreciate if you reported back if they did or not. START VEHICLE: STP31 ATSH1C0 69AA37901100 STOP VEHICLE: STP31 ATSH1C0 6AAA37901100 UNLOCK VEHICLE: STP31 ATSH1C0 24746C901100 LOCK VEHICLE: STP31 ATSH1C0 21746C901100 These are my first tests and I wasn't standing outside next to the car, so they may be flipped. I've confirmed that the start car calls and stop car calls work, and I got a response from the lock and unlock, I just can't remember what order I did them in. I'm going to confirm this later.
  15. ALPHA 0.1.0 released! Hardware requirements can be found on our page, www.Auto-Mated.com So i'm in the process of sniffing all the ODB calls for most, if not all of the features in my journey. My hope is to create a webservice for remotely starting my car, viewing travel information, as well as logging any vehicle troubles. I'm also taking it a step further in automating things (Think, Jarvis from Ironman), but i'm sure that most of you won't be interested in that. In either case, I successfully sniffed the remote start/stop as well as the lock, unlock calls for my journey last night, and was able to replicate them all with my laptop/cellphone. Now that I have the basic uconnect features locked down (all other odb calls such as errors and metrics are simple), i'm going to build the raspberry pi image and test it out. I'm going to use this forum post to keep folks up to date on things and take suggestions for additional features. I'm a developer by trade, so i'll probably end up making a community site like uconnect access, that allows you to login and remotely start your car, track oil changes, travel summaries and all other data we can yank from the vehicle. I expect that I will provide more information and control of your journey, than the stock Uconnect Access provides.. Stand by for updates! Oh, btw. I plan on making the service opensource, but with a very very small fee to cover server costs, outside what it would cost you to get a wireless access dongle from a reputible cellular carrier. AMAZON ITEM LIST: http://amzn.com/w/3O0EQA5K1PQAF
  16. they are growing on me. I'd rather have the RT wheels, personally. When i got this one, i test drove about 15 of the freaking things and fell in love with an RT that had everything but the freaking overhead lcd.. i purchased it, drove it home, and the next day realized it didn't have back seats though the sticker and website said it did. I had driven so many and tested the rear seats in so many that I didn't even think to in that one.. the dealer let me do an equal trade for the crossroad which doesn't have a backup cam or gps, but had everything else.. going to have the backup camera installed in a week or so from the dealer I got it from, then it'll be good. eventually i'll get the internal gps.. but this boat needs a freaking backup camera.. with the lcd on the roof down, you can't even see the rear window.. crazyness. speaking of that, if anyone has mint rt rims they want to trade for the crossroads, i'm game
  17. She's back and looking sexier than ever.
  18. hopefully I get my journey back today... they called a few days ago and said thursday or friday. Fingers crossed, as this impala has a power steering issue...
  19. They say it should be done by the end of this week. Funny enough, they gave me an impala as a rental... pretty funny actually.
  20. Yes so the passenger door had three hoof dents in it. Looks like the deer pushed off the side of the journey but slammed its head into the fender and headlight when it pushed off. That little clump of fur had to be from under its head.
  21. Journayman. Holy crap. That really stinks... Sorry to hear all of that
  22. The deer jumped up at an angle and kicked the side of the car and ran off. I believe it's alive still.
  23. New to the forum.. less than 1300 miles (1.5 weeks old) on my 2015 Journey crossroad and a deer literally jumped at the front of my car as I was pulling around a corner the other night.... 3k worth of damage.. funny thing is, my soon to be ex wife just totaled our town and country, so I got this to cart the kids around (that I have sole custody of now) instead of my prius... and this happens.. What a month...
×
×
  • Create New...