1
0
mirror of https://github.com/DarthAffe/OBD.NET.git synced 2025-12-12 16:58:30 +00:00
This commit is contained in:
Roman Lumetsberger 2017-05-08 22:35:54 +02:00
commit f38a867a99

View File

@ -1,15 +1,15 @@
# OBD.NET
C#-Library to read/write data from/to a car through an ELM327-/STN1170-Adapter
#Projects
## Projects
* OBD.NET.Common - NetStandard 1.4 Library for platform independent stuff
* OBD.NET.Desktop - Implemenation of SerialConnection on full .NET Framework
* OBD.NET.Universal - Implementation of BluetoothSerialConnection for connecting to Bluetooth Adapter on UWP
* OBD.NET.ConsoleClient - Example client application using SerialConnection on full .NET Framework
#Usage
## Usage
* Add OBD.NET.Common and OBD.NET.Desktop packages to project
`
```csharp
class Program
{
static void Main(string[] args)
@ -48,6 +48,6 @@ class Program
}
}
`
```