Skip to content

Commit 16f3afd

Browse files
Updated to a new version of the Alpaca Razor Library
1 parent f0a58e6 commit 16f3afd

12 files changed

Lines changed: 22 additions & 22 deletions

AlpacaDriverDemo/AlpacaDriverDemo.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="ASCOM.Alpaca.Razor" Version="0.4.0-alpha01" />
10+
<PackageReference Include="ASCOM.Alpaca.Razor" Version="0.4.0-alpha02" />
1111
</ItemGroup>
1212

1313
</Project>

AlpacaDriverDemo/Pages/Devices/CameraSetup.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<h3>Camera Setup: @InstanceID</h3>
44

5-
@if (ASCOM.Alpaca.DeviceManager.cameraV3s.ContainsKey(InstanceID))
5+
@if (ASCOM.Alpaca.DeviceManager.Cameras.ContainsKey(InstanceID))
66
{
77
<p>Add your device setup and control functions here</p>
88

AlpacaDriverDemo/Pages/Devices/CoverCalibratorSetup.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<h3>CoverCalibrator Setup: @InstanceID</h3>
44

5-
@if (ASCOM.Alpaca.DeviceManager.coverCalibratorV1s.ContainsKey(InstanceID))
5+
@if (ASCOM.Alpaca.DeviceManager.CoverCalibrators.ContainsKey(InstanceID))
66
{
77
<p>Add your device setup and control functions here</p>
88

AlpacaDriverDemo/Pages/Devices/DomeSetup.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<h3>Dome Setup: @InstanceID</h3>
44

5-
@if (ASCOM.Alpaca.DeviceManager.domeV2s.ContainsKey(InstanceID))
5+
@if (ASCOM.Alpaca.DeviceManager.Domes.ContainsKey(InstanceID))
66
{
77
<p>Add your device setup and control functions here</p>
88

AlpacaDriverDemo/Pages/Devices/FilterWheelSetup.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<h3>FilterWheel Setup: @InstanceID</h3>
44

5-
@if (ASCOM.Alpaca.DeviceManager.filterWheelV2s.ContainsKey(InstanceID))
5+
@if (ASCOM.Alpaca.DeviceManager.FilterWheels.ContainsKey(InstanceID))
66
{
77
<p>Add your device setup and control functions here</p>
88

AlpacaDriverDemo/Pages/Devices/FocuserSetup.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<h3>Focuser Setup: @InstanceID</h3>
44

5-
@if (ASCOM.Alpaca.DeviceManager.focuserV3s.ContainsKey(InstanceID))
5+
@if (ASCOM.Alpaca.DeviceManager.Focusers.ContainsKey(InstanceID))
66
{
77
<p>Add your device setup and control functions here</p>
88

AlpacaDriverDemo/Pages/Devices/ObservingConditionsSetup.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<h3>ObservingConditions Setup: @InstanceID</h3>
44

5-
@if (ASCOM.Alpaca.DeviceManager.observingConditions.ContainsKey(InstanceID))
5+
@if (ASCOM.Alpaca.DeviceManager.ObservingConditions.ContainsKey(InstanceID))
66
{
77
<p>Add your device setup and control functions here</p>
88

AlpacaDriverDemo/Pages/Devices/RotatorSetup.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<h3>Rotator Setup: @InstanceID</h3>
44

5-
@if (ASCOM.Alpaca.DeviceManager.rotatorV3s.ContainsKey(InstanceID))
5+
@if (ASCOM.Alpaca.DeviceManager.Rotators.ContainsKey(InstanceID))
66
{
77
<p>Add your device setup and control functions here</p>
88

AlpacaDriverDemo/Pages/Devices/SafetyMonitorSetup.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<h3>SafetyMonitor Setup: @InstanceID</h3>
44

5-
@if (ASCOM.Alpaca.DeviceManager.safetyMonitors.ContainsKey(InstanceID))
5+
@if (ASCOM.Alpaca.DeviceManager.SafetyMonitors.ContainsKey(InstanceID))
66
{
77
<p>Add your device setup and control functions here</p>
88

AlpacaDriverDemo/Pages/Devices/SwitchSetup.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<h3>Switch Setup: @InstanceID</h3>
44

5-
@if (ASCOM.Alpaca.DeviceManager.switchV2s.ContainsKey(InstanceID))
5+
@if (ASCOM.Alpaca.DeviceManager.Switches.ContainsKey(InstanceID))
66
{
77
<p>Add your device setup and control functions here</p>
88

0 commit comments

Comments
 (0)