Skip to content

Commit b8d0b68

Browse files
committed
Update RightAscension and Dec properties to call GR and GD
1 parent 8ac58ea commit b8d0b68

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

Software/OpenAstroTracker ASCOM/OpenAstroTracker ASCOM/Driver.vb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ Public Class Telescope
506506
Public ReadOnly Property Declination() As Double Implements ITelescopeV3.Declination
507507
Get
508508
Dim declination__1 As Double = 0.0
509-
Dim scopeDec As String = CommandString(":Gd") ' TODO : Change this to :GD once implemented in firmware
509+
Dim scopeDec As String = CommandString(":GD") ' TODO : Change this to :GD once implemented in firmware
510510
TL.LogMessage("Declination", "Get - " & scopeDec)
511511
declination__1 = utilities.DMSToDegrees(scopeDec)
512512
Return declination__1
@@ -612,7 +612,7 @@ Public Class Telescope
612612
Public ReadOnly Property RightAscension() As Double Implements ITelescopeV3.RightAscension
613613
Get
614614
Dim rightAscension__1 As Double = 0.0
615-
Dim scopeRA As String = CommandString(":Gr") ' TODO : Change this to :GR once implemented in firmware
615+
Dim scopeRA As String = CommandString(":GR") ' TODO : Change this to :GR once implemented in firmware
616616
TL.LogMessage("RightAscension", "Get - " + scopeRA)
617617
rightAscension__1 = utilities.HMSToHours(scopeRA)
618618
Return rightAscension__1

0 commit comments

Comments
 (0)