├── .gitignore ├── Bluetooth ├── .abignore ├── .abproject ├── .app.json ├── .yo-rc.json ├── app │ ├── App_Resources │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── icon.png │ │ │ └── drawable-nodpi │ │ │ │ └── splashscreen.9.png │ │ └── iOS │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667h@2x.png │ │ │ ├── Default-736h@3x.png │ │ │ ├── Default-Landscape-568h@2x.png │ │ │ ├── Default-Landscape-667h@2x.png │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Landscape@2x.png │ │ │ ├── Default-Landscape@3x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-Small-50.png │ │ │ ├── Icon-Small-50@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Info.plist │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-60.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ ├── icon.png │ │ │ └── icon@2x.png │ ├── app.css │ ├── app.js │ ├── characteristics-page.css │ ├── characteristics-page.js │ ├── characteristics-page.xml │ ├── main-page.js │ ├── main-page.xml │ ├── main-view-model.js │ ├── package.json │ ├── res │ │ ├── next.png │ │ ├── signal-strength.png │ │ └── telerik-logo.png │ ├── services-page.css │ ├── services-page.js │ └── services-page.xml ├── package.json ├── references.d.ts └── tsconfig.json ├── README.md └── bluetooth-demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /Bluetooth/.abignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/.abignore -------------------------------------------------------------------------------- /Bluetooth/.abproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/.abproject -------------------------------------------------------------------------------- /Bluetooth/.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/.app.json -------------------------------------------------------------------------------- /Bluetooth/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/.yo-rc.json -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/Android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/Android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/Android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/Android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/Android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/Android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/Android/drawable-nodpi/splashscreen.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/Android/drawable-nodpi/splashscreen.9.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/Default-568h@2x.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/Default-667h@2x.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/Default-736h@3x.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/Default-Landscape-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/Default-Landscape-568h@2x.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/Default-Landscape-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/Default-Landscape-667h@2x.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/Default-Landscape.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/Default-Landscape@2x.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/Default-Landscape@3x.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/Default-Portrait.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/Default.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/Default@2x.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/Icon-Small-50.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/Icon-Small.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/Icon-Small@2x.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/icon-40.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/icon-40@2x.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/icon-60.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/icon-60@2x.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/icon-72.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/icon-72@2x.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/icon-76.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/icon-76@2x.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/icon.png -------------------------------------------------------------------------------- /Bluetooth/app/App_Resources/iOS/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/App_Resources/iOS/icon@2x.png -------------------------------------------------------------------------------- /Bluetooth/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/app.css -------------------------------------------------------------------------------- /Bluetooth/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/app.js -------------------------------------------------------------------------------- /Bluetooth/app/characteristics-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/characteristics-page.css -------------------------------------------------------------------------------- /Bluetooth/app/characteristics-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/characteristics-page.js -------------------------------------------------------------------------------- /Bluetooth/app/characteristics-page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/characteristics-page.xml -------------------------------------------------------------------------------- /Bluetooth/app/main-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/main-page.js -------------------------------------------------------------------------------- /Bluetooth/app/main-page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/main-page.xml -------------------------------------------------------------------------------- /Bluetooth/app/main-view-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/main-view-model.js -------------------------------------------------------------------------------- /Bluetooth/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/package.json -------------------------------------------------------------------------------- /Bluetooth/app/res/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/res/next.png -------------------------------------------------------------------------------- /Bluetooth/app/res/signal-strength.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/res/signal-strength.png -------------------------------------------------------------------------------- /Bluetooth/app/res/telerik-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/res/telerik-logo.png -------------------------------------------------------------------------------- /Bluetooth/app/services-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/services-page.css -------------------------------------------------------------------------------- /Bluetooth/app/services-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/services-page.js -------------------------------------------------------------------------------- /Bluetooth/app/services-page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/app/services-page.xml -------------------------------------------------------------------------------- /Bluetooth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/package.json -------------------------------------------------------------------------------- /Bluetooth/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/references.d.ts -------------------------------------------------------------------------------- /Bluetooth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/Bluetooth/tsconfig.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/README.md -------------------------------------------------------------------------------- /bluetooth-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-bluetooth-demo/HEAD/bluetooth-demo.gif --------------------------------------------------------------------------------