From e33e33986e9c4566b95d0fd29c0c1deeb0d5c173 Mon Sep 17 00:00:00 2001 From: Patrick <56410215+Superredstone@users.noreply.github.com> Date: Wed, 9 Jul 2025 12:33:11 +0200 Subject: [PATCH] Fixed typos in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5af6e16..143a99e 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ Once a connection has been established and inited you can send commands and get Code: ``` //Request MODE 1, PID 0C - RPM -val pid = PIDUtils.getPid(ObdModes.MODE_01, "OC") +val pid = PIDUtils.getPid(ObdModes.MODE_01, "0C") val command = OBDCommand(pid) command.run(bluetoothSocket.inputStream, bluetoothSocket.outputStream) @@ -88,7 +88,7 @@ val command = OBDCommand(pid) command.run(bluetoothSocket.inputStream, bluetoothSocket.outputStream) ``` -Note that you do not have to take the raw values and calculate it yourself. The library will run the value through the formula that are specified in the specifications for CAN to get the resulting value. This is available in the `calculatedResult` and `formattedResult` fields on the pid after the `pid.run(...)` command finishes. +Note that you do not have to take the raw values and calculate it yourself. The library will run the value through the formula that are specified in the specifications for CAN to get the resulting value. This is available in the `calculatedResult` and `formattedResult` fields on the pid after the `command.run(...)` command finishes. ### Who do I talk to? ###