Skip to content

Commit 50b4d6e

Browse files
author
OpenAstroTech
authored
Merge pull request #25 from ClutchplateDude/oopthescope
Fix regional issue
2 parents 73405ba + 9dc2796 commit 50b4d6e

File tree

7 files changed

+18
-17
lines changed

7 files changed

+18
-17
lines changed

Software/Arduino code/OpenAstroTracker/c722_menuPOI.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ PointOfInterest pointOfInterest[] = {
1515
{ ">Polaris" , 2, 57, 56, 89, 21, 2 },
1616
{ ">Big Dipper" , 12, 16, 26, 56, 55, 7 },
1717
{ ">M31 Andromeda" , 0, 43, 52, 41, 22, 53 },
18+
{ ">M42 Orion Nbula", 5, 36, 18, -5, 22, 44 },
1819
{ ">M51 Whirlpool" , 13, 30, 45, 47, 05, 21 },
1920
{ ">M63 Sunflower" , 13, 16, 45, 41, 55, 14 },
2021
{ ">M81 Bodes Galxy", 9, 57, 13, 68, 58, 1 },
2122
{ ">M101 Pinwheel", 14, 3, 56, 54, 15, 0 },
22-
2323
// Add new items above here, not below.
2424
{ ">Home" , 0, 0, 0, 90, 0, 0 },
2525
{ ">Park" , 0, 0, 0, 90, 0, 0 },

Software/OpenAstroTracker ASCOM/OpenAstroTracker ASCOM/Driver.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Public Class Telescope
4040
'
4141
' Driver ID and descriptive string that shows in the Chooser
4242
'
43-
Private Version As String = "0.1.3.0 RC1"
43+
Private Version As String = "0.1.3.1 RC1"
4444
Friend Shared driverID As String = "ASCOM.OpenAstroTracker.Telescope"
4545
Private Shared driverDescription As String = "OpenAstroTracker Telescope"
4646

Binary file not shown.

Software/OpenAstroTracker ASCOM/OpenAstroTracker ASCOM/SetupDialogForm.Designer.vb

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Software/OpenAstroTracker ASCOM/OpenAstroTracker ASCOM/SetupDialogForm.resx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,4 @@
120120
<metadata name="ToolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
121121
<value>17, 17</value>
122122
</metadata>
123-
<metadata name="ToolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
124-
<value>17, 17</value>
125-
</metadata>
126123
</root>

Software/OpenAstroTracker ASCOM/OpenAstroTracker ASCOM/SetupDialogForm.vb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ Public Class SetupDialogForm
5555
End Sub
5656

5757
Private Sub txtLat_KeyPress(sender As Object, e As KeyPressEventArgs) Handles txtLat.KeyPress
58-
If Not Char.IsDigit(e.KeyChar) And Not Char.IsControl(e.KeyChar) And Not e.KeyChar = "." And Not e.KeyChar = "-" Then
58+
If Not Char.IsDigit(e.KeyChar) And Not Char.IsControl(e.KeyChar) And Not e.KeyChar = "." And Not e.KeyChar = "," And Not e.KeyChar = "-" Then
5959
e.Handled = True
6060
End If
6161
End Sub
6262

6363
Private Sub txtLong_KeyPress(sender As Object, e As KeyPressEventArgs) Handles txtLong.KeyPress
64-
If Not Char.IsDigit(e.KeyChar) And Not Char.IsControl(e.KeyChar) And Not e.KeyChar = "." And Not e.KeyChar = "-" Then
64+
If Not Char.IsDigit(e.KeyChar) And Not Char.IsControl(e.KeyChar) And Not e.KeyChar = "." And Not e.KeyChar = "," And Not e.KeyChar = "-" Then
6565
e.Handled = True
6666
End If
6767
End Sub
@@ -72,5 +72,5 @@ Public Class SetupDialogForm
7272
End If
7373
End Sub
7474

75-
75+
7676
End Class

Software/OpenAstroTracker ASCOM/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
OpenAstroTracker ASCOM driver 0.1.3.0 RC1 : 2020-04-15
1+
OpenAstroTracker ASCOM driver 0.1.3.1 RC1 : 2020-04-16
22

33
The first release candidate of the OAT ASCOM Driver. This is an early release candidate/beta, use at your own risk!
44

5+
* History
6+
* 0.1.3.0 2020-04-15 : Initial release
7+
* 0.1.3.1 2020-04-16 : BUGFIX : Allow , as decimal separator where Windows regional settings use it.
8+
59
* Arduino information
610
* Tested on Arduino Uno. No other variants of Arduino have been tested.
711
* Currently built for Version V1.6.25 of the Arduino Code (As of 2020-04-15)

0 commit comments

Comments
 (0)