问题标签 [elm327]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
71 浏览

pyserial - 无法使用 PySerial 从 ELM327 设备读取数据

我正在尝试使用 PySerial 与 ELM327 设备通信。但是我无法从设备中读取任何数据。这是我在终端解释器中尝试过的结果。

我通过将设备更改为相同的方法进行了尝试,/dev/ttyUSB0但得到了完全相同的结果。我也以超级用户身份运行它。我也试过\r\n用 just\r\n分别换掉。这是我正在尝试连接的 ELM327 v1.5a 设备。非常感谢任何见解。

0 投票
1 回答
99 浏览

swift - BLE 和 ELM327 (CAN)

我需要通过移动应用程序控制汽车安全(门打开/关闭)。我正在使用 ELM 327 适配器​​和 BLE 我通过 BLE 连接到设备并读取服务的特性,但是我应该发送哪个命令以及打开/关闭警报到哪个服务?

0 投票
0 回答
30 浏览

java - AndrOBD 和 CSV

我下载了 AndrOBD 项目。无法编译,我发现这是一个插件问题。所以我添加了插件并尝试编译项目但它不起作用。我在“if (fields.length >= Plugin.CsvField.values().length)”行上收到错误“找不到符号变量 CsvField”,我花了很长时间试图解决这个问题,但我无法解决。有什么问题?

0 投票
1 回答
78 浏览

can-bus - 如何在 KWP2000 协议中使用 ELM327 设备在单帧中发送超过 8 字节的消息

我尝试在 KWP2000 协议中发送一个更高的有效负载数据帧(包含超过 8 个字节),但我得到了“?” 响应来自 ELM327 设备。在 CAN 中,这可以通过使用流量控制并在多行中逐个发送数据来实现.......我的问题是,在 KWP2000 中是否有任何方法可以做到这一点?

0 投票
0 回答
15 浏览

can-bus - 如何通过 OBD2、ELM327 或 CANBUS 接口将汽车数据传输到 android 定制应用程序

我们正在为自己开发的 Android 应用程序搜索汽车信息(燃料水平、RPM 等)。有这方面的经验吗?请建议我们可以使用哪些适配器(OBD2、ELM327、CANBUS)?

此致,

0 投票
1 回答
16 浏览

can-bus - How to send an AT commands with Header and Data Bytes

this is my first Ask :D and i really haven't find something around. I've already developed an app that read a lot of informations from attached ELM327 via standard OBD Pid commands and some other via CanBus. But i have to read from different Headers in very strictly times and i would avoid to send 2 commands have the info (actually this is causing many reading errors between each read). This happen because in time X i send the header setting (ex AT SH 7AA) and then relative Pid request (ex 010A) but right after (X+1) i have to send a request on another header (ex AT SH 7BB) and relative Pid (ex 020B). So i would know if i could send a sort of "AT 7AA-010A" and not AT SH 7AA + AT 010A Any help will be greatly appreciated. Regards, Luca.