Skip to content

Commit

Permalink
V1.1.2.0 Updates
Browse files Browse the repository at this point in the history
- Inverted the DEC parking offset for OAT
  • Loading branch information
ClutchplateDude committed May 12, 2024
1 parent 54d7a62 commit b4d4cc0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion OATControl/OATControl Setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "OATControl"
#define MyAppVersion "1.1.1.0"
#define MyAppVersion "1.1.2.0"
#define MyAppPublisher "OpenAstroTech"
#define MyAppURL "https://wiki.openastrotech.com/"
#define MyAppExeName "OATControl.exe"
Expand Down
4 changes: 2 additions & 2 deletions OATControl/ViewModels/MountVM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ public void OnGotoDECHomeFromPowerOn()
if (decOffset != 0)
{
//_oatMount.SendCommand($":MXd{AppSettings.Instance.DECHomeOffset}#,n", (a) => { });
_oatMount.SendCommand($":MXd{decOffset}#,n", (a) => { });
_oatMount.SendCommand($":MXd{-decOffset}#,n", (a) => { });
}
else
{
Expand All @@ -682,7 +682,7 @@ public void OnGotoDECParkBeforePowerOff()
else
{
// _oatMount.SendCommand($":MXd{-AppSettings.Instance.DECHomeOffset}#,n", (a) => { });
_oatMount.SendCommand($":MXd{-decOffset}#,n", (a) => { });
_oatMount.SendCommand($":MXd{decOffset}#,n", (a) => { });
}
}
}
Expand Down

0 comments on commit b4d4cc0

Please sign in to comment.