Skip to content

Commit baf2cbe

Browse files
authored
Merge pull request #75 from ShimmerEngineering/VCBA-114
VCBA-114
2 parents c509267 + 421f22f commit baf2cbe

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using ShimmerBLEAPI.Communications;
2+
using System;
3+
4+
namespace ShimmerAdvanceBLEAPI
5+
{
6+
public class VerisenseBLEPairingKeyGenerator : IBLEPairingKeyGenerator
7+
{
8+
public string CalculatePairingPin(string deviceName)
9+
{
10+
string defaultPin = "123456";
11+
return defaultPin;
12+
}
13+
}
14+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using ShimmerBLEAPI.Communications;
2+
using System;
3+
using System.Collections.Generic;
4+
using System.Text;
5+
6+
namespace VerisenseBLEDemoApp.Advance
7+
{
8+
public class VerisenseBLEPairingKeyGenerator : IBLEPairingKeyGenerator
9+
{
10+
public string CalculatePairingPin(string deviceName)
11+
{
12+
string defaultPin = "123456";
13+
return defaultPin;
14+
}
15+
}
16+
}

0 commit comments

Comments
 (0)