Skip to content

Commit

Permalink
Trying to make phd understand that guiding sensor doesn't have temper…
Browse files Browse the repository at this point in the history
…ature control.
  • Loading branch information
cedric-r committed Nov 20, 2022
1 parent 06cb1d3 commit eaea086
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions ASCOM.HomeMade.SBIGCamera.iss
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[Setup]
AppID={{3a7e63ad-c913-44f0-9489-e1744c9c2991}}
AppName=ASCOM HomeMade Camera
AppVerName=ASCOM HomeMade SBig Camera Driver 1.2.8
AppVersion=1.2.8
AppVerName=ASCOM HomeMade SBig Camera Driver 1.2.9
AppVersion=1.2.9
AppPublisher=Cedric Raguenaud <cedric@raguenaud.earth>
AppPublisherURL=mailto:cedric@raguenaud.earth
AppSupportURL=https://github.com/cedric-r/ASCOM.HomeMade.SBIGCamera
AppUpdatesURL=https://github.com/cedric-r/ASCOM.HomeMade.SBIGCamera
VersionInfoVersion=1.2.8
VersionInfoVersion=1.2.9
MinVersion=0,6.1
DefaultDirName="{cf}\ASCOM\Camera\HomeMade SBIGCamera\"
DisableDirPage=yes
Expand Down
4 changes: 2 additions & 2 deletions ASCOM.HomeMade.SBIGCommon/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@
// by using the '*' as shown below:
//
// TODO - Set your driver's version here
[assembly: AssemblyVersion("1.2.8.0")]
[assembly: AssemblyFileVersion("1.2.8.0")]
[assembly: AssemblyVersion("1.2.9.0")]
[assembly: AssemblyFileVersion("1.2.9.0")]
16 changes: 8 additions & 8 deletions ASCOM.HomeMade.SBIGGuidingCamera/Driver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public override double CCDTemperature
get
{
debug.LogMessage("CCDTemperature", "Get - exception");
throw new ASCOM.MethodNotImplementedException("Cooler not implemented on guiding sensor");
throw new ASCOM.PropertyNotImplementedException("Cooler not implemented on guiding sensor");
}
}

Expand All @@ -147,20 +147,20 @@ public override bool CoolerOn
get
{
debug.LogMessage("CoolerOn", "Get = false");
return false;
throw new ASCOM.PropertyNotImplementedException("CoolerOn not implemented on guiding sensor");
}
set
{
debug.LogMessage("CoolerOn", "Set - exception");
throw new ASCOM.MethodNotImplementedException("Cooler not implemented on guiding sensor");
throw new ASCOM.PropertyNotImplementedException("CoolerOn not implemented on guiding sensor");
}
}
public override double CoolerPower
{
get
{
debug.LogMessage("CoolerPower", "Get - exception");
throw new ASCOM.MethodNotImplementedException("Cooler not implemented on guiding sensor");
throw new ASCOM.PropertyNotImplementedException("CoolerPower not implemented on guiding sensor");
}
}

Expand All @@ -169,7 +169,7 @@ public override double HeatSinkTemperature
get
{
debug.LogMessage("HeatSinkTemperature", "Get - exception");
throw new ASCOM.MethodNotImplementedException("Cooler not implemented on guiding sensor");
throw new ASCOM.PropertyNotImplementedException("HeatSinkTemperature not implemented on guiding sensor");
}
}

Expand All @@ -178,19 +178,19 @@ public override double SetCCDTemperature
get
{
debug.LogMessage("SetCCDTemperature", "Get - exception");
throw new ASCOM.MethodNotImplementedException("Cooler not implemented on guiding sensor");
throw new ASCOM.PropertyNotImplementedException("SetCCDTemperature not implemented on guiding sensor");
}
set
{
debug.LogMessage("SetCCDTemperature", "Set - exception");
throw new ASCOM.MethodNotImplementedException("Cooler not implemented on guiding sensor");
throw new ASCOM.PropertyNotImplementedException("SetCCDTemperature not implemented on guiding sensor");
}
}

protected override void GetTECStatus()
{
debug.LogMessage("SBIGCamera GetTECStatus", "Getting cooling information - exception");
throw new ASCOM.MethodNotImplementedException("Cooler not implemented on guiding sensor");
throw new ASCOM.MethodNotImplementedException("GetTECStatus not implemented on guiding sensor");
}

public override bool CanSetCCDTemperature
Expand Down
Binary file modified HomeMade SBIG Camera Setup.exe
Binary file not shown.

0 comments on commit eaea086

Please sign in to comment.