You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added AZ configuration for OAM
- Added description to completed steps.
- Moved BYJ motor options to the end for RA and DEC
- Added ALT settings back for OAM
- Hardcoded default pin settings for OAM Hall sensors
- Added Homing pins for RA and DEC for all trackers
- Supressed I2C pins if no info display is selected
- Made some adjustments to OAE defaults
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,21 +1,21 @@
1
-
# OAT Configurator
1
+
# OpenAstroTech Mount Configurator
2
2
This is the source code for a small React-based app, using AntDesign that asks the user a bunch of questions about what components
3
-
they used to build their tracker and then spits out the defines that need to be placed in configuration_local.hpp.
3
+
they used to build their mount and then spits out the defines that need to be placed in configuration_local.hpp.
4
4
5
5
It can be used live at https://config.openastrotech.com
6
6
7
7
# Status
8
-
Captures the great majority of use cases for the OAT. Please file Issues if you would like to see more variables supported, or if you are
9
-
able, please create and submit a PR with an extra step in the code. It's pretty easy to add a new stpe to the Wizard, just look at the
10
-
stepProps array in WizardSteps.jsx and add a new array item there.
8
+
Captures the great majority of use cases for the OAT, OAE and OAM. Please file Issues if you would like to see more variables supported, or if you are
9
+
able, please create and submit a PR with an extra step in the code. It's pretty easy to add a new step to the Wizard, just look at the
10
+
stepProps array in one of the oxxSteps.js files and add a new array item there.
11
11
12
12
# Roadmap
13
13
- Bluetooth - not currently queried.
14
14
- Dark mode support.
15
15
16
16
# Using Source code
17
17
18
-
If you want to constribute to stig project, you'll need to get the source code. If you want to just use it, simply go to https://config.openastrotech.com
18
+
If you want to constribute to this project, you'll need to get the source code. If you want to just use it, simply go to https://config.openastrotech.com
label: 'It is possible to keep the azimuth motor energized at all times to prevent any shifting in position. This is not necessarily needed for 28BYJ motors, however it is recommended for NEMAs when using AutoPA V2.0.',
226
+
label: 'It is possible to keep the azimuth motor energized at all times to prevent any shifting in position. It is recommended for NEMAs when using AutoPA V2.0.',
label: 'These are some advanced settings you may want to override. The defaults are set already. Please only change them if you are sure what they do and what their valid ranges are. Enter the ALT stepper specs and desired settings:',
275
+
variable: 'altpower',
276
+
condition: "($altdrv == TU)",
277
+
preamble: ['// Define ALT stepper motor power settings'],
{key: 'H',label: 'Hold current percentage (0 to power down)',defaultValue: '{Defaults.HoldPercentage.alt}',defineLine: '#define ALT_MOTOR_HOLD_SETTING {0} // %'},
286
+
]
287
+
},
288
+
postamble: [{
289
+
literal: [
290
+
'#define ALT_STEPPER_SPEED 1500',
291
+
'#define ALT_STEPPER_ACCELERATION 500',
292
+
'',
293
+
'// Is it going the wrong way?',
294
+
'#define ALT_INVERT_DIR 0'
295
+
]
296
+
}]
297
+
},
298
+
{
299
+
id: 'LAO',
300
+
title: 'Altitude Always On',
301
+
label: 'It is possible to keep the altitude motor energized at all times to prevent any shifting in position. This is usually not needed.',
0 commit comments