We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Each time when focuser looses power (i.e. when powered on) we need to re-home it. This feels like an unnecessary step and is easily forgotten.
Just use "0" as start value and go to + or -.
This would work fine except that MaxIm DL sometimes freaks out on negative values of focuser position. E.g. cannot perform auto-focus.
Also, working with absolute values it more intuitive for the user.
Arduino has EEPROM memory, a natural place for storing this value.
There is a guarantee of 100k write cycles. If we write only end position of moves, this gives us a few decades of use:
100000 / 10 refocus_per_night / 20 nights_per_month / 12 months_per_year =~ 41 year
Implementation:
The text was updated successfully, but these errors were encountered:
frnhr
No branches or pull requests
Problem:
Each time when focuser looses power (i.e. when powered on) we need to re-home it. This feels like an unnecessary step and is easily forgotten.
Possibility 1: Use relative values
Just use "0" as start value and go to + or -.
This would work fine except that MaxIm DL sometimes freaks out on negative values of focuser position. E.g. cannot perform auto-focus.
Also, working with absolute values it more intuitive for the user.
Possibility 2: Save absolute values
Arduino has EEPROM memory, a natural place for storing this value.
There is a guarantee of 100k write cycles. If we write only end position of moves, this gives us a few decades of use:
Implementation:
The text was updated successfully, but these errors were encountered: