├── .gitignore ├── LICENSE ├── README.md └── src ├── BluetoothScannerDemo.sln └── BluetoothScannerDemo ├── App.xaml ├── App.xaml.cs ├── Assets ├── LockScreenLogo.scale-200.png ├── SplashScreen.scale-200.png ├── Square150x150Logo.scale-200.png ├── Square44x44Logo.scale-200.png ├── Square44x44Logo.targetsize-24_altform-unplated.png ├── StoreLogo.png └── Wide310x150Logo.scale-200.png ├── BluetoothScannerDemo.csproj ├── BluetoothScannerDemo_TemporaryKey.pfx ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties ├── AssemblyInfo.cs └── Default.rd.xml └── Taginfo.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/README.md -------------------------------------------------------------------------------- /src/BluetoothScannerDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/src/BluetoothScannerDemo.sln -------------------------------------------------------------------------------- /src/BluetoothScannerDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/src/BluetoothScannerDemo/App.xaml -------------------------------------------------------------------------------- /src/BluetoothScannerDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/src/BluetoothScannerDemo/App.xaml.cs -------------------------------------------------------------------------------- /src/BluetoothScannerDemo/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/src/BluetoothScannerDemo/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/BluetoothScannerDemo/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/src/BluetoothScannerDemo/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/BluetoothScannerDemo/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/src/BluetoothScannerDemo/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/BluetoothScannerDemo/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/src/BluetoothScannerDemo/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/BluetoothScannerDemo/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/src/BluetoothScannerDemo/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/BluetoothScannerDemo/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/src/BluetoothScannerDemo/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/BluetoothScannerDemo/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/src/BluetoothScannerDemo/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/BluetoothScannerDemo/BluetoothScannerDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/src/BluetoothScannerDemo/BluetoothScannerDemo.csproj -------------------------------------------------------------------------------- /src/BluetoothScannerDemo/BluetoothScannerDemo_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/src/BluetoothScannerDemo/BluetoothScannerDemo_TemporaryKey.pfx -------------------------------------------------------------------------------- /src/BluetoothScannerDemo/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/src/BluetoothScannerDemo/MainPage.xaml -------------------------------------------------------------------------------- /src/BluetoothScannerDemo/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/src/BluetoothScannerDemo/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/BluetoothScannerDemo/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/src/BluetoothScannerDemo/Package.appxmanifest -------------------------------------------------------------------------------- /src/BluetoothScannerDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/src/BluetoothScannerDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/BluetoothScannerDemo/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/src/BluetoothScannerDemo/Properties/Default.rd.xml -------------------------------------------------------------------------------- /src/BluetoothScannerDemo/Taginfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaInnovation/BleutoothScannerDemo/HEAD/src/BluetoothScannerDemo/Taginfo.cs --------------------------------------------------------------------------------