Skip to content

Commit 746dd33

Browse files
authored
Merge pull request #13 from Baseflow/docs
Fixed docs
2 parents 3853709 + cc369ff commit 746dd33

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ Eventually, the we would like to support more features such as writing tags, con
1414
Installation via Package Manager Console in Visual Studio:
1515

1616
```powershell
17-
PM> Install-Package Baseflow.SICK.RFU610.SDK
17+
PM> Install-Package SickRfid
1818
```
1919

2020
Installation via .NET CLI:
2121

2222
```console
23-
> dotnet add <TARGET PROJECT> package Baseflow.SICK.RFU610.SDK
23+
> dotnet add <TARGET PROJECT> package SickRfid
2424
```
2525

2626
## Usage
2727
The SDK is very easy to use. Here is an example of how to read tags:
2828

2929
```csharp
30-
using Baseflow.SICK.RFU610.SDK;
30+
using SickRfid;
3131

3232
public class Program
3333
{
@@ -52,7 +52,7 @@ Under the hood, `connectedReader.ScanRfidAsync()` calls three methods itself.
5252
It is possible to call these methods separately if you need more control over the process:
5353

5454
```csharp
55-
using Baseflow.SICK.RFU610.SDK;
55+
using SickRfid;
5656

5757
public class Program
5858
{

SickRfid/SickRfid.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<ImplicitUsings>enable</ImplicitUsings>
55
<Nullable>enable</Nullable>
6-
<Version>1.0.0</Version>
6+
<Version>1.0.1</Version>
77
<Authors>Eline Jorritsma, Thomas Luijken</Authors>
88
<Company>Baseflow</Company>
99
<Description>This is an SDK for the SICK RFU610-10600 RFID reader that lets you easily scan an RFID tag from the connected RFID reader.</Description>

0 commit comments

Comments
 (0)