From 1c22682e069fb9c7f490bd4e49c960155da723a9 Mon Sep 17 00:00:00 2001 From: Lutz Date: Sat, 7 Sep 2024 08:59:14 -0700 Subject: [PATCH] V2.20 Updates - Added DEC Limits for OAM --- src/modules/Home.jsx | 2 +- src/modules/WizardStep.jsx | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/src/modules/Home.jsx b/src/modules/Home.jsx index 43a59b0..ef78f86 100644 --- a/src/modules/Home.jsx +++ b/src/modules/Home.jsx @@ -13,7 +13,7 @@ const Home = (props) => {

OAT/OAM FIRMWARE CONFIGURATION

START -

V2.19

+

V2.20

diff --git a/src/modules/WizardStep.jsx b/src/modules/WizardStep.jsx index 8cfa817..8b31636 100644 --- a/src/modules/WizardStep.jsx +++ b/src/modules/WizardStep.jsx @@ -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',