Skip to content

Commit 30d2270

Browse files
committed
I really have no idea where we are
1 parent 5d8ee08 commit 30d2270

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

Software/Arduino code/OpenAstroTracker/DayTime.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,14 @@ void DayTime::addHours(int deltaHours) {
9090
}
9191

9292
void DayTime::checkHours() {
93-
Serial.println("DtIn: "+String(hours));
93+
// Serial.println("DtIn: "+String(hours));
9494
while (hours >= hourWrap) {
9595
hours -= hourWrap;
9696
}
9797
while (hours < 0) {
9898
hours += hourWrap;
9999
}
100-
Serial.println("DtOut: "+String(hours));
100+
// Serial.println("DtOut: "+String(hours));
101101
}
102102

103103
// Add minutes, wrapping hours if needed
@@ -208,10 +208,10 @@ float DegreeTime::getTotalDegrees() {
208208

209209
void DegreeTime::checkHours() {
210210
if (NORTHERN_HEMISPHERE) {
211-
Serial.println("DgIn: "+String(hours));
211+
// Serial.println("DgIn: "+String(hours));
212212
if (hours > 0) hours = 0;
213213
if (hours < -180) hours = -180;
214-
Serial.println("DgOut: "+String(hours));
214+
// Serial.println("DgOut: "+String(hours));
215215
} else {
216216
if (hours > 180) hours = 180;
217217
if (hours < 0) hours = 0;

Software/Arduino code/OpenAstroTracker/OpenAstroTracker.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ int s = 25;
7070
// The same could be done for the DEC coordinates but they dont change significantly for the next 5 years
7171

7272
// Comment this out to save some code space
73-
#define DEBUG_MODE
73+
// #define DEBUG_MODE
7474

7575
// Uncomment this to support the heating menu
7676
// NOTE: Heating is currently not supported!

Software/Arduino code/OpenAstroTracker/b_setup.ino

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ void setup() {
1616
Serial.begin(57600);
1717
//BT.begin(9600);
1818

19-
Serial.println("Hello");
19+
// Serial.println("Hello");
2020

2121
// Show a splash screen
2222
lcdMenu.setCursor(0, 0);
@@ -42,10 +42,10 @@ void setup() {
4242
// Read persisted values adn set in mount
4343
inputcal = EEPROM.read(0);
4444
DayTime haTime = DayTime(EEPROM.read(1), EEPROM.read(2), 0);
45-
Serial.println("InputCal: " + String(inputcal));
45+
// Serial.println("InputCal: " + String(inputcal));
4646
mount.setSpeedCalibration(speed + inputcal / 10000);
47-
Serial.println("SpeedCal: " + String(mount.getSpeedCalibration(), 5));
48-
Serial.println("TRKSpeed: " + String(mount.getSpeed(TRACKING), 5));
47+
// Serial.println("SpeedCal: " + String(mount.getSpeedCalibration(), 5));
48+
// Serial.println("TRKSpeed: " + String(mount.getSpeed(TRACKING), 5));
4949
mount.setHA(haTime);
5050

5151
// Start the tracker.
@@ -67,5 +67,5 @@ void setup() {
6767
while (millis() - now < 750) {
6868
mount.loop();
6969
}
70-
Serial.println("SetupDone");
70+
// Serial.println("SetupDone");
7171
}

Software/OpenAstroTracker ASCOM/OAT PC Control/frmMain.Designer.vb

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)