File tree Expand file tree Collapse file tree 6 files changed +22
-9
lines changed Expand file tree Collapse file tree 6 files changed +22
-9
lines changed Original file line number Diff line number Diff line change
1
+ ** V1.9.37 - Updates**
2
+ - Add HE1 to dew heater output for MKS boards
3
+
1
4
** V1.9.36 - Updates**
2
5
- Removed auto-homing code that was based on stall guard
3
6
- Converted Hall sensor based auto homing to be asynchronous (via state machine) instead of blocking
6
9
7
10
** V1.9.35 - Updates**
8
11
- Enable configuration of hold current setting for AZ and ALT steppers when always energized
9
- .
12
+
10
13
** V1.9.34 - Updates**
11
14
- Added two Meade commands: : XGDP # and : XSDPnnn # to retrieve and set the DEC parking offset.
12
15
- Fixed a bug that incorrectly returned a Homing status when the Hall sensor was enabled.
Original file line number Diff line number Diff line change 2
2
// So 1.8.99 is ok, but 1.8.234 is not. Neither is 1.123.22
3
3
// Also, numbers are interpreted as simple numbers. _ __ _
4
4
// So 1.8 is actually 1.08, meaning that 1.12 is a later version than 1.8. \_(..)_/
5
- #define VERSION "V1.9.36 "
5
+ #define VERSION "V1.9.37 "
Original file line number Diff line number Diff line change 181
181
#endif
182
182
183
183
//Pin to turn on dew heater MOSFET
184
- #ifndef DEW_HEATER_PIN
185
- #define DEW_HEATER_PIN 10
184
+ #ifndef DEW_HEATER_PIN1
185
+ #define DEW_HEATER_1_PIN 10
186
+ #endif
187
+ #ifndef DEW_HEATER_PIN2
188
+ #define DEW_HEATER_2_PIN 7
186
189
#endif
Original file line number Diff line number Diff line change 236
236
#endif
237
237
238
238
//Pin to turn on dew heater MOSFET
239
- #ifndef DEW_HEATER_PIN
240
- #define DEW_HEATER_PIN 10
239
+ #ifndef DEW_HEATER_PIN1
240
+ #define DEW_HEATER_1_PIN 10
241
+ #endif
242
+ #ifndef DEW_HEATER_PIN2
243
+ #define DEW_HEATER_2_PIN 7
241
244
#endif
Original file line number Diff line number Diff line change 244
244
#endif
245
245
246
246
//Pin to turn on dew heater MOSFET
247
- #ifndef DEW_HEATER_PIN
248
- #define DEW_HEATER_PIN 10
247
+ #ifndef DEW_HEATER_PIN1
248
+ #define DEW_HEATER_1_PIN 10
249
+ #endif
250
+ #ifndef DEW_HEATER_PIN2
251
+ #define DEW_HEATER_2_PIN 7
249
252
#endif
Original file line number Diff line number Diff line change @@ -106,7 +106,8 @@ void setup()
106
106
107
107
// Turn on dew heater
108
108
#if DEW_HEATER == 1
109
- digitalWrite (DEW_HEATER_PIN, HIGH);
109
+ digitalWrite (DEW_HEATER_1_PIN, HIGH);
110
+ digitalWrite (DEW_HEATER_2_PIN, HIGH);
110
111
#endif
111
112
112
113
// ///////////////////////////////
You can’t perform that action at this time.
0 commit comments