diff --git a/README.md b/README.md index 4abc8d0..4ca9438 100644 --- a/README.md +++ b/README.md @@ -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 } } -` +```