We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5491783 + 9f7ce6b commit a7fa930Copy full SHA for a7fa930
Software/Arduino code/OpenAstroTracker/c_buttons.ino
@@ -5,7 +5,7 @@ void loop() {
5
//speedcalibration += inputcal / 1000;
6
trackingspeed = ((((335.1417 / 288.0) * RevSteps) / 3590)) - 1 + float(speedcalibration);
7
8
- onehour = (float(RAsteps / 288)) * RevSteps;
+ onehour = (float(RAsteps) / 288) * RevSteps;
9
moveRA = (hourRA * onehour + minRA * (onehour / float(60)) + secRA * (onehour / float(3600))) / 2;
10
moveDEC = (degreeDEC * float(DECsteps) + minDEC * (float(DECsteps) / float(60)) + secDEC * (float(DECsteps) / float(3600)));
11
0 commit comments