1
0
mirror of https://github.com/DarthAffe/OBD.NET.git synced 2025-12-12 16:58:30 +00:00

fix Readme.md

This commit is contained in:
Roman Lumetsberger 2017-05-08 22:22:53 +02:00 committed by GitHub
parent 03b28b2af0
commit fea4610819

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
}
}
`
```