Skip to content

Commit e20b067

Browse files
V1.6.54a - Updates
- Fixed build break for Uno/Mega
1 parent 0a68601 commit e20b067

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Software/Arduino code/OpenAstroTracker/c722_menuPOI.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ bool processPOIKeys() {
4040
case btnSELECT: {
4141
mount.stopSlewing(ALL_DIRECTIONS);
4242
if (currentPOI == homePOI) {
43-
mount.goHome(true);
43+
mount.goHome();
4444
}
4545
else if (currentPOI == parkPOI) {
4646
mount.park();

Software/Arduino code/OpenAstroTracker/c725_menuHOME.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ bool processHomeKeys() {
1010
switch (key) {
1111
case btnSELECT: {
1212
if (subGoIndex == 0) {
13-
mount.goHome(true); // start tracking after home
13+
mount.goHome();
1414
}
1515
else {
1616
mount.park();

Software/OpenAstroTracker ASCOM/OATControl/MainWindow.xaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<converters:BoolToStringConverter x:Key="SlewModeConverter" TrueString="Pulsed" FalseString="Continuous" />
1212
<converters:BoolToVisibilityConverter x:Key="CoarseBoolToVisible" Collapse="False" />
1313
<converters:BoolToVisibilityConverter x:Key="CoarseBoolToHidden" Collapse="False" IsReversed="True"/>
14-
14+
1515
<Path x:Key="IconArrowUp" x:Shared="false" Data="M16,0L32,19.745 0,19.745z" Stretch="Uniform" RenderTransformOrigin="0.5,0.5" Fill="{DynamicResource AccentBaseColorBrush}" />
1616
<Path x:Key="IconArrowLeft" x:Shared="false" Data="M25.3,0L25.3,32 0,16z" Stretch="Uniform" RenderTransformOrigin="0.5,0.5" Fill="{DynamicResource AccentBaseColorBrush}" />
1717
<Path x:Key="IconArrowDown" x:Shared="false" Data="M0,0L32,0 16,19.745z" Stretch="Uniform" RenderTransformOrigin="0.5,0.5" Fill="{StaticResource AccentBaseColorBrush}"/>
@@ -175,8 +175,9 @@
175175
<TextBlock Grid.Row="7" Grid.Column="0" Text="Preset" Margin="0,20,0,0" Style="{StaticResource TextBlockHeading}" />
176176
<ComboBox Grid.Row="7" Grid.Column="1" Grid.ColumnSpan="7" Text="Preset" Margin="0,20,0,0" ItemsSource="{Binding AvailablePointsOfInterest}" DisplayMemberPath="Name" SelectedIndex="{Binding SelectedPointOfInterest}"/>
177177

178-
<Button Grid.Row="1" Grid.Column="7" Grid.RowSpan="6" Margin="8,0" Padding="30,20" Content="Slew!" Style="{StaticResource AccentedSquareButtonStyle}" Command="{Binding SlewToTargetCommand}">
179-
</Button>
178+
<Button Grid.Row="1" Grid.Column="7" Grid.RowSpan="5" Margin="8,0" Padding="30,20" Content="Slew!" Style="{StaticResource AccentedSquareButtonStyle}" Command="{Binding SlewToTargetCommand}" />
179+
<Button Grid.Row="6" Grid.Column="7" Grid.RowSpan="1" Margin="8,8,8,0" Padding="0,0" Content="Sync" Style="{StaticResource AccentedSquareButtonStyle}" Command="{Binding SyncToTargetCommand}" />
180+
180181

181182
<TextBlock Grid.Row="0" Grid.Column="8" Grid.ColumnSpan="7" Text="Current" Style="{StaticResource TextBlockTitle}" HorizontalAlignment="Center"/>
182183

0 commit comments

Comments
 (0)