├── docs ├── articles │ ├── intro.md │ └── toc.yml ├── api │ ├── .gitignore │ └── index.md ├── templates │ ├── favicon.ico │ ├── fonts │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-Italic.ttf │ │ ├── OpenSans-Regular.ttf │ │ └── OpenSans-BoldItalic.ttf │ ├── partials │ │ ├── affix.tmpl.partial │ │ └── toc.tmpl.partial │ └── styles │ │ ├── main.js │ │ └── scrollup.js ├── images │ ├── company_logo.png │ ├── Digi_logo_banner.png │ └── Digi_logo_banner_white.png ├── toc.yml ├── .gitignore ├── index.md └── docfx.json ├── nuget_icon.png ├── .gitignore ├── XBeeLibrary.Core ├── libs │ └── SRP.dll └── Events │ └── GpmUpdateEventArgs.cs └── examples └── xamarin ├── IX15BleConfiguratorDemo ├── IX15Configurator │ ├── AssemblyInfo.cs │ ├── Services │ │ ├── IGPSDependencyService.cs │ │ └── IAppVersionDependencyService.cs │ ├── Resources │ │ └── about │ │ │ ├── authors.txt │ │ │ └── licenses │ │ │ ├── mit_kirill.txt │ │ │ ├── mit_aritchie.txt │ │ │ ├── mit_newton.txt │ │ │ └── mit_james_montemagno.txt │ ├── Exceptions │ │ └── CLIException.cs │ ├── Utils │ │ ├── Validators │ │ │ ├── IValidationRule.cs │ │ │ ├── TimeDurationValidator.cs │ │ │ └── IPValidator.cs │ │ └── Converters │ │ │ ├── StringNullOrEmptyBooleanConverter.cs │ │ │ ├── InvertBooleanConverter.cs │ │ │ ├── IPModeConverter.cs │ │ │ ├── IPModeStaticBooleanConverter.cs │ │ │ └── StringToBooleanConverter.cs │ ├── Models │ │ ├── BooleanSetting.cs │ │ └── TextSetting.cs │ ├── Pages │ │ ├── EmptyView.xaml │ │ ├── EmptyView.xaml.cs │ │ └── CustomContentPage.cs │ └── IX15ConfiguratorApp.xaml.cs ├── IX15Configurator.iOS │ ├── Resources │ │ ├── ix15.jpg │ │ ├── logo.png │ │ ├── read.png │ │ ├── glass.png │ │ ├── rssi_1.png │ │ ├── rssi_2.png │ │ ├── rssi_3.png │ │ ├── rssi_4.png │ │ ├── rssi_5.png │ │ ├── write.png │ │ ├── Default.png │ │ ├── Icon-1024.png │ │ ├── Icon-167.png │ │ ├── Icon-20.png │ │ ├── Icon-60.png │ │ ├── Icon-76.png │ │ ├── digi_logo.png │ │ ├── question.png │ │ ├── read@2x.png │ │ ├── read@3x.png │ │ ├── read_64.png │ │ ├── write@2x.png │ │ ├── write@3x.png │ │ ├── write_64.png │ │ ├── Default@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ ├── disconnect_64.png │ │ ├── media_facebook.png │ │ ├── media_github.png │ │ ├── media_linkedin.png │ │ ├── media_twitter.png │ │ ├── media_youtube.png │ │ ├── white_corner.png │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small-40@3x.png │ │ ├── digi_logo_white.png │ │ ├── feedback_gray_64.png │ │ ├── iosbackarrow@2x.png │ │ ├── settings_gray_64.png │ │ ├── Default-Portrait@2x.png │ │ └── Icon-transparent-1024.png │ ├── Media.xcassets │ │ └── AppIcons.appiconset │ │ │ ├── Icon-1024.png │ │ │ ├── Icon-167.png │ │ │ ├── Icon-20.png │ │ │ ├── Icon-60.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-401.png │ │ │ ├── Icon-Small-402.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@2x1.png │ │ │ ├── Icon-Small@3x.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small-40@3x.png │ │ │ └── Icon-Small-40@2x1.png │ ├── Entitlements.plist │ ├── Main.cs │ ├── Services │ │ ├── GPSDependencyService.cs │ │ └── AppVersionDependencyService.cs │ └── AppDelegate.cs └── IX15Configurator.Android │ ├── Resources │ ├── values │ │ ├── colors.xml │ │ └── digi_style.xml │ ├── drawable │ │ ├── glass.png │ │ ├── icon.png │ │ ├── ix15.jpg │ │ ├── logo.png │ │ ├── read.png │ │ ├── rssi_1.png │ │ ├── rssi_2.png │ │ ├── rssi_3.png │ │ ├── rssi_4.png │ │ ├── rssi_5.png │ │ ├── write.png │ │ ├── question.png │ │ ├── read_64.png │ │ ├── write_64.png │ │ ├── digi_logo.png │ │ ├── splash_icon.png │ │ ├── disconnect_64.png │ │ ├── media_github.png │ │ ├── media_twitter.png │ │ ├── media_youtube.png │ │ ├── white_corner.png │ │ ├── digi_logo_white.png │ │ ├── feedback_gray_64.png │ │ ├── media_facebook.png │ │ ├── media_linkedin.png │ │ ├── settings_gray_64.png │ │ ├── Icon-transparent-512.png │ │ └── splash_screen.xml │ └── layout │ │ ├── Toolbar.xml │ │ └── Tabbar.xml │ ├── FodyWeavers.xml │ ├── Services │ ├── GPSDependencyService.cs │ └── AppVersionDependencyService.cs │ ├── Assets │ └── AboutAssets.txt │ ├── Properties │ └── AndroidManifest.xml │ └── SplashActivity.cs ├── TankDemo ├── TankDemo.iOS │ ├── Resources │ │ ├── Default.png │ │ ├── clear.png │ │ ├── refresh.png │ │ ├── rssi_1.png │ │ ├── rssi_2.png │ │ ├── rssi_3.png │ │ ├── rssi_4.png │ │ ├── rssi_5.png │ │ ├── start.png │ │ ├── map_view.png │ │ ├── Default@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── iosbackarrow@2x.png │ │ └── Default-Portrait@2x.png │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Icon120.png │ │ │ ├── Icon152.png │ │ │ ├── Icon167.png │ │ │ ├── Icon180.png │ │ │ ├── Icon20.png │ │ │ ├── Icon29.png │ │ │ ├── Icon40.png │ │ │ ├── Icon58.png │ │ │ ├── Icon60.png │ │ │ ├── Icon76.png │ │ │ ├── Icon80.png │ │ │ ├── Icon87.png │ │ │ └── Icon1024.png │ ├── Entitlements.plist │ └── Main.cs ├── TankDemo.Android │ ├── Resources │ │ ├── drawable │ │ │ ├── clear.png │ │ │ ├── rssi_1.png │ │ │ ├── rssi_2.png │ │ │ ├── rssi_3.png │ │ │ ├── rssi_4.png │ │ │ ├── rssi_5.png │ │ │ ├── start.png │ │ │ ├── digi_icon.png │ │ │ ├── map_view.png │ │ │ └── refresh.png │ │ ├── values │ │ │ └── colors.xml │ │ └── layout │ │ │ ├── Toolbar.xml │ │ │ └── Tabbar.xml │ ├── Assets │ │ └── AboutAssets.txt │ └── Properties │ │ └── AssemblyInfo.cs └── TankDemo │ ├── App.xaml │ └── Utils │ └── Converters │ └── InverseBoolConverter.cs ├── InterfacesConfigurationSample ├── InterfacesConfigurationSample │ ├── AssemblyInfo.cs │ ├── Pages │ │ ├── EmptyView.xaml │ │ └── EmptyView.xaml.cs │ ├── Services │ │ └── IGPSDependencyService.cs │ ├── Models │ │ └── SettingType.cs │ └── Exceptions │ │ └── CommunicationException.cs ├── InterfacesConfigurationSample.Android │ ├── Resources │ │ ├── values │ │ │ ├── colors.xml │ │ │ └── digi_style.xml │ │ ├── drawable │ │ │ ├── icon.png │ │ │ ├── read.png │ │ │ ├── gear_64.png │ │ │ ├── glass.png │ │ │ ├── read_64.png │ │ │ ├── rssi_1.png │ │ │ ├── rssi_2.png │ │ │ ├── rssi_3.png │ │ │ ├── rssi_4.png │ │ │ ├── rssi_5.png │ │ │ ├── write.png │ │ │ ├── digi_logo.png │ │ │ ├── question.png │ │ │ ├── write_64.png │ │ │ ├── white_corner.png │ │ │ ├── disconnect_64.png │ │ │ ├── digi_logo_white.png │ │ │ ├── settings_gray_64.png │ │ │ └── splash_screen.xml │ │ └── layout │ │ │ ├── Toolbar.xml │ │ │ └── Tabbar.xml │ ├── Assets │ │ └── AboutAssets.txt │ └── Properties │ │ └── AndroidManifest.xml └── InterfacesConfigurationSample.iOS │ ├── Resources │ ├── read.png │ ├── write.png │ ├── Default.png │ ├── gear_64.png │ ├── read@2x.png │ ├── read@3x.png │ ├── read_64.png │ ├── rssi_1.png │ ├── rssi_2.png │ ├── rssi_3.png │ ├── rssi_4.png │ ├── rssi_5.png │ ├── Default@2x.png │ ├── digi_logo.png │ ├── write@2x.png │ ├── write@3x.png │ ├── write_64.png │ ├── white_corner.png │ ├── Default-568h@2x.png │ ├── digi_logo_white.png │ ├── disconnect_64.png │ ├── iosbackarrow@2x.png │ ├── Default-Portrait.png │ └── Default-Portrait@2x.png │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Icon120.png │ │ ├── Icon152.png │ │ ├── Icon167.png │ │ ├── Icon180.png │ │ ├── Icon20.png │ │ ├── Icon29.png │ │ ├── Icon40.png │ │ ├── Icon58.png │ │ ├── Icon60.png │ │ ├── Icon76.png │ │ ├── Icon80.png │ │ ├── Icon87.png │ │ └── Icon1024.png │ ├── Entitlements.plist │ ├── Main.cs │ └── Services │ └── GPSDependencyService.cs ├── AgricultureDemo ├── AgricultureDemo.iOS │ ├── Resources │ │ ├── clear.png │ │ ├── flash.png │ │ ├── start.png │ │ ├── Default.png │ │ ├── map_view.png │ │ ├── refresh.png │ │ ├── rssi_1.png │ │ ├── rssi_2.png │ │ ├── rssi_3.png │ │ ├── rssi_4.png │ │ ├── rssi_5.png │ │ ├── search.png │ │ ├── Default@2x.png │ │ ├── Default-568h@2x.png │ │ ├── iosbackarrow@2x.png │ │ ├── Default-Portrait.png │ │ └── Default-Portrait@2x.png │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Icon120.png │ │ │ ├── Icon152.png │ │ │ ├── Icon167.png │ │ │ ├── Icon180.png │ │ │ ├── Icon20.png │ │ │ ├── Icon29.png │ │ │ ├── Icon40.png │ │ │ ├── Icon58.png │ │ │ ├── Icon60.png │ │ │ ├── Icon76.png │ │ │ ├── Icon80.png │ │ │ ├── Icon87.png │ │ │ └── xbee_sample_icon.png │ ├── Entitlements.plist │ └── Main.cs ├── AgricultureDemo.Android │ ├── Resources │ │ ├── drawable │ │ │ ├── clear.png │ │ │ ├── flash.png │ │ │ ├── start.png │ │ │ ├── refresh.png │ │ │ ├── rssi_1.png │ │ │ ├── rssi_2.png │ │ │ ├── rssi_3.png │ │ │ ├── rssi_4.png │ │ │ ├── rssi_5.png │ │ │ ├── search.png │ │ │ ├── digi_icon.png │ │ │ └── map_view.png │ │ ├── values │ │ │ └── colors.xml │ │ └── layout │ │ │ ├── Toolbar.xml │ │ │ └── Tabbar.xml │ ├── Assets │ │ └── AboutAssets.txt │ └── Properties │ │ └── AssemblyInfo.cs └── AgricultureDemo │ ├── App.xaml │ └── Utils │ └── Converters │ └── InverseBoolConverter.cs ├── RelayConsoleSample ├── RelayConsoleSample.iOS │ ├── Resources │ │ ├── Default.png │ │ ├── clear.png │ │ ├── Default@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── iosbackarrow@2x.png │ │ └── Default-Portrait@2x.png │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Icon120.png │ │ │ ├── Icon152.png │ │ │ ├── Icon167.png │ │ │ ├── Icon180.png │ │ │ ├── Icon20.png │ │ │ ├── Icon29.png │ │ │ ├── Icon40.png │ │ │ ├── Icon58.png │ │ │ ├── Icon60.png │ │ │ ├── Icon76.png │ │ │ ├── Icon80.png │ │ │ └── Icon87.png │ ├── Entitlements.plist │ └── Main.cs ├── RelayConsoleSample.Android │ ├── Resources │ │ ├── drawable │ │ │ ├── clear.png │ │ │ └── digi_icon.png │ │ ├── values │ │ │ └── colors.xml │ │ └── layout │ │ │ ├── Toolbar.axml │ │ │ └── Tabbar.axml │ ├── Assets │ │ └── AboutAssets.txt │ └── Properties │ │ └── AndroidManifest.xml └── RelayConsoleSample │ ├── App.xaml │ └── RelayConsoleSample.shproj ├── BleMicroPythonSample ├── BleMicroPythonSample.iOS │ ├── Resources │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Default-568h@2x.png │ │ ├── iosbackarrow@2x.png │ │ ├── Default-Portrait.png │ │ └── Default-Portrait@2x.png │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Icon120.png │ │ │ ├── Icon152.png │ │ │ ├── Icon167.png │ │ │ ├── Icon180.png │ │ │ ├── Icon20.png │ │ │ ├── Icon29.png │ │ │ ├── Icon40.png │ │ │ ├── Icon58.png │ │ │ ├── Icon60.png │ │ │ ├── Icon76.png │ │ │ ├── Icon80.png │ │ │ └── Icon87.png │ ├── Entitlements.plist │ └── Main.cs ├── BleMicroPythonSample.Android │ ├── Resources │ │ ├── drawable │ │ │ └── digi_icon.png │ │ ├── values │ │ │ └── colors.xml │ │ └── layout │ │ │ ├── Toolbar.axml │ │ │ └── Tabbar.axml │ ├── Assets │ │ └── AboutAssets.txt │ └── Properties │ │ └── AndroidManifest.xml └── BleMicroPythonSample │ ├── App.xaml │ └── BleMicroPythonSample.shproj ├── BleMicrocontrollerSample ├── BleMicrocontrollerSample.iOS │ ├── Resources │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Default-568h@2x.png │ │ ├── iosbackarrow@2x.png │ │ ├── Default-Portrait.png │ │ └── Default-Portrait@2x.png │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Icon120.png │ │ │ ├── Icon152.png │ │ │ ├── Icon167.png │ │ │ ├── Icon180.png │ │ │ ├── Icon20.png │ │ │ ├── Icon29.png │ │ │ ├── Icon40.png │ │ │ ├── Icon58.png │ │ │ ├── Icon60.png │ │ │ ├── Icon76.png │ │ │ ├── Icon80.png │ │ │ └── Icon87.png │ ├── Entitlements.plist │ └── Main.cs ├── BleMicrocontrollerSample.Android │ ├── Resources │ │ ├── drawable │ │ │ └── digi_icon.png │ │ ├── values │ │ │ └── colors.xml │ │ └── layout │ │ │ ├── Toolbar.axml │ │ │ └── Tabbar.axml │ ├── Assets │ │ └── AboutAssets.txt │ └── Properties │ │ └── AndroidManifest.xml └── BleMicrocontrollerSample │ ├── App.xaml │ ├── BleMicrocontrollerSample.shproj │ └── Pages │ └── SendFilePage.xaml └── BleConfigurationSample ├── BleConfigurationSample.iOS ├── Resources │ └── iosbackarrow@2x.png ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Icon20.png │ │ ├── Icon29.png │ │ ├── Icon40.png │ │ ├── Icon58.png │ │ ├── Icon60.png │ │ ├── Icon76.png │ │ ├── Icon80.png │ │ ├── Icon87.png │ │ ├── Icon120.png │ │ ├── Icon152.png │ │ ├── Icon167.png │ │ └── Icon180.png ├── Entitlements.plist └── Main.cs ├── BleConfigurationSample.Android ├── Resources │ ├── drawable │ │ └── digi_icon.png │ ├── values │ │ └── colors.xml │ └── layout │ │ ├── Toolbar.axml │ │ └── Tabbar.axml ├── Assets │ └── AboutAssets.txt └── Properties │ └── AndroidManifest.xml └── BleConfigurationSample ├── App.xaml └── BleConfigurationSample.shproj /docs/articles/intro.md: -------------------------------------------------------------------------------- 1 | # Add your introductions here! 2 | -------------------------------------------------------------------------------- /docs/articles/toc.yml: -------------------------------------------------------------------------------- 1 | - name: Introduction 2 | href: intro.md 3 | -------------------------------------------------------------------------------- /nuget_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/nuget_icon.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/obj 2 | **/bin 3 | **/*.csproj.user 4 | **/*.suo 5 | .vs/ 6 | packages/ 7 | -------------------------------------------------------------------------------- /docs/api/.gitignore: -------------------------------------------------------------------------------- 1 | ############### 2 | # temp file # 3 | ############### 4 | *.yml 5 | .manifest 6 | -------------------------------------------------------------------------------- /docs/templates/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/docs/templates/favicon.ico -------------------------------------------------------------------------------- /XBeeLibrary.Core/libs/SRP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/XBeeLibrary.Core/libs/SRP.dll -------------------------------------------------------------------------------- /docs/images/company_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/docs/images/company_logo.png -------------------------------------------------------------------------------- /docs/images/Digi_logo_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/docs/images/Digi_logo_banner.png -------------------------------------------------------------------------------- /docs/toc.yml: -------------------------------------------------------------------------------- 1 | - name: Articles 2 | href: articles/ 3 | - name: Api Documentation 4 | href: api/ 5 | homepage: api/index.md 6 | -------------------------------------------------------------------------------- /docs/images/Digi_logo_banner_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/docs/images/Digi_logo_banner_white.png -------------------------------------------------------------------------------- /docs/templates/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/docs/templates/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /docs/templates/fonts/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/docs/templates/fonts/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /docs/templates/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/docs/templates/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /docs/templates/fonts/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/docs/templates/fonts/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | ############### 2 | # folder # 3 | ############### 4 | /**/DROP/ 5 | /**/TEMP/ 6 | /**/packages/ 7 | /**/bin/ 8 | /**/obj/ 9 | _site 10 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using Xamarin.Forms.Xaml; 2 | 3 | [assembly: XamlCompilation(XamlCompilationOptions.Compile)] -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Resources/Default.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Resources/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Resources/clear.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Resources/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Resources/refresh.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Resources/rssi_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Resources/rssi_1.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Resources/rssi_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Resources/rssi_2.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Resources/rssi_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Resources/rssi_3.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Resources/rssi_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Resources/rssi_4.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Resources/rssi_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Resources/rssi_5.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Resources/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Resources/start.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Resources/map_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Resources/map_view.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using Xamarin.Forms.Xaml; 2 | 3 | [assembly: XamlCompilation(XamlCompilationOptions.Compile)] -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Resources/iosbackarrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Resources/iosbackarrow@2x.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/clear.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/flash.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/start.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/clear.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/rssi_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/rssi_1.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/rssi_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/rssi_2.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/rssi_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/rssi_3.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/rssi_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/rssi_4.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/rssi_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/rssi_5.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/start.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/Default.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/map_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/map_view.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/refresh.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/rssi_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/rssi_1.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/rssi_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/rssi_2.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/rssi_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/rssi_3.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/rssi_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/rssi_4.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/rssi_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/rssi_5.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/search.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/digi_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/digi_icon.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/map_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/map_view.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.Android/Resources/drawable/refresh.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/ix15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/ix15.jpg -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/logo.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/read.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Resources/Default.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Resources/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Resources/clear.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/iosbackarrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/iosbackarrow@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | 5 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/glass.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/rssi_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/rssi_1.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/rssi_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/rssi_2.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/rssi_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/rssi_3.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/rssi_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/rssi_4.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/rssi_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/rssi_5.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/write.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/clear.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/flash.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/start.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Resources/Default.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Default.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-1024.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-167.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-20.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-60.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/digi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/digi_logo.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/question.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/read@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/read@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/read@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/read@3x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/read_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/read_64.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/write@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/write@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/write@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/write@3x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/write_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/write_64.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/refresh.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/rssi_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/rssi_1.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/rssi_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/rssi_2.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/rssi_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/rssi_3.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/rssi_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/rssi_4.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/rssi_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/rssi_5.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/search.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/FodyWeavers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/TankDemo/TankDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/digi_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/digi_icon.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/map_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/drawable/map_view.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/disconnect_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/disconnect_64.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/media_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/media_facebook.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/media_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/media_github.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/media_linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/media_linkedin.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/media_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/media_twitter.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/media_youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/media_youtube.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/white_corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/white_corner.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Services/IGPSDependencyService.cs: -------------------------------------------------------------------------------- 1 | namespace IX15Configurator.Services 2 | { 3 | public interface IGPSDependencyService 4 | { 5 | bool IsGPSEnabled(); 6 | } 7 | } -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Resources/iosbackarrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Resources/iosbackarrow@2x.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Resources/iosbackarrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Resources/iosbackarrow@2x.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Resources/Default.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/digi_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/digi_logo_white.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/feedback_gray_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/feedback_gray_64.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/iosbackarrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/iosbackarrow@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/settings_gray_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/settings_gray_64.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | 5 | -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.Android/Resources/drawable/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.Android/Resources/drawable/clear.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/glass.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/ix15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/ix15.jpg -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/logo.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/read.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/rssi_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/rssi_1.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/rssi_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/rssi_2.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/rssi_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/rssi_3.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/rssi_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/rssi_4.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/rssi_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/rssi_5.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/write.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.Android/Resources/drawable/digi_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.Android/Resources/drawable/digi_icon.png -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Resources/iosbackarrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Resources/iosbackarrow@2x.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/question.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/read_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/read_64.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/write_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/write_64.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-transparent-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Resources/Icon-transparent-1024.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.Android/Resources/drawable/digi_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.Android/Resources/drawable/digi_icon.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Resources/iosbackarrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Resources/iosbackarrow@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/digi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/digi_logo.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/splash_icon.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/read.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/write.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/disconnect_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/disconnect_64.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/media_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/media_github.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/media_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/media_twitter.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/media_youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/media_youtube.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/white_corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/white_corner.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/Default.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/gear_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/gear_64.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/read@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/read@2x.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/read@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/read@3x.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/read_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/read_64.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/rssi_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/rssi_1.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/rssi_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/rssi_2.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/rssi_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/rssi_3.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/rssi_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/rssi_4.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/rssi_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/rssi_5.png -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.Android/Resources/drawable/digi_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleConfigurationSample/BleConfigurationSample.Android/Resources/drawable/digi_icon.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/digi_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/digi_logo_white.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/feedback_gray_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/feedback_gray_64.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/media_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/media_facebook.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/media_linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/media_linkedin.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/settings_gray_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/settings_gray_64.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/digi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/digi_logo.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/write@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/write@2x.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/write@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/write@3x.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/write_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/write_64.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.Android/Resources/drawable/digi_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.Android/Resources/drawable/digi_icon.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/white_corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/white_corner.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/xbee_sample_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Assets.xcassets/AppIcon.appiconset/xbee_sample_icon.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/Icon-transparent-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/Icon-transparent-512.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-1024.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-167.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-20.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-60.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-76.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/digi_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/digi_logo_white.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/disconnect_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/disconnect_64.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/iosbackarrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/iosbackarrow@2x.png -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/read.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small-40.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small-401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small-401.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small-402.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small-402.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small@2x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small@2x1.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/gear_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/gear_64.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/glass.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/read_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/read_64.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/rssi_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/rssi_1.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/rssi_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/rssi_2.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/rssi_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/rssi_3.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/rssi_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/rssi_4.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/rssi_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/rssi_5.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/write.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/digi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/digi_logo.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/question.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/write_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/write_64.png -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small-40@2x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Media.xcassets/AppIcons.appiconset/Icon-Small-40@2x1.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/white_corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/white_corner.png -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/disconnect_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/disconnect_64.png -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/digi_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/digi_logo_white.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/settings_gray_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/settings_gray_64.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/xbee-csharp/HEAD/examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | #3577B6 5 | #2D659B 6 | #84C361 7 | 8 | -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo/App.xaml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | #3577B6 5 | #2D659B 6 | #84C361 7 | 8 | -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo/App.xaml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample/App.xaml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample/App.xaml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | #3577B6 5 | #2D659B 6 | #84C361 7 | 8 | -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | #3577B6 5 | #2D659B 6 | #84C361 7 | 8 | -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | #3577B6 5 | #2D659B 6 | #84C361 7 | 8 | -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample/App.xaml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | #3577B6 5 | #2D659B 6 | #84C361 7 | 8 | -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample/App.xaml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /docs/templates/partials/affix.tmpl.partial: -------------------------------------------------------------------------------- 1 | {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}} 2 | 3 | 8 | -------------------------------------------------------------------------------- /docs/templates/styles/main.js: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information. 2 | function bannerLinkWhite() { 3 | document.getElementById("banner-logo").setAttribute("src", "../images/Digi_logo_banner_white.png"); 4 | } 5 | function bannerLinkNormal() { 6 | document.getElementById("banner-logo").setAttribute("src", "../images/Digi_logo_banner.png"); 7 | } -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Resources/about/authors.txt: -------------------------------------------------------------------------------- 1 | This product includes software developed by other open source projects: 2 | 3 | - Bluetooth LE plugin for Xamarin (Adrian Seceleanu, Sven-Michael Stübe) 4 | - ACR User Dialogs (Allan Ritchie) 5 | - XBee Library for Xamarin (Sébastien Rault and Digi International) 6 | - NETSRP (White Glove Games) 7 | - Json.NET (James Newton-King) 8 | - Popup Page Plugin (Kirill) 9 | - Plugin Permissions (James Montemagno) -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- 1 | 9 | 10 | -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- 1 | 9 | 10 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- 1 | 9 | 10 | -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- 1 | 9 | 10 | -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- 1 | 9 | 10 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Exceptions/CLIException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace IX15Configurator.Exceptions 4 | { 5 | public class CLIException : Exception 6 | { 7 | public CLIException() 8 | { 9 | } 10 | 11 | public CLIException(string message) : base(message) 12 | { 13 | } 14 | 15 | public CLIException(string message, Exception inner) : base(message, inner) 16 | { 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- 1 | 9 | 10 | -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- 1 | 9 | 10 | -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/drawable/splash_screen.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- 1 | 9 | 10 | -------------------------------------------------------------------------------- /docs/templates/partials/toc.tmpl.partial: -------------------------------------------------------------------------------- 1 | {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}} 2 | 3 | 9 | -------------------------------------------------------------------------------- /docs/api/index.md: -------------------------------------------------------------------------------- 1 | # Introduction 2 | The XBee library for Xamarin is an easy-to-use API developed in C# that allows you to interact with Digi's XBee radio frequency (RF) modules. 3 | 4 | The API is designed both for new and advanced users. You don't need previous knowledge of XBee communication protocols or advanced C#/Xamarin experience to get started. The API provides all the methods you need to perform the most common tasks related to XBee devices. If you are an advanced user, you can take advantage of the complete set of API commands to create powerful applications. 5 | 6 | -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Main.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | 5 | using Foundation; 6 | using UIKit; 7 | 8 | namespace IX15Configurator.iOS 9 | { 10 | public class Application 11 | { 12 | // This is the main entry point of the application. 13 | static void Main(string[] args) 14 | { 15 | // if you want to use a different Application Delegate class from "AppDelegate" 16 | // you can specify it here. 17 | UIApplication.Main(args, null, "AppDelegate"); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- 1 | 2 | 12 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- 1 | 2 | 12 | -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- 1 | 2 | 12 | -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- 1 | 2 | 12 | -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Main.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | 5 | using Foundation; 6 | using UIKit; 7 | 8 | namespace InterfacesConfigurationSample.iOS 9 | { 10 | public class Application 11 | { 12 | // This is the main entry point of the application. 13 | static void Main(string[] args) 14 | { 15 | // if you want to use a different Application Delegate class from "AppDelegate" 16 | // you can specify it here. 17 | UIApplication.Main(args, null, "AppDelegate"); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Utils/Validators/IValidationRule.cs: -------------------------------------------------------------------------------- 1 | namespace IX15Configurator.Utils.Validators 2 | { 3 | public interface IValidationRule 4 | { 5 | // Properties. 6 | /// 7 | /// The validation error description. 8 | /// 9 | string Description { get; } 10 | 11 | /// 12 | /// Validates the given value. 13 | /// 14 | /// The value to validate. 15 | /// true if the value is valid, false otherwise. 16 | bool Validate(string value); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/drawable/splash_screen.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 10 | 11 | 12 | 15 | 16 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Services/GPSDependencyService.cs: -------------------------------------------------------------------------------- 1 | using CoreLocation; 2 | using IX15Configurator.iOS.Services; 3 | using IX15Configurator.Services; 4 | 5 | [assembly: Xamarin.Forms.Dependency(typeof(GPSDependencyService))] 6 | namespace IX15Configurator.iOS.Services 7 | { 8 | class GPSDependencyService : IGPSDependencyService 9 | { 10 | public bool IsGPSEnabled() 11 | { 12 | if (CLLocationManager.Status == CLAuthorizationStatus.Denied) 13 | { 14 | return false; 15 | } 16 | else 17 | { 18 | return true; 19 | } 20 | } 21 | } 22 | } -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Services/GPSDependencyService.cs: -------------------------------------------------------------------------------- 1 | using Android.Content; 2 | using Android.Locations; 3 | using IX15Configurator.Droid.Services; 4 | using IX15Configurator.Services; 5 | 6 | [assembly: Xamarin.Forms.Dependency(typeof(GPSDependencyService))] 7 | namespace IX15Configurator.Droid.Services 8 | { 9 | class GPSDependencyService : IGPSDependencyService 10 | { 11 | public bool IsGPSEnabled() 12 | { 13 | LocationManager locationManager = (LocationManager)Android.App.Application.Context.GetSystemService(Context.LocationService); 14 | return locationManager.IsProviderEnabled(LocationManager.GpsProvider); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Models/BooleanSetting.cs: -------------------------------------------------------------------------------- 1 | namespace IX15Configurator.Models 2 | { 3 | class BooleanSetting : AbstractSetting 4 | { 5 | /// 6 | /// Class constructor. Instantiates a new BooleanSetting with 7 | /// the given parameters. 8 | /// 9 | /// The setting name. 10 | /// The setting command. 11 | /// The setting default value. 12 | public BooleanSetting(string name, string command, string defaultValue) : base(name, command, defaultValue, null) 13 | { 14 | 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample/Pages/EmptyView.xaml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- 1 | Any raw assets you want to be deployed with your application can be placed in 2 | this directory (and child directories) and given a Build Action of "AndroidAsset". 3 | 4 | These files will be deployed with your package and will be accessible using Android's 5 | AssetManager, like this: 6 | 7 | public class ReadAsset : Activity 8 | { 9 | protected override void OnCreate (Bundle bundle) 10 | { 11 | base.OnCreate (bundle); 12 | 13 | InputStream input = Assets.Open ("my_asset.txt"); 14 | } 15 | } 16 | 17 | Additionally, some Android functions will automatically load asset files: 18 | 19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); 20 | -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- 1 | Any raw assets you want to be deployed with your application can be placed in 2 | this directory (and child directories) and given a Build Action of "AndroidAsset". 3 | 4 | These files will be deployed with your package and will be accessible using Android's 5 | AssetManager, like this: 6 | 7 | public class ReadAsset : Activity 8 | { 9 | protected override void OnCreate (Bundle bundle) 10 | { 11 | base.OnCreate (bundle); 12 | 13 | InputStream input = Assets.Open ("my_asset.txt"); 14 | } 15 | } 16 | 17 | Additionally, some Android functions will automatically load asset files: 18 | 19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); 20 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- 1 | Any raw assets you want to be deployed with your application can be placed in 2 | this directory (and child directories) and given a Build Action of "AndroidAsset". 3 | 4 | These files will be deployed with you package and will be accessible using Android's 5 | AssetManager, like this: 6 | 7 | public class ReadAsset : Activity 8 | { 9 | protected override void OnCreate (Bundle bundle) 10 | { 11 | base.OnCreate (bundle); 12 | 13 | InputStream input = Assets.Open ("my_asset.txt"); 14 | } 15 | } 16 | 17 | Additionally, some Android functions will automatically load asset files: 18 | 19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); 20 | -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- 1 | Any raw assets you want to be deployed with your application can be placed in 2 | this directory (and child directories) and given a Build Action of "AndroidAsset". 3 | 4 | These files will be deployed with you package and will be accessible using Android's 5 | AssetManager, like this: 6 | 7 | public class ReadAsset : Activity 8 | { 9 | protected override void OnCreate (Bundle bundle) 10 | { 11 | base.OnCreate (bundle); 12 | 13 | InputStream input = Assets.Open ("my_asset.txt"); 14 | } 15 | } 16 | 17 | Additionally, some Android functions will automatically load asset files: 18 | 19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); 20 | -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- 1 | Any raw assets you want to be deployed with your application can be placed in 2 | this directory (and child directories) and given a Build Action of "AndroidAsset". 3 | 4 | These files will be deployed with you package and will be accessible using Android's 5 | AssetManager, like this: 6 | 7 | public class ReadAsset : Activity 8 | { 9 | protected override void OnCreate (Bundle bundle) 10 | { 11 | base.OnCreate (bundle); 12 | 13 | InputStream input = Assets.Open ("my_asset.txt"); 14 | } 15 | } 16 | 17 | Additionally, some Android functions will automatically load asset files: 18 | 19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); 20 | -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- 1 | Any raw assets you want to be deployed with your application can be placed in 2 | this directory (and child directories) and given a Build Action of "AndroidAsset". 3 | 4 | These files will be deployed with you package and will be accessible using Android's 5 | AssetManager, like this: 6 | 7 | public class ReadAsset : Activity 8 | { 9 | protected override void OnCreate (Bundle bundle) 10 | { 11 | base.OnCreate (bundle); 12 | 13 | InputStream input = Assets.Open ("my_asset.txt"); 14 | } 15 | } 16 | 17 | Additionally, some Android functions will automatically load asset files: 18 | 19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); 20 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Resources/values/digi_style.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 16 | -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- 1 | Any raw assets you want to be deployed with your application can be placed in 2 | this directory (and child directories) and given a Build Action of "AndroidAsset". 3 | 4 | These files will be deployed with you package and will be accessible using Android's 5 | AssetManager, like this: 6 | 7 | public class ReadAsset : Activity 8 | { 9 | protected override void OnCreate (Bundle bundle) 10 | { 11 | base.OnCreate (bundle); 12 | 13 | InputStream input = Assets.Open ("my_asset.txt"); 14 | } 15 | } 16 | 17 | Additionally, some Android functions will automatically load asset files: 18 | 19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); 20 | -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- 1 | Any raw assets you want to be deployed with your application can be placed in 2 | this directory (and child directories) and given a Build Action of "AndroidAsset". 3 | 4 | These files will be deployed with your package and will be accessible using Android's 5 | AssetManager, like this: 6 | 7 | public class ReadAsset : Activity 8 | { 9 | protected override void OnCreate (Bundle bundle) 10 | { 11 | base.OnCreate (bundle); 12 | 13 | InputStream input = Assets.Open ("my_asset.txt"); 14 | } 15 | } 16 | 17 | Additionally, some Android functions will automatically load asset files: 18 | 19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); 20 | -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Resources/values/digi_style.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 16 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Utils/Converters/StringNullOrEmptyBooleanConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using Xamarin.Forms; 4 | 5 | namespace IX15Configurator.Utils.Converters 6 | { 7 | public class StringNullOrEmptyBooleanConverter : IValueConverter 8 | { 9 | /// 10 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 11 | { 12 | string stringValue = (string)value; 13 | return !string.IsNullOrWhiteSpace(stringValue); 14 | } 15 | 16 | /// 17 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 18 | { 19 | return null; 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /docs/templates/styles/scrollup.js: -------------------------------------------------------------------------------- 1 | // https://cybmeta.com/scroll-arriba-jquery 2 | (function($) { 3 | $(document).ready( 4 | function() { 5 | // Show or hide the button if we are 200 px 6 | // below the top position or if we are scrolling up. 7 | var lastScroll = 0; 8 | $(window).scroll(function() { 9 | var currentScroll = $(window).scrollTop(); 10 | if (currentScroll < 200 || currentScroll > lastScroll) { 11 | $('.scrollup').fadeOut(); 12 | } else { 13 | $('.scrollup').fadeIn(); 14 | } 15 | lastScroll = currentScroll; 16 | }); 17 | 18 | // Animate the scroll when clicking. 19 | $('.scrollup').click( function(e) { 20 | e.preventDefault(); 21 | $('html, body').animate({scrollTop : 0}, 300); 22 | }); 23 | }); 24 | })(jQuery); 25 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Services/IAppVersionDependencyService.cs: -------------------------------------------------------------------------------- 1 | namespace IX15Configurator.Services 2 | { 3 | public interface IAppVersionDependencyService 4 | { 5 | /// 6 | /// Returns the name (title) of the application. 7 | /// 8 | /// The name (title) of the application. 9 | string GetName(); 10 | 11 | /// 12 | /// Returns the version of the application. 13 | /// 14 | /// The version of the application. 15 | string GetVersion(); 16 | 17 | /// 18 | /// Returns the build ID of the application. 19 | /// 20 | /// The build ID of the application. 21 | string GetBuild(); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Utils/Validators/TimeDurationValidator.cs: -------------------------------------------------------------------------------- 1 | using System.Text.RegularExpressions; 2 | 3 | namespace IX15Configurator.Utils.Validators 4 | { 5 | class TimeDurationValidator : IValidationRule 6 | { 7 | // Constants. 8 | private const string TIME_PATTERN = @"^([0-9]+w)?([0-9]+d)?([0-9]+h)?([0-9]+m)?([0-9]+s)?$"; 9 | 10 | // Properties. 11 | /// 12 | public string Description => "Time must match syntax 'number{w|d|h|m|s}...'"; 13 | 14 | /// 15 | public bool Validate(string value) 16 | { 17 | if (value == null) 18 | return false; 19 | 20 | var regex = new Regex(TIME_PATTERN, RegexOptions.IgnoreCase); 21 | return regex.IsMatch(value); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | # This is the XBee library for Xamarin library API reference. 2 | Refer to the [API reference](/api/index.html) to see the possibilities this library offers to work with Digi's XBee devices. 3 | ## Useful information 4 | The following are links to different XBee libraries and utilities that may come in handy when working with XBees: 5 | ### Libraries 6 | 1. [XBee Java Library](https://github.com/digidotcom/xbee-java) 7 | 2. [XBee Python Library](https://github.com/digidotcom/xbee-python) 8 | 3. [XBee ANSI C Library](https://github.com/digidotcom/xbee_ansic_library) 9 | ### Software 10 | 1. [XCTU](https://www.digi.com/products/iot-platform/xctu) 11 | 2. [Digi XBee Network Assistant](https://www.digi.com/products/embedded-systems/digi-xbee-tools/digi-xbee-network-assistant) 12 | 3. [Digi XBee Mobile App](https://www.digi.com/products/embedded-systems/digi-xbee-tools/digi-xbee-mobile-app) -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Models/TextSetting.cs: -------------------------------------------------------------------------------- 1 | using IX15Configurator.Utils.Validators; 2 | 3 | namespace IX15Configurator.Models 4 | { 5 | class TextSetting : AbstractSetting 6 | { 7 | /// 8 | /// Class constructor. Instantiates a new TextSetting with 9 | /// the given parameters. 10 | /// 11 | /// The setting name. 12 | /// The setting command. 13 | /// The setting default value. 14 | /// List of validators for the setting. 15 | public TextSetting(string name, string command, string defaultValue, params IValidationRule[] validations) : base(name, command, defaultValue, validations) 16 | { 17 | 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Utils/Validators/IPValidator.cs: -------------------------------------------------------------------------------- 1 | using System.Text.RegularExpressions; 2 | 3 | namespace IX15Configurator.Utils.Validators 4 | { 5 | class IPValidator : IValidationRule 6 | { 7 | // Constants. 8 | private const string IP_PATTERN = @"^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\/[0-9]{1,2}$"; 9 | 10 | // Properties. 11 | /// 12 | public string Description => "IP must match syntax 'XXX.XXX.XXX.XXX/YY'"; 13 | 14 | /// 15 | public bool Validate(string value) 16 | { 17 | if (string.IsNullOrEmpty(value)) 18 | return false; 19 | 20 | var regex = new Regex(IP_PATTERN, RegexOptions.IgnoreCase); 21 | return regex.IsMatch(value); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/Services/AppVersionDependencyService.cs: -------------------------------------------------------------------------------- 1 | using Foundation; 2 | using IX15Configurator.iOS.Services; 3 | using IX15Configurator.Services; 4 | 5 | [assembly: Xamarin.Forms.Dependency(typeof(AppVersionDependencyService))] 6 | namespace IX15Configurator.iOS.Services 7 | { 8 | class AppVersionDependencyService : IAppVersionDependencyService 9 | { 10 | public string GetName() 11 | { 12 | return NSBundle.MainBundle.ObjectForInfoDictionary("CFBundleDisplayName").ToString(); 13 | } 14 | 15 | public string GetVersion() 16 | { 17 | return NSBundle.MainBundle.ObjectForInfoDictionary("CFBundleShortVersionString").ToString(); 18 | } 19 | 20 | public string GetBuild() 21 | { 22 | return NSBundle.MainBundle.ObjectForInfoDictionary("CFBundleVersion").ToString(); 23 | } 24 | } 25 | } -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Pages/EmptyView.xaml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Utils/Converters/InvertBooleanConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using Xamarin.Forms; 4 | 5 | namespace IX15Configurator.Utils.Converters 6 | { 7 | class InvertBooleanConverter : IValueConverter 8 | { 9 | /// 10 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 11 | { 12 | if (targetType != typeof(bool)) 13 | throw new InvalidOperationException(String.Format("{0}: The target must be a boolean", GetType().Name)); 14 | 15 | bool boolValue = (bool)value; 16 | return !boolValue; 17 | } 18 | 19 | /// 20 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 21 | { 22 | throw new NotSupportedException(); 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Utils/Converters/IPModeConverter.cs: -------------------------------------------------------------------------------- 1 | using IX15Configurator.Models; 2 | using System; 3 | using System.Globalization; 4 | using System.Linq; 5 | using Xamarin.Forms; 6 | 7 | namespace IX15Configurator.Utils.Converters 8 | { 9 | class IPModeConverter : IValueConverter 10 | { 11 | /// 12 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 13 | { 14 | string stringValue = (string)value; 15 | return DeviceSettings.IP_MODE_VALUES[stringValue.Trim()]; 16 | } 17 | 18 | /// 19 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 20 | { 21 | string stringDisplayValue = (string)value; 22 | return DeviceSettings.IP_MODE_VALUES.FirstOrDefault(x => x.Value.Equals(stringDisplayValue.Trim())).Key; 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample/RelayConsoleSample.shproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {164B96CD-EA89-4D0F-BDF8-16F797BA29AF} 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample/BleMicroPythonSample.shproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {73D95281-FB5D-4D78-AA34-8B722052DB3E} 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample/BleConfigurationSample.shproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {FC265072-73CD-4D0C-98AD-75EBE14479F6} 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Pages/EmptyView.xaml.cs: -------------------------------------------------------------------------------- 1 | using IX15Configurator.Utils; 2 | 3 | using Xamarin.Forms; 4 | using Xamarin.Forms.Xaml; 5 | 6 | namespace IX15Configurator.Pages 7 | { 8 | [XamlCompilation(XamlCompilationOptions.Compile)] 9 | public partial class EmptyView : ContentView 10 | { 11 | /// 12 | /// Class constructor. Instantiates a new EmptyView object. 13 | /// 14 | public EmptyView() 15 | { 16 | InitializeComponent(); 17 | UpdateFilterLabel(); 18 | AppPreferences.SearchFilterChanged += (s, e) => 19 | { 20 | UpdateFilterLabel(); 21 | }; 22 | } 23 | 24 | /// 25 | /// Updates the visibility of the 'filter' label. 26 | /// 27 | private void UpdateFilterLabel() 28 | { 29 | filterLabel.IsVisible = !string.IsNullOrEmpty(AppPreferences.GetSearchFilterText()); 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Utils/Converters/IPModeStaticBooleanConverter.cs: -------------------------------------------------------------------------------- 1 | using IX15Configurator.Models; 2 | using System; 3 | using System.Globalization; 4 | using Xamarin.Forms; 5 | 6 | namespace IX15Configurator.Utils.Converters 7 | { 8 | public class IPModeStaticBooleanConverter : IValueConverter 9 | { 10 | /// 11 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 12 | { 13 | if (targetType != typeof(bool)) 14 | throw new InvalidOperationException(String.Format("{0}: The target must be a boolean", GetType().Name)); 15 | 16 | string stringValue = (string)value; 17 | return DeviceSettings.VALUE_IP_MODE_STATIC.Equals(stringValue); 18 | } 19 | 20 | /// 21 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 22 | { 23 | throw new NotSupportedException(); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample/BleMicrocontrollerSample.shproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {79DAA1E1-164C-49B5-A0DF-8344F2E3DA84} 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample/Services/IGPSDependencyService.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2022, Digi International Inc. 3 | * 4 | * Permission to use, copy, modify, and/or distribute this software for any 5 | * purpose with or without fee is hereby granted, provided that the above 6 | * copyright notice and this permission notice appear in all copies. 7 | * 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 | */ 16 | 17 | namespace InterfacesConfigurationSample.Services 18 | { 19 | public interface IGPSDependencyService 20 | { 21 | bool IsGPSEnabled(); 22 | } 23 | } -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Pages/CustomContentPage.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xamarin.Forms; 3 | 4 | namespace IX15Configurator.Pages 5 | { 6 | public class CustomContentPage : ContentPage 7 | { 8 | /// 9 | /// Gets or Sets the Back button click overriden custom action 10 | /// 11 | public Action CustomBackButtonAction { get; set; } 12 | 13 | public static readonly BindableProperty EnableBackButtonOverrideProperty = 14 | BindableProperty.Create(nameof(EnableBackButtonOverride), typeof(bool), typeof(CustomContentPage), false); 15 | 16 | /// 17 | /// Gets or Sets Custom Back button overriding state 18 | /// 19 | public bool EnableBackButtonOverride 20 | { 21 | get 22 | { 23 | return (bool)GetValue(EnableBackButtonOverrideProperty); 24 | } 25 | set 26 | { 27 | SetValue(EnableBackButtonOverrideProperty, value); 28 | } 29 | } 30 | } 31 | } -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/IX15ConfiguratorApp.xaml.cs: -------------------------------------------------------------------------------- 1 | using IX15Configurator.Pages; 2 | using Xamarin.Forms; 3 | 4 | namespace IX15Configurator 5 | { 6 | public partial class IX15ConfiguratorApp : Application 7 | { 8 | public IX15ConfiguratorApp() 9 | { 10 | InitializeComponent(); 11 | 12 | var mainPage = new DeviceListPage(); 13 | MainPage = new NavigationPage(mainPage); 14 | 15 | ((NavigationPage)MainPage).BackgroundColor = Color.White; 16 | ((NavigationPage)MainPage).BarBackgroundColor = Color.FromHex("#3577B6"); 17 | ((NavigationPage)MainPage).BarTextColor = Color.White; 18 | } 19 | 20 | protected override void OnStart() 21 | { 22 | // Handle when your app starts 23 | } 24 | 25 | protected override void OnSleep() 26 | { 27 | // Handle when your app sleeps 28 | } 29 | 30 | protected override void OnResume() 31 | { 32 | // Handle when your app resumes 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Resources/about/licenses/mit_kirill.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) Copyright © 2016 Kirill 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Resources/about/licenses/mit_aritchie.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) Copyright © 2016 Allan Ritchie 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Resources/about/licenses/mit_newton.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) Copyright © 2007 James Newton-King 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Resources/about/licenses/mit_james_montemagno.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) Copyright (c) 2016 James Montemagno 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator/Utils/Converters/StringToBooleanConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using Xamarin.Forms; 4 | 5 | namespace IX15Configurator.Utils.Converters 6 | { 7 | class StringToBooleanConverter : IValueConverter 8 | { 9 | /// 10 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 11 | { 12 | if (targetType != typeof(bool)) 13 | throw new InvalidOperationException(String.Format("{0}: The target must be a bool")); 14 | 15 | string stringValue = (string)value; 16 | return bool.Parse(stringValue.Trim()); 17 | } 18 | 19 | /// 20 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 21 | { 22 | if (targetType != typeof(string)) 23 | throw new InvalidOperationException(String.Format("{0}: The target must be a string")); 24 | 25 | bool booleanValue = (bool)value; 26 | return booleanValue.ToString().ToLower(); 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample/Models/SettingType.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2022, Digi International Inc. 3 | * 4 | * Permission to use, copy, modify, and/or distribute this software for any 5 | * purpose with or without fee is hereby granted, provided that the above 6 | * copyright notice and this permission notice appear in all copies. 7 | * 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 | */ 16 | 17 | namespace InterfacesConfigurationSample.Models 18 | { 19 | /// 20 | /// Enumerates the available setting types. 21 | /// 22 | public enum SettingType 23 | { 24 | // Enumeration entries. 25 | BOOLEAN = 0, 26 | TEXT = 1, 27 | COMBO = 2 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using Foundation; 2 | using Rg.Plugins.Popup; 3 | using UIKit; 4 | 5 | namespace IX15Configurator.iOS 6 | { 7 | // The UIApplicationDelegate for the application. This class is responsible for launching the 8 | // User Interface of the application, as well as listening (and optionally responding) to 9 | // application events from iOS. 10 | [Register("AppDelegate")] 11 | public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate 12 | { 13 | // 14 | // This method is invoked when the application has loaded and is ready to run. In this 15 | // method you should instantiate the window, load the UI into it and then make the window 16 | // visible. 17 | // 18 | // You have 17 seconds to return from this method, or iOS will terminate your application. 19 | // 20 | public override bool FinishedLaunching(UIApplication app, NSDictionary options) 21 | { 22 | Popup.Init(); 23 | 24 | global::Xamarin.Forms.Forms.Init(); 25 | LoadApplication(new IX15ConfiguratorApp()); 26 | 27 | return base.FinishedLaunching(app, options); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | using Android.App; 5 | 6 | // General Information about an assembly is controlled through the following 7 | // set of attributes. Change these attribute values to modify the information 8 | // associated with an assembly. 9 | [assembly: AssemblyTitle("TankDemo.Android")] 10 | [assembly: AssemblyDescription("")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("Digi International Inc.")] 13 | [assembly: AssemblyProduct("TankDemo.Android")] 14 | [assembly: AssemblyCopyright("Copyright © 2021")] 15 | [assembly: AssemblyTrademark("")] 16 | [assembly: AssemblyCulture("")] 17 | [assembly: ComVisible(false)] 18 | 19 | // Version information for an assembly consists of the following four values: 20 | // 21 | // Major Version 22 | // Minor Version 23 | // Build Number 24 | // Revision 25 | [assembly: AssemblyVersion("1.0.0.0")] 26 | [assembly: AssemblyFileVersion("1.0.0.0")] 27 | 28 | // Add some common permissions, these can be removed if not needed 29 | [assembly: UsesPermission(Android.Manifest.Permission.Internet)] 30 | [assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)] 31 | -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo.iOS/Main.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2021, Digi International Inc. 3 | * 4 | * Permission to use, copy, modify, and/or distribute this software for any 5 | * purpose with or without fee is hereby granted, provided that the above 6 | * copyright notice and this permission notice appear in all copies. 7 | * 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 | */ 16 | 17 | using UIKit; 18 | 19 | namespace TankDemo.iOS 20 | { 21 | public class Application 22 | { 23 | // This is the main entry point of the application. 24 | static void Main(string[] args) 25 | { 26 | // if you want to use a different Application Delegate class from "AppDelegate" 27 | // you can specify it here. 28 | UIApplication.Main(args, null, "AppDelegate"); 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | using Android.App; 5 | 6 | // General Information about an assembly is controlled through the following 7 | // set of attributes. Change these attribute values to modify the information 8 | // associated with an assembly. 9 | [assembly: AssemblyTitle("AgricultureDemo.Android")] 10 | [assembly: AssemblyDescription("")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("Digi International Inc.")] 13 | [assembly: AssemblyProduct("AgricultureDemo.Android")] 14 | [assembly: AssemblyCopyright("Copyright © 2020")] 15 | [assembly: AssemblyTrademark("")] 16 | [assembly: AssemblyCulture("")] 17 | [assembly: ComVisible(false)] 18 | 19 | // Version information for an assembly consists of the following four values: 20 | // 21 | // Major Version 22 | // Minor Version 23 | // Build Number 24 | // Revision 25 | [assembly: AssemblyVersion("1.0.0.0")] 26 | [assembly: AssemblyFileVersion("1.0.0.0")] 27 | 28 | // Add some common permissions, these can be removed if not needed 29 | [assembly: UsesPermission(Android.Manifest.Permission.Internet)] 30 | [assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)] 31 | -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo.iOS/Main.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2020, Digi International Inc. 3 | * 4 | * Permission to use, copy, modify, and/or distribute this software for any 5 | * purpose with or without fee is hereby granted, provided that the above 6 | * copyright notice and this permission notice appear in all copies. 7 | * 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 | */ 16 | 17 | using UIKit; 18 | 19 | namespace AgricultureDemo.iOS 20 | { 21 | public class Application 22 | { 23 | // This is the main entry point of the application. 24 | static void Main(string[] args) 25 | { 26 | // if you want to use a different Application Delegate class from "AppDelegate" 27 | // you can specify it here. 28 | UIApplication.Main(args, null, "AppDelegate"); 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /examples/xamarin/RelayConsoleSample/RelayConsoleSample.iOS/Main.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2019, Digi International Inc. 3 | * 4 | * Permission to use, copy, modify, and/or distribute this software for any 5 | * purpose with or without fee is hereby granted, provided that the above 6 | * copyright notice and this permission notice appear in all copies. 7 | * 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 | */ 16 | 17 | using UIKit; 18 | 19 | namespace RelayConsoleSample.iOS 20 | { 21 | public class Application 22 | { 23 | // This is the main entry point of the application. 24 | static void Main(string[] args) 25 | { 26 | // if you want to use a different Application Delegate class from "AppDelegate" 27 | // you can specify it here. 28 | UIApplication.Main(args, null, "AppDelegate"); 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /examples/xamarin/BleMicroPythonSample/BleMicroPythonSample.iOS/Main.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2019, Digi International Inc. 3 | * 4 | * Permission to use, copy, modify, and/or distribute this software for any 5 | * purpose with or without fee is hereby granted, provided that the above 6 | * copyright notice and this permission notice appear in all copies. 7 | * 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 | */ 16 | 17 | using UIKit; 18 | 19 | namespace BleMicroPythonSample.iOS 20 | { 21 | public class Application 22 | { 23 | // This is the main entry point of the application. 24 | static void Main(string[] args) 25 | { 26 | // if you want to use a different Application Delegate class from "AppDelegate" 27 | // you can specify it here. 28 | UIApplication.Main(args, null, "AppDelegate"); 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /examples/xamarin/BleConfigurationSample/BleConfigurationSample.iOS/Main.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2019, Digi International Inc. 3 | * 4 | * Permission to use, copy, modify, and/or distribute this software for any 5 | * purpose with or without fee is hereby granted, provided that the above 6 | * copyright notice and this permission notice appear in all copies. 7 | * 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 | */ 16 | 17 | using UIKit; 18 | 19 | namespace BleConfigurationSample.iOS 20 | { 21 | public class Application 22 | { 23 | // This is the main entry point of the application. 24 | static void Main(string[] args) 25 | { 26 | // if you want to use a different Application Delegate class from "AppDelegate" 27 | // you can specify it here. 28 | UIApplication.Main(args, null, "AppDelegate"); 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample.iOS/Main.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2019, Digi International Inc. 3 | * 4 | * Permission to use, copy, modify, and/or distribute this software for any 5 | * purpose with or without fee is hereby granted, provided that the above 6 | * copyright notice and this permission notice appear in all copies. 7 | * 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 | */ 16 | 17 | using UIKit; 18 | 19 | namespace BleMicrocontrollerSample.iOS 20 | { 21 | public class Application 22 | { 23 | // This is the main entry point of the application. 24 | static void Main(string[] args) 25 | { 26 | // if you want to use a different Application Delegate class from "AppDelegate" 27 | // you can specify it here. 28 | UIApplication.Main(args, null, "AppDelegate"); 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /examples/xamarin/TankDemo/TankDemo/Utils/Converters/InverseBoolConverter.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2021, Digi International Inc. 3 | * 4 | * Permission to use, copy, modify, and/or distribute this software for any 5 | * purpose with or without fee is hereby granted, provided that the above 6 | * copyright notice and this permission notice appear in all copies. 7 | * 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 | */ 16 | 17 | using System; 18 | using System.Globalization; 19 | using Xamarin.Forms; 20 | 21 | namespace TankDemo 22 | { 23 | public class InverseBoolConverter : IValueConverter 24 | { 25 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 26 | { 27 | return !((bool)value); 28 | } 29 | 30 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 31 | { 32 | return null; 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /examples/xamarin/AgricultureDemo/AgricultureDemo/Utils/Converters/InverseBoolConverter.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2020, Digi International Inc. 3 | * 4 | * Permission to use, copy, modify, and/or distribute this software for any 5 | * purpose with or without fee is hereby granted, provided that the above 6 | * copyright notice and this permission notice appear in all copies. 7 | * 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 | */ 16 | 17 | using System; 18 | using System.Globalization; 19 | using Xamarin.Forms; 20 | 21 | namespace AgricultureDemo 22 | { 23 | public class InverseBoolConverter : IValueConverter 24 | { 25 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 26 | { 27 | return !((bool)value); 28 | } 29 | 30 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 31 | { 32 | return null; 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /examples/xamarin/IX15BleConfiguratorDemo/IX15Configurator.Android/SplashActivity.cs: -------------------------------------------------------------------------------- 1 | using Android.App; 2 | using Android.Content; 3 | using Android.OS; 4 | using Android.Util; 5 | using System.Threading.Tasks; 6 | 7 | namespace IX15Configurator.Droid 8 | { 9 | [Activity(Theme = "@style/DigiTheme.Splash", MainLauncher = true, NoHistory = true)] 10 | public class SplashActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity 11 | { 12 | static readonly string TAG = "X:" + typeof(SplashActivity).Name; 13 | 14 | public override void OnCreate(Bundle savedInstanceState, PersistableBundle persistentState) 15 | { 16 | base.OnCreate(savedInstanceState, persistentState); 17 | Log.Debug(TAG, "SplashActivity.OnCreate"); 18 | } 19 | 20 | // Launches the startup task. 21 | protected override void OnResume() 22 | { 23 | base.OnResume(); 24 | Task startupWork = new Task(() => { Startup(); }); 25 | startupWork.Start(); 26 | } 27 | 28 | // Prevent the back button from canceling the startup process 29 | public override void OnBackPressed() { } 30 | 31 | private void Startup() 32 | { 33 | Log.Debug(TAG, "Starting MainActivity..."); 34 | StartActivity(new Intent(Application.Context, typeof(MainActivity))); 35 | } 36 | } 37 | } -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample/Pages/EmptyView.xaml.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2022, Digi International Inc. 3 | * 4 | * Permission to use, copy, modify, and/or distribute this software for any 5 | * purpose with or without fee is hereby granted, provided that the above 6 | * copyright notice and this permission notice appear in all copies. 7 | * 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 | */ 16 | 17 | using Xamarin.Forms; 18 | using Xamarin.Forms.Xaml; 19 | 20 | namespace InterfacesConfigurationSample.Pages 21 | { 22 | [XamlCompilation(XamlCompilationOptions.Compile)] 23 | public partial class EmptyView : ContentView 24 | { 25 | /// 26 | /// Class constructor. Instantiates a new EmptyView object. 27 | /// 28 | public EmptyView() 29 | { 30 | InitializeComponent(); 31 | } 32 | } 33 | } -------------------------------------------------------------------------------- /XBeeLibrary.Core/Events/GpmUpdateEventArgs.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2023, Digi International Inc. 3 | * 4 | * Permission to use, copy, modify, and/or distribute this software for any 5 | * purpose with or without fee is hereby granted, provided that the above 6 | * copyright notice and this permission notice appear in all copies. 7 | * 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 | */ 16 | 17 | using System; 18 | 19 | namespace XBeeLibrary.Core.Events 20 | { 21 | public class GpmUpdateEventArgs : EventArgs 22 | { 23 | public GpmUpdateEventArgs(string message, int? progress) 24 | { 25 | Message = message; 26 | Progress = progress; 27 | } 28 | 29 | /// 30 | /// The event message. 31 | /// 32 | public string Message { get; private set; } 33 | 34 | /// 35 | /// The event progress (percentage). 36 | /// 37 | public int? Progress { get; private set; } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample/Exceptions/CommunicationException.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2022, Digi International Inc. 3 | * 4 | * Permission to use, copy, modify, and/or distribute this software for any 5 | * purpose with or without fee is hereby granted, provided that the above 6 | * copyright notice and this permission notice appear in all copies. 7 | * 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 | */ 16 | 17 | using System; 18 | 19 | namespace InterfacesConfigurationSample.Exceptions 20 | { 21 | public class CommunicationException : Exception 22 | { 23 | public CommunicationException() 24 | { 25 | } 26 | 27 | public CommunicationException(string message) : base(message) 28 | { 29 | } 30 | 31 | public CommunicationException(string message, Exception inner) : base(message, inner) 32 | { 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /examples/xamarin/InterfacesConfigurationSample/InterfacesConfigurationSample.iOS/Services/GPSDependencyService.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2022, Digi International Inc. 3 | * 4 | * Permission to use, copy, modify, and/or distribute this software for any 5 | * purpose with or without fee is hereby granted, provided that the above 6 | * copyright notice and this permission notice appear in all copies. 7 | * 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 | */ 16 | 17 | using CoreLocation; 18 | using InterfacesConfigurationSample.iOS.Services; 19 | using InterfacesConfigurationSample.Services; 20 | 21 | [assembly: Xamarin.Forms.Dependency(typeof(GPSDependencyService))] 22 | namespace InterfacesConfigurationSample.iOS.Services 23 | { 24 | internal class GPSDependencyService : IGPSDependencyService 25 | { 26 | public bool IsGPSEnabled() 27 | { 28 | return CLLocationManager.Status != CLAuthorizationStatus.Denied; 29 | } 30 | } 31 | } -------------------------------------------------------------------------------- /examples/xamarin/BleMicrocontrollerSample/BleMicrocontrollerSample/Pages/SendFilePage.xaml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 |