Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,17 @@
<Content Include="Libs\Plugin.BLE.dll" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\ShimmerBLEAPI.Android\ShimmerBLEAPI.Android.csproj">
<Project>{381507d7-64e0-464d-a100-1f981c6a5235}</Project>
<Name>ShimmerBLEAPI.Android</Name>
</ProjectReference>
<ProjectReference Include="..\..\ShimmerBLEAPI\ShimmerBLEAPI.csproj">
<Project>{2B423ED5-9DB8-40FE-8C0C-DCDAFE0E6229}</Project>
<Name>ShimmerBLEAPI</Name>
</ProjectReference>
<ProjectReference Include="..\MultiVerisenseExample\MultiVerisenseExample.csproj">
<Project>{dd54040d-e677-4533-b953-2aedf0b3a55e}</Project>
<Name>MultiShimmerExample</Name>
<Name>MultiVerisenseExample</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,13 +154,17 @@
<PackageReference Include="Xamarin.Essentials" Version="1.5.3.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\ShimmerBLEAPI.UWP\ShimmerBLEAPI.UWP.csproj">
<Project>{76908925-02bb-433b-a9e5-bb07edfcb9c9}</Project>
<Name>ShimmerBLEAPI.UWP</Name>
</ProjectReference>
<ProjectReference Include="..\..\ShimmerBLEAPI\ShimmerBLEAPI.csproj">
<Project>{2b423ed5-9db8-40fe-8c0c-dcdafe0e6229}</Project>
<Name>ShimmerBLEAPI</Name>
</ProjectReference>
<ProjectReference Include="..\MultiVerisenseExample\MultiVerisenseExample.csproj">
<Project>{dd54040d-e677-4533-b953-2aedf0b3a55e}</Project>
<Name>MultiShimmerExample</Name>
<Name>MultiVerisenseExample</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,13 +157,17 @@
<Content Include="Libs\Plugin.BLE.dll" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\ShimmerBLEAPI.iOS\ShimmerBLEAPI.iOS.csproj">
<Project>{7384146a-cbdd-4e65-a20f-cb9597378b26}</Project>
<Name>ShimmerBLEAPI.iOS</Name>
</ProjectReference>
<ProjectReference Include="..\..\ShimmerBLEAPI\ShimmerBLEAPI.csproj">
<Project>{2b423ed5-9db8-40fe-8c0c-dcdafe0e6229}</Project>
<Name>ShimmerBLEAPI</Name>
</ProjectReference>
<ProjectReference Include="..\MultiVerisenseExample\MultiVerisenseExample.csproj">
<Project>{dd54040d-e677-4533-b953-2aedf0b3a55e}</Project>
<Name>MultiShimmerExample</Name>
<Name>MultiVerisenseExample</Name>
</ProjectReference>
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,30 @@
<Frame BackgroundColor="#2196F3" Padding="10" CornerRadius="0">
<Label Text="MultiVerisenseExample" HorizontalTextAlignment="Center" TextColor="White" FontSize="24"/>
</Frame>
<StackLayout Orientation="Horizontal">
<Button Clicked="scanDevicesButton_Clicked" x:Name="scanDevicesButton" WidthRequest="150" HeightRequest="50" Text="Scan Devices"></Button>
</StackLayout>
<ListView
x:Name="deviceList"
HasUnevenRows="True"
HeightRequest="100"
SelectionMode="None"
CachingStrategy="RecycleElement">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout Orientation="Vertical" VerticalOptions="Center">
<Label Text="{Binding Uuid, StringFormat='{0}'}" FontSize="Small" />
<StackLayout.HeightRequest>
<OnPlatform x:TypeArguments="x:Double">
<On Platform="iOS">130</On>
<On Platform="Android,UWP">-1</On>
</OnPlatform>
</StackLayout.HeightRequest>
<StackLayout Orientation="Horizontal">
<CheckBox IsChecked="{Binding IsSelected}"></CheckBox>
<Label Text="{Binding Uuid, StringFormat='{0}'}" FontSize="Micro" />
<Label Text="{Binding IsPaired}" Margin="50, 0, 0, 0" FontSize="Micro" />
</StackLayout>
<StackLayout Orientation="Horizontal">
<Label Text="{Binding Status}" TextColor="Blue" FontSize="Micro"/>
<Label Text="{Binding TransferSpeed}" TextColor="Blue" FontSize="Micro"/>
Expand Down
Loading