Skip to content

Commit 1c22682

Browse files
V2.20 Updates
- Added DEC Limits for OAM
1 parent b283519 commit 1c22682

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

src/modules/Home.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const Home = (props) => {
1313
<div className="intro-link-child">
1414
<h3 className="intro-header">OAT/OAM FIRMWARE CONFIGURATION</h3>
1515
<a className="intro-link" href="steps">START</a>
16-
<p className="version">V2.19</p>
16+
<p className="version">V2.20</p>
1717
</div>
1818
</div>
1919

src/modules/WizardStep.jsx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,21 @@ const WizardStep = (props) => {
741741
]
742742
},
743743
},
744+
{
745+
id: 'DLO',
746+
title: 'DEC Movement Limits',
747+
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):',
748+
variable: 'declimits',
749+
condition: "$tracker == OAM",
750+
preamble: ['// Define DEC limits'],
751+
define: '',
752+
control: {
753+
type: 'textinput',
754+
choices: [
755+
{ 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}' },
756+
]
757+
},
758+
},
744759
{
745760
id: 'STL',
746761
title: 'Stepper Stealth Mode',

0 commit comments

Comments
 (0)