Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,15 @@ A .NET library to easily connect, drive and debug an Arduino through a simple an
![ArduinoDriver](https://github.com/christophediericx/ArduinoDriver/blob/master/Images/ArduinoDriver.png)

## Summary ##
A two-line snippet can illustrate some of the library's features:
Add two using statements to you project and the two-line snippet below can illustrate some of the library's features:
```csharp
var driver = new ArduinoDriver(ArduinoModel.UnoR3, true);
driver.Send(new ToneRequest(8, 200, 1000));

using ArduinoDriver.SerialProtocol;
using ArduinoUploader.Hardware;

var driver = new ArduinoDriver.ArduinoDriver(ArduinoModel.UnoR3, true);
driver.Send(new ToneRequest(8, 200, 1000));

```

* This creates an ArduinoDriver for a specific Arduino Model (in this case an Uno).
Expand Down