obd-ii

How to communicate with OBD-II device

≡放荡痞女 提交于 2019-12-04 12:17:31
问题 There is OBD-II device like http://www.rczd.com/c/2015/Car_Diagnostic_Tools_0223/41193.html this device provider does not have its web page or documentation source. We have short "quick start" in box and assurance that it support OBD-II PIDs . Recently I used to follow https://en.wikipedia.org/wiki/OBD-II_PIDs#Mode_1_PID_41 The question is, if there are any general pattern how to communicate with this icar device. Before I've used to connect with (freematics)dongle that has send the stream of

elm327 CAN command to switch headlights pernament ON

不打扰是莪最后的温柔 提交于 2019-12-04 10:01:31
问题 I want to send AT command to switch my headlights pernament ON in Nissan Leaf. It is located in ID 625 0x00 - OFF 0x60 - ON 0x40 - Parking lights ON 0x68 - Headlights & fog lights ON how to change this by sending commands through Terminal Can you help step by step? 回答1: If your Nissan is talking CAN (i.e. your ELM 327 device will reply with a number between 6 and 9 when you send AT DPN ), then you can: AT Z AT E0 AT L1 AT SP 0 0100 AT SH 625 Up to here you have: reset the chipset ( AT Z )

How to communicate with OBD II using bluetooth or wifi using iphone

情到浓时终转凉″ 提交于 2019-12-03 09:55:58
问题 I like to create a simple application for iOS, which read data from car through ODB II Wifi/bluetooth device and display in iPhone screen. But i don't know where to start. Please somebody help me to achieve below results. I have both Bluetooth and wifi dongle. Step 1 : Pair the bluetooth or Wifi dongle and iPhone. Step 2 : Read the details through dongles Please refer any tutorial or sample code which i can understand easily. I want to understand the these process in-depth and want to code by

How to communicate with OBD-II device

寵の児 提交于 2019-12-03 08:15:18
There is OBD-II device like http://www.rczd.com/c/2015/Car_Diagnostic_Tools_0223/41193.html this device provider does not have its web page or documentation source. We have short "quick start" in box and assurance that it support OBD-II PIDs . Recently I used to follow https://en.wikipedia.org/wiki/OBD-II_PIDs#Mode_1_PID_41 The question is, if there are any general pattern how to communicate with this icar device. Before I've used to connect with (freematics)dongle that has send the stream of data which I've parsed on fly. Current one send only one value after one request we send to it (it is

ANDROID ELM327/OBD2 PROTOCOL

女生的网名这么多〃 提交于 2019-12-03 03:21:38
问题 I am trying to send command from ANDROID to ELM327/OBD2 protocol (WIFI Diagnostic troubles). I downloaded an api or library from: https://github.com/pires/android-obd-reader The problem that this api not have any documentation. We need help about the command and protocol to exchange data. Thanks! 回答1: What do you really want to know? With the ELM327 the protocol is fairly easy. You just send a PID in ASCII, and you will receive an answer in ASCII. It's based on polling. So you will receive 1

OBD2 - ELM327 bluetooth simulator [closed]

ぃ、小莉子 提交于 2019-12-03 03:13:54
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . I am developing Android application for connecting to ELM327 for car unit through Bluetooth. Is there any simulator, to simulate ELM327 on Windows 7 through Bluetooth? So I can test my application without a car. 回答1: I found one working after all. It is called Obdsim. It can be run on Windows with bluetooth too.

android bluetooth can't connect

十年热恋 提交于 2019-12-03 02:51:54
问题 I've been having this problem for a while and haven't been able to figure it out. I have a android application that puts all paired devices in a listview. When you click one of the list items, it will initiate a request to connect to that bluetooth device. I can get the list of devices with their addresses no problem. The problem is that once I try to connect I get an IOException on socket.connect(); The error message is as follows: "connect read failed, socket might closed or timeout, read

Python .readline()

自古美人都是妖i 提交于 2019-12-02 18:01:34
问题 First let me preface with I am new to python, no ego here. I have this code I cobbled together from various sites the ultimate goal of which being that it would output a hex code to an OBD-II chip and wait for a response. This response, also HEX, is converted to decimal processed and sent to the output. Pretty simple right? Well, there are two problems. One of which being that .readline() removes the first letter of the response. For instance if I wanted ">Elm327" I would get back ">lm327".

ANDROID ELM327/OBD2 PROTOCOL

与世无争的帅哥 提交于 2019-12-02 17:20:47
I am trying to send command from ANDROID to ELM327/OBD2 protocol (WIFI Diagnostic troubles). I downloaded an api or library from: https://github.com/pires/android-obd-reader The problem that this api not have any documentation. We need help about the command and protocol to exchange data. Thanks! Eric Smekens What do you really want to know? With the ELM327 the protocol is fairly easy. You just send a PID in ASCII, and you will receive an answer in ASCII. It's based on polling. So you will receive 1 answer for 1 request. As long as you don't send, you don't receive. For converting and what

OBD2 - ELM327 bluetooth simulator [closed]

邮差的信 提交于 2019-12-02 16:44:39
I am developing Android application for connecting to ELM327 for car unit through Bluetooth. Is there any simulator, to simulate ELM327 on Windows 7 through Bluetooth? So I can test my application without a car. Amsik I found one working after all. It is called Obdsim . It can be run on Windows with bluetooth too. Just in your bluetooth set incoming bluetooth on some port for example COM4 then start simulator from your command line: obdsim.exe -g gui_fltk -w COM4 It is nice working simulator with lots of options. If you are serious about developing such an application, use an OBD2 hardware