OBD2Connect is a lightweight component. It handles serial connection to a OBD2 adapter via socket and provides you self-explanatory interface.
An example app is included demonstrating OBD2Connect's functionality.
To integrate OBD2Connect into your Xcode project using CocoaPods, specify it in your Podfile
:
pod 'OBD2Connect'
let package = Package(
// ...
dependencies: [
.package(
url: "https://github.com/Wisors/OBD2Connect.git",
from: "2.2.0"
)
],
targets: [
.target(
name: "MyTarget",
dependencies: ["OBD2Connect"]
),
]
)
Clone the repo and drag files from Sources
folder into your Xcode project.
- Swift 5.0
- iOS 9.0+
- Xcode 12.0+
RunIt is available under the MIT license. See LICENSE for details.