Skip to content

Commit 4cb84d9

Browse files
author
Brendan Whitfield
committed
updated name in readme
1 parent 5d165f4 commit 4cb84d9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pyOBD-IO
1+
python-OBD
22
========
33

44
##### A python module for handling realtime sensor data from OBD-II vehicle ports
@@ -17,7 +17,7 @@ This library is forked from:
1717

1818
### Usage
1919

20-
After installing the library, simply import pyobd, and create a new OBD connection object. By default, pyOBD-IO will scan for Bluetooth and USB serial ports (in that order), and will pick the first connection it finds. The port can also be specified manually by passing a connection string to the OBD constructor. You can also use the scanSerial helper retrieve a list of connected ports
20+
After installing the library, simply import pyobd, and create a new OBD connection object. By default, python-OBD will scan for Bluetooth and USB serial ports (in that order), and will pick the first connection it finds. The port can also be specified manually by passing a connection string to the OBD constructor. You can also use the scanSerial helper retrieve a list of connected ports
2121

2222
import obd
2323

@@ -34,7 +34,7 @@ After installing the library, simply import pyobd, and create a new OBD connecti
3434
connection = obd.OBD(ports[0]) # connect to the first port in the list
3535

3636

37-
Once a connection is made, pyOBD-IO will load a list of the available sensors in your car. A "Sensor" in pyOBD-IO is an object containing its name, units, and retrieval functions. To get the value of a sensor, call the valueOf() function with a sensor object as an argument.
37+
Once a connection is made, python-OBD will load a list of the available sensors in your car. A "Sensor" in python-OBD is an object containing its name, units, and retrieval functions. To get the value of a sensor, call the valueOf() function with a sensor object as an argument.
3838

3939
import obd
4040

0 commit comments

Comments
 (0)