File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed
BLE.Client/BLE.Client/Advance
VerisenseBLEDemoApp/VerisenseBLEDemoApp/Advance Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments