From d6917e14c5832a2482f8cdafc347cea083a5681d Mon Sep 17 00:00:00 2001 From: Howard Dutton Date: Wed, 12 Sep 2018 11:33:51 -0400 Subject: [PATCH] Updated comment --- AlignEq.ino | 3 +-- AlignHor.ino | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/AlignEq.ino b/AlignEq.ino index de56d8dbc..04fb21d2a 100644 --- a/AlignEq.ino +++ b/AlignEq.ino @@ -62,8 +62,7 @@ bool TGeoAlign::isReady() { // RA, Dec (all in degrees) bool TGeoAlign::addStar(int I, int N, double RA, double Dec) { - // First star: - // Near the celestial equator (Dec=0, HA=0), telescope West of the pier if multi-star align + // First star, just sync if (I==1) { // set the indexAxis1/2 offset if (syncEqu(RA,Dec)!=0) return true; diff --git a/AlignHor.ino b/AlignHor.ino index d4c6f4e19..8fbf5993b 100644 --- a/AlignHor.ino +++ b/AlignHor.ino @@ -64,8 +64,7 @@ bool TGeoAlignH::addStar(int I, int N, double RA, double Dec) { double a,z; equToHor(haRange(LST()*15.0-RA),Dec,&a,&z); - // First star: - // Near the celestial equator (Dec=0, HA=0), telescope West of the pier if multi-star align + // First star, just sync if (I==1) { // set the indexAxis1/2 offset if (syncEqu(RA,Dec)!=0) return true;