Skip to content

Commit

Permalink
V2.20 Updates
Browse files Browse the repository at this point in the history
- Added DEC Limits for OAM
  • Loading branch information
ClutchplateDude committed Sep 7, 2024
1 parent b283519 commit 1c22682
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const Home = (props) => {
<div className="intro-link-child">
<h3 className="intro-header">OAT/OAM FIRMWARE CONFIGURATION</h3>
<a className="intro-link" href="steps">START</a>
<p className="version">V2.19</p>
<p className="version">V2.20</p>
</div>
</div>

Expand Down
15 changes: 15 additions & 0 deletions src/modules/WizardStep.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -741,6 +741,21 @@ const WizardStep = (props) => {
]
},
},
{
id: 'DLO',
title: 'DEC Movement Limits',
label: 'These are required settings to determine how far DEC can move from the Home position without hitting any hardware limits (if you have endswitches, you can set this to 180):',
variable: 'declimits',
condition: "$tracker == OAM",
preamble: ['// Define DEC limits'],
define: '',
control: {
type: 'textinput',
choices: [
{ key: 'N', label: 'Degrees DEC can move from Home', defaultValue: '170', defineLine: '#define DEC_LIMIT_UP {0} // degrees from Home\n#define DEC_LIMIT_DOWN {0}' },
]
},
},
{
id: 'STL',
title: 'Stepper Stealth Mode',
Expand Down

0 comments on commit 1c22682

Please sign in to comment.