Skip to content

Commit 067bc43

Browse files
V1.6.22 - Updates
- Bug prevented HA from being set correctly. - Documentation on SY command was incorrect.
1 parent b7a4aee commit 067bc43

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Software/Arduino code/OpenAstroTracker/OpenAstroTracker.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
=======================================================================================================================================
33
4-
Version 1.6.21
4+
Version 1.6.22
55
66
1. Connect your Arduino, under tools choose "Arduino Uno", set the right Port and set "Arduino ISP" as the Programmer.
77
2. Hit upload (Ctrl-U)
@@ -16,7 +16,7 @@
1616
*/
1717
#include "Globals.h"
1818

19-
String version = "V1.6.21";
19+
String version = "V1.6.22";
2020

2121
///////////////////////////////////////////////////////////////////////////
2222
// Please see the Globals.h file for configuration of the firmware.

Software/Arduino code/OpenAstroTracker/f_serial.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
// Where HH is hours, MM is minutes.
8282
// Returns: 1 if successfully set, otherwise 0
8383
//
84-
// :SysDD*MM:SS.HH:MM:SS#
84+
// :SYsDD*MM:SS.HH:MM:SS#
8585
// Synchronize Declination and Right Ascension.
8686
// This tells the scope what it is currently pointing at.
8787
// Where s is + or -, DD is degrees, HH is hours, MM is minutes, SS is seconds.
@@ -202,7 +202,7 @@ void handleMeadeGetInfo(String inCmd) {
202202
// SET INFO
203203
/////////////////////////////
204204
void handleMeadeSetInfo(String inCmd) {
205-
if (inCmd.length() < 8) {
205+
if (inCmd.length() < 6) {
206206
Serial.print("0");
207207
return;
208208
}

0 commit comments

Comments
 (0)