Skip to content

Commit 6684384

Browse files
V1.7.22 - Updates
- Updated the Points of Interest with some new targets.
1 parent 5cc935e commit 6684384

File tree

2 files changed

+21
-9
lines changed

2 files changed

+21
-9
lines changed

Software/Arduino code/OpenAstroTracker/OpenAstroTracker.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#include "Globals.hpp"
2020

21-
String version = "V1.7.21";
21+
String version = "V1.7.22";
2222

2323
///////////////////////////////////////////////////////////////////////////
2424
// Please see the Globals.h file for configuration of the firmware.

Software/Arduino code/OpenAstroTracker/c722_menuPOI.hpp

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,29 @@ struct PointOfInterest {
1212
byte secDEC;
1313
};
1414

15+
// Points of interest are sorted by DEC
1516
PointOfInterest pointOfInterest[] = {
1617
// Name (15chars) RA (hms) DEC (dms)
1718
// 012345678901234
18-
{ ">Polaris" , PolarisRAHour, PolarisRAMinute, PolarisRASecond, 89, 21, 6 },
19-
{ ">Big Dipper" , 12, 16, 26, 56, 55, 7 },
20-
{ ">M31 Andromeda" , 0, 43, 52, 41, 22, 53 },
21-
{ ">M42 Orion Nbula", 5, 36, 18, -5, 22, 44 },
22-
{ ">M51 Whirlpool" , 13, 30, 45, 47, 05, 21 },
23-
{ ">M63 Sunflower" , 13, 16, 45, 41, 55, 14 },
24-
{ ">M81 Bodes Galxy", 9, 57, 13, 68, 58, 1 },
25-
{ ">M101 Pinwheel", 14, 3, 56, 54, 15, 0 },
19+
{ ">Polaris" , PolarisRAHour, PolarisRAMinute, PolarisRASecond, 89, 21, 6 },
20+
{ ">M81 Bodes Galxy" , 9, 57, 13, 68, 58, 1 },
21+
{ ">Cederblad 214" , 0, 5, 46, 67, 16, 45 },
22+
{ ">Heart Nebula" , 2, 34, 57, 61, 31, 17 },
23+
{ ">Navi" , 0, 57, 57, 60, 49, 33 },
24+
{ ">Soul Nebula" , 2, 52, 47, 60, 30, 56 },
25+
{ ">Elephant Trunk" ,21, 39, 44, 57, 35, 31 },
26+
{ ">Big Dipper" ,12, 16, 26, 56, 55, 7 },
27+
{ ">M101 Pinwheel" ,14, 3, 56, 54, 15, 0 },
28+
{ ">M51 Whirlpool" ,13, 30, 45, 47, 5, 21 },
29+
{ ">Deneb (Cygnus)" ,20, 42, 7, 45, 21, 12 },
30+
{ ">M63 Sunflower" ,13, 16, 45, 41, 55, 14 },
31+
{ ">M31 Andromeda" , 0, 43, 52, 41, 22, 53 },
32+
{ ">Vega" ,18, 37, 37, 38, 48, 7 },
33+
{ ">Arcturus" ,14, 16, 37, 19, 5, 21 },
34+
{ ">Altair" ,19, 51, 45, 8, 55, 15 },
35+
{ ">M42 Orion Nbula" , 5, 36, 18, -5, 22, 44 },
36+
{ ">Lagoon Nebula" ,18, 5, 2, -24, 22, 52 },
37+
2638
// Add new items above here, not below.
2739
{ ">Home" , 0, 0, 0, 90, 0, 0 },
2840
{ ">Unpark" , 0, 0, 0, 90, 0, 0 },

0 commit comments

Comments
 (0)