Advertisement
Guest User

Untitled

a guest
Nov 7th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 36.73 KB | None | 0 0
  1. /*
  2. This file is part of Repetier-Firmware.
  3.  
  4. Repetier-Firmware is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8.  
  9. Repetier-Firmware is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13.  
  14. You should have received a copy of the GNU General Public License
  15. along with Repetier-Firmware. If not, see <http://www.gnu.org/licenses/>.
  16.  
  17. */
  18.  
  19. #ifndef CONFIGURATION_H
  20. #define CONFIGURATION_H
  21.  
  22. /**************** READ FIRST ************************
  23.  
  24. This configuration file was created with the configuration tool. For that
  25. reason, it does not contain the same informations as the original Configuration.h file.
  26. It misses the comments and unused parts. Open this file file in the config tool
  27. to see and change the data. You can also upload it to newer/older versions. The system
  28. will silently add new options, so compilation continues to work.
  29.  
  30. This file is optimized for version 1.0.0dev
  31. generator: http://www.repetier.com/firmware/dev/
  32.  
  33. If you are in doubt which named functions use which pins on your board, please check the
  34. pins.h for the used name->pin assignments and your board documentation to verify it is
  35. as you expect.
  36.  
  37. */
  38.  
  39. #define NUM_EXTRUDER 1
  40. #define MOTHERBOARD 33
  41. #include "pins.h"
  42.  
  43. // ################## EDIT THESE SETTINGS MANUALLY ################
  44. // ################ END MANUAL SETTINGS ##########################
  45.  
  46. #undef FAN_BOARD_PIN
  47. #define FAN_BOARD_PIN 4
  48. #define BOARD_FAN_SPEED 255
  49. #define BOARD_FAN_MIN_SPEED 0
  50. #define FAN_THERMO_PIN -1
  51. #define FAN_THERMO_MIN_PWM 128
  52. #define FAN_THERMO_MAX_PWM 255
  53. #define FAN_THERMO_MIN_TEMP 45
  54. #define FAN_THERMO_MAX_TEMP 60
  55. #define FAN_THERMO_THERMISTOR_PIN -1
  56. #define FAN_THERMO_THERMISTOR_TYPE 1
  57.  
  58. //#define EXTERNALSERIAL use Arduino serial library instead of build in. Requires more ram, has only 63 byte input buffer.
  59. // Uncomment the following line if you are using Arduino compatible firmware made for Arduino version earlier then 1.0
  60. // If it is incompatible you will get compiler errors about write functions not being compatible!
  61. //#define COMPAT_PRE1
  62. #define BLUETOOTH_SERIAL -1
  63. #define BLUETOOTH_BAUD 115200
  64. #define MIXING_EXTRUDER 0
  65.  
  66. #define DRIVE_SYSTEM 0
  67. #define XAXIS_STEPS_PER_MM 160
  68. #define YAXIS_STEPS_PER_MM 160
  69. #define ZAXIS_STEPS_PER_MM 748.8008
  70. #define EXTRUDER_FAN_COOL_TEMP 50
  71. #define PDM_FOR_EXTRUDER 0
  72. #define PDM_FOR_COOLER 0
  73. #define DECOUPLING_TEST_MAX_HOLD_VARIANCE 20
  74. #define DECOUPLING_TEST_MIN_TEMP_RISE 1
  75. #define KILL_IF_SENSOR_DEFECT 0
  76. #define RETRACT_ON_PAUSE 2
  77. #define PAUSE_START_COMMANDS ""
  78. #define PAUSE_END_COMMANDS ""
  79. #define SHARED_EXTRUDER_HEATER 0
  80. #define EXT0_X_OFFSET 0
  81. #define EXT0_Y_OFFSET 0
  82. #define EXT0_Z_OFFSET 0
  83. #define EXT0_STEPS_PER_MM 1092.63158
  84. #define EXT0_TEMPSENSOR_TYPE 8
  85. #define EXT0_TEMPSENSOR_PIN TEMP_0_PIN
  86. #define EXT0_HEATER_PIN HEATER_0_PIN
  87. #define EXT0_STEP_PIN ORIG_E0_STEP_PIN
  88. #define EXT0_DIR_PIN ORIG_E0_DIR_PIN
  89. #define EXT0_INVERSE 0
  90. #define EXT0_ENABLE_PIN ORIG_E0_ENABLE_PIN
  91. #define EXT0_ENABLE_ON 0
  92. #define EXT0_MIRROR_STEPPER 0
  93. #define EXT0_STEP2_PIN ORIG_E0_STEP_PIN
  94. #define EXT0_DIR2_PIN ORIG_E0_DIR_PIN
  95. #define EXT0_INVERSE2 0
  96. #define EXT0_ENABLE2_PIN ORIG_E0_ENABLE_PIN
  97. #define EXT0_MAX_FEEDRATE 120
  98. #define EXT0_MAX_START_FEEDRATE 20
  99. #define EXT0_MAX_ACCELERATION 1500
  100. #define EXT0_HEAT_MANAGER 1
  101. #define EXT0_PREHEAT_TEMP 190
  102. #define EXT0_WATCHPERIOD 1
  103. #define EXT0_PID_INTEGRAL_DRIVE_MAX 230
  104. #define EXT0_PID_INTEGRAL_DRIVE_MIN 40
  105. #define EXT0_PID_PGAIN_OR_DEAD_TIME 10.23
  106. #define EXT0_PID_I 0.71
  107. #define EXT0_PID_D 36.66
  108. #define EXT0_PID_MAX 255
  109. #define EXT0_ADVANCE_K 0
  110. #define EXT0_ADVANCE_L 0
  111. #define EXT0_ADVANCE_BACKLASH_STEPS 0
  112. #define EXT0_WAIT_RETRACT_TEMP 150
  113. #define EXT0_WAIT_RETRACT_UNITS 0
  114. #define EXT0_SELECT_COMMANDS ""
  115. #define EXT0_DESELECT_COMMANDS ""
  116. #define EXT0_EXTRUDER_COOLER_PIN 6
  117. #define EXT0_EXTRUDER_COOLER_SPEED 255
  118. #define EXT0_DECOUPLE_TEST_PERIOD 12000
  119. #define EXT0_JAM_PIN -1
  120. #define EXT0_JAM_PULLUP 0
  121.  
  122. #define FEATURE_RETRACTION 1
  123. #define AUTORETRACT_ENABLED 0
  124. #define RETRACTION_LENGTH 3
  125. #define RETRACTION_LONG_LENGTH 13
  126. #define RETRACTION_SPEED 40
  127. #define RETRACTION_Z_LIFT 0
  128. #define RETRACTION_UNDO_EXTRA_LENGTH 0
  129. #define RETRACTION_UNDO_EXTRA_LONG_LENGTH 0
  130. #define RETRACTION_UNDO_SPEED 20
  131. #define FILAMENTCHANGE_X_POS 0
  132. #define FILAMENTCHANGE_Y_POS 0
  133. #define FILAMENTCHANGE_Z_ADD 2
  134. #define FILAMENTCHANGE_REHOME 1
  135. #define FILAMENTCHANGE_SHORTRETRACT 5
  136. #define FILAMENTCHANGE_LONGRETRACT 50
  137. #define JAM_METHOD 1
  138. #define JAM_STEPS 220
  139. #define JAM_SLOWDOWN_STEPS 320
  140. #define JAM_SLOWDOWN_TO 70
  141. #define JAM_ERROR_STEPS 500
  142. #define JAM_MIN_STEPS 10
  143. #define JAM_ACTION 1
  144.  
  145. #define RETRACT_DURING_HEATUP true
  146. #define PID_CONTROL_RANGE 20
  147. #define SKIP_M109_IF_WITHIN 2
  148. #define SCALE_PID_TO_MAX 0
  149. #define TEMP_HYSTERESIS 0
  150. #define EXTRUDE_MAXLENGTH 160
  151. #define NUM_TEMPS_USERTHERMISTOR0 0
  152. #define USER_THERMISTORTABLE0 {}
  153. #define NUM_TEMPS_USERTHERMISTOR1 0
  154. #define USER_THERMISTORTABLE1 {}
  155. #define NUM_TEMPS_USERTHERMISTOR2 0
  156. #define USER_THERMISTORTABLE2 {}
  157. #define GENERIC_THERM_VREF 5
  158. #define GENERIC_THERM_NUM_ENTRIES 33
  159. #define HEATER_PWM_SPEED 0
  160. #define COOLER_PWM_SPEED 0
  161.  
  162. // ############# Heated bed configuration ########################
  163.  
  164. #define HAVE_HEATED_BED 1
  165. #define HEATED_BED_PREHEAT_TEMP 55
  166. #define HEATED_BED_MAX_TEMP 150
  167. #define SKIP_M190_IF_WITHIN 3
  168. #define HEATED_BED_SENSOR_TYPE 1
  169. #define HEATED_BED_SENSOR_PIN TEMP_1_PIN
  170. #define HEATED_BED_HEATER_PIN HEATER_1_PIN
  171. #define HEATED_BED_SET_INTERVAL 5000
  172. #define HEATED_BED_HEAT_MANAGER 1
  173. #define HEATED_BED_PID_INTEGRAL_DRIVE_MAX 255
  174. #define HEATED_BED_PID_INTEGRAL_DRIVE_MIN 80
  175. #define HEATED_BED_PID_PGAIN_OR_DEAD_TIME 82.41
  176. #define HEATED_BED_PID_IGAIN 36.59
  177. #define HEATED_BED_PID_DGAIN 46.41
  178. #define HEATED_BED_PID_MAX 255
  179. #define HEATED_BED_DECOUPLE_TEST_PERIOD 300000
  180. #define MIN_EXTRUDER_TEMP 150
  181. #define MAXTEMP 250
  182. #define MIN_DEFECT_TEMPERATURE -10
  183. #define MAX_DEFECT_TEMPERATURE 290
  184. #define MILLISECONDS_PREHEAT_TIME 30000
  185.  
  186. // ##########################################################################################
  187. // ## Laser configuration ##
  188. // ##########################################################################################
  189.  
  190. /*
  191. If the firmware is in laser mode, it can control a laser output to cut or engrave materials.
  192. Please use this feature only if you know about safety and required protection. Lasers are
  193. dangerous and can hurt or make you blind!!!
  194.  
  195. The default laser driver only supports laser on and off. Here you control the intensity with
  196. your feedrate. For exchangeable diode lasers this is normally enough. If you need more control
  197. you can set the intensity in a range 0-255 with a custom extension to the driver. See driver.h
  198. and comments on how to extend the functions non invasive with our event system.
  199.  
  200. If you have a laser - powder system you will like your E override. If moves contain a
  201. increasing extruder position it will laser that move. With this trick you can
  202. use existing fdm slicers to laser the output. Laser width is extrusion width.
  203.  
  204. Other tools may use M3 and M5 to enable/disable laser. Here G1/G2/G3 moves have laser enabled
  205. and G0 moves have it disables.
  206.  
  207. In any case, laser only enables while moving. At the end of a move it gets
  208. automatically disabled.
  209. */
  210.  
  211. #define SUPPORT_LASER 0
  212. #define LASER_PIN -1
  213. #define LASER_ON_HIGH 1
  214. #define LASER_WARMUP_TIME 0
  215. #define LASER_PWM_MAX 255
  216. #define LASER_WATT 2
  217.  
  218. // ## CNC configuration ##
  219.  
  220. /*
  221. If the firmware is in CNC mode, it can control a mill with M3/M4/M5. It works
  222. similar to laser mode, but mill keeps enabled during G0 moves and it allows
  223. setting rpm (only with event extension that supports this) and milling direction.
  224. It also can add a delay to wait for spindle to run on full speed.
  225. */
  226.  
  227. #define SUPPORT_CNC 0
  228. #define CNC_WAIT_ON_ENABLE 300
  229. #define CNC_WAIT_ON_DISABLE 0
  230. #define CNC_ENABLE_PIN -1
  231. #define CNC_ENABLE_WITH 1
  232. #define CNC_DIRECTION_PIN -1
  233. #define CNC_DIRECTION_CW 1
  234. #define CNC_PWM_MAX 255
  235. #define CNC_RPM_MAX 8000
  236. #define CNC_SAFE_Z 150
  237.  
  238. #define DEFAULT_PRINTER_MODE 0
  239.  
  240. // ################ Endstop configuration #####################
  241.  
  242. #define MULTI_ZENDSTOP_HOMING 0
  243. #define ENDSTOP_PULLUP_X_MIN true
  244. #define ENDSTOP_X_MIN_INVERTING true
  245. #define MIN_HARDWARE_ENDSTOP_X true
  246. #define ENDSTOP_PULLUP_Y_MIN true
  247. #define ENDSTOP_Y_MIN_INVERTING true
  248. #define MIN_HARDWARE_ENDSTOP_Y true
  249. #define ENDSTOP_PULLUP_Z_MIN true
  250. #define ENDSTOP_Z_MIN_INVERTING false
  251. #define MIN_HARDWARE_ENDSTOP_Z true
  252. #define ENDSTOP_PULLUP_Z2_MINMAX true
  253. #define ENDSTOP_Z2_MINMAX_INVERTING false
  254. #define MINMAX_HARDWARE_ENDSTOP_Z2 false
  255. #define ENDSTOP_PULLUP_X_MAX true
  256. #define ENDSTOP_X_MAX_INVERTING false
  257. #define MAX_HARDWARE_ENDSTOP_X false
  258. #define ENDSTOP_PULLUP_Y_MAX true
  259. #define ENDSTOP_Y_MAX_INVERTING false
  260. #define MAX_HARDWARE_ENDSTOP_Y false
  261. #define ENDSTOP_PULLUP_Z_MAX true
  262. #define ENDSTOP_Z_MAX_INVERTING true
  263. #define MAX_HARDWARE_ENDSTOP_Z true
  264. #define ENDSTOP_PULLUP_X2_MIN true
  265. #define ENDSTOP_PULLUP_Y2_MIN true
  266. #define ENDSTOP_PULLUP_Z2_MINMAX true
  267. #define ENDSTOP_PULLUP_X2_MAX true
  268. #define ENDSTOP_PULLUP_Y2_MAX true
  269. #define ENDSTOP_X2_MIN_INVERTING false
  270. #define ENDSTOP_Y2_MIN_INVERTING false
  271. #define ENDSTOP_X2_MAX_INVERTING false
  272. #define ENDSTOP_Y2_MAX_INVERTING false
  273. #define MIN_HARDWARE_ENDSTOP_X2 false
  274. #define MIN_HARDWARE_ENDSTOP_Y2 false
  275. #define MAX_HARDWARE_ENDSTOP_X2 false
  276. #define MAX_HARDWARE_ENDSTOP_Y2 false
  277. #define MINMAX_HARDWARE_ENDSTOP_Z2 false
  278. #define X2_MIN_PIN -1
  279. #define X2_MAX_PIN -1
  280. #define Y2_MIN_PIN -1
  281. #define Y2_MAX_PIN -1
  282. #define Z2_MINMAX_PIN -1
  283.  
  284.  
  285.  
  286. #define max_software_endstop_r true
  287.  
  288. #define min_software_endstop_x false
  289. #define min_software_endstop_y false
  290. #define min_software_endstop_z false
  291. #define max_software_endstop_x true
  292. #define max_software_endstop_y true
  293. #define max_software_endstop_z false
  294. #define DOOR_PIN -1
  295. #define DOOR_PULLUP 1
  296. #define DOOR_INVERTING 1
  297. #define ENDSTOP_X_BACK_MOVE 5
  298. #define ENDSTOP_Y_BACK_MOVE 5
  299. #define ENDSTOP_Z_BACK_MOVE 2
  300. #define ENDSTOP_X_RETEST_REDUCTION_FACTOR 3
  301. #define ENDSTOP_Y_RETEST_REDUCTION_FACTOR 3
  302. #define ENDSTOP_Z_RETEST_REDUCTION_FACTOR 3
  303. #define ENDSTOP_X_BACK_ON_HOME 0
  304. #define ENDSTOP_Y_BACK_ON_HOME 0
  305. #define ENDSTOP_Z_BACK_ON_HOME 0
  306. #define ALWAYS_CHECK_ENDSTOPS 0
  307. #define MOVE_X_WHEN_HOMED 0
  308. #define MOVE_Y_WHEN_HOMED 0
  309. #define MOVE_Z_WHEN_HOMED 0
  310.  
  311. // ################# XYZ movements ###################
  312.  
  313. #define X_ENABLE_ON 0
  314. #define Y_ENABLE_ON 0
  315. #define Z_ENABLE_ON 0
  316. #define DISABLE_X 0
  317. #define DISABLE_Y 0
  318. #define DISABLE_Z 0
  319. #define DISABLE_E 0
  320. #define INVERT_X_DIR 1
  321. #define INVERT_X2_DIR 0
  322. #define INVERT_Y_DIR 0
  323. #define INVERT_Y2_DIR 0
  324. #define INVERT_Z_DIR 1
  325. #define INVERT_Z2_DIR 0
  326. #define INVERT_Z3_DIR 0
  327. #define INVERT_Z4_DIR 0
  328. #define X_HOME_DIR -1
  329. #define Y_HOME_DIR -1
  330. #define Z_HOME_DIR 1
  331. #define X_MAX_LENGTH 254
  332. #define Y_MAX_LENGTH 262.5
  333. #define Z_MAX_LENGTH 217.28
  334. #define X_MIN_POS -4
  335. #define Y_MIN_POS -23.5
  336. #define Z_MIN_POS 0
  337.  
  338.  
  339. #define DISTORTION_CORRECTION 1
  340. #define DISTORTION_CORRECTION_POINTS 22
  341. #define DISTORTION_LIMIT_TO 2
  342. #define DISTORTION_CORRECTION_R 100
  343. #define DISTORTION_PERMANENT 1
  344. #define DISTORTION_UPDATE_FREQUENCY 15
  345. #define DISTORTION_START_DEGRADE 0.1
  346. #define DISTORTION_END_HEIGHT 2
  347. #define DISTORTION_EXTRAPOLATE_CORNERS 0
  348. #define DISTORTION_XMIN 28
  349. #define DISTORTION_YMIN 33
  350. #define DISTORTION_XMAX 221
  351. #define DISTORTION_YMAX 177
  352.  
  353. // ##########################################################################################
  354. // ## Movement settings ##
  355. // ##########################################################################################
  356.  
  357. #define FEATURE_BABYSTEPPING 0
  358. #define BABYSTEP_MULTIPLICATOR 1
  359.  
  360. #define DELTA_SEGMENTS_PER_SECOND_PRINT 180 // Move accurate setting for print moves
  361. #define DELTA_SEGMENTS_PER_SECOND_MOVE 70 // Less accurate setting for other moves
  362. #define EXACT_DELTA_MOVES 1
  363.  
  364. // Delta settings
  365. #define DELTA_HOME_ON_POWER 0
  366.  
  367. #define DELTASEGMENTS_PER_PRINTLINE 24
  368. #define STEPPER_INACTIVE_TIME 360L
  369. #define MAX_INACTIVE_TIME 0L
  370. #define MAX_FEEDRATE_X 500
  371. #define MAX_FEEDRATE_Y 500
  372. #define MAX_FEEDRATE_Z 13
  373. #define HOMING_FEEDRATE_X 50
  374. #define HOMING_FEEDRATE_Y 50
  375. #define HOMING_FEEDRATE_Z 13
  376. #define HOMING_ORDER HOME_ORDER_ZXY
  377. #define ZHOME_PRE_RAISE 0
  378. #define ZHOME_PRE_RAISE_DISTANCE 10
  379. #define RAISE_Z_ON_TOOLCHANGE 0
  380. #define ZHOME_MIN_TEMPERATURE 0
  381. #define ZHOME_HEAT_ALL 1
  382. #define ZHOME_HEAT_HEIGHT 20
  383. #define ZHOME_X_POS 999999
  384. #define ZHOME_Y_POS 999999
  385. #define ENABLE_BACKLASH_COMPENSATION 0
  386. #define X_BACKLASH 0
  387. #define Y_BACKLASH 0
  388. #define Z_BACKLASH 0
  389. #define RAMP_ACCELERATION 1
  390. #define STEPPER_HIGH_DELAY 0
  391. #define DIRECTION_DELAY 0
  392. #define STEP_DOUBLER_FREQUENCY 12000
  393. #define ALLOW_QUADSTEPPING 1
  394. #define DOUBLE_STEP_DELAY 0 // time in microseconds
  395. #define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_X 500
  396. #define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_Y 500
  397. #define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_Z 500
  398. #define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_X 500
  399. #define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_Y 500
  400. #define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_Z 500
  401. #define INTERPOLATE_ACCELERATION_WITH_Z 0
  402. #define ACCELERATION_FACTOR_TOP 100
  403. #define MAX_JERK 10
  404. #define MAX_ZJERK 0.2
  405. #define PRINTLINE_CACHE_SIZE 16
  406. #define MOVE_CACHE_LOW 10
  407. #define LOW_TICKS_PER_MOVE 250000
  408. #define EXTRUDER_SWITCH_XY_SPEED 100
  409. #define DUAL_X_AXIS 0
  410. #define DUAL_X_RESOLUTION 0
  411. #define X2AXIS_STEPS_PER_MM 100
  412. #define FEATURE_TWO_XSTEPPER 0
  413. #define X2_STEP_PIN ORIG_E1_STEP_PIN
  414. #define X2_DIR_PIN ORIG_E1_DIR_PIN
  415. #define X2_ENABLE_PIN ORIG_E1_ENABLE_PIN
  416. #define FEATURE_TWO_YSTEPPER 0
  417. #define Y2_STEP_PIN ORIG_E1_STEP_PIN
  418. #define Y2_DIR_PIN ORIG_E1_DIR_PIN
  419. #define Y2_ENABLE_PIN ORIG_E1_ENABLE_PIN
  420. #define FEATURE_TWO_ZSTEPPER 0
  421. #define Z2_STEP_PIN ORIG_E3_STEP_PIN
  422. #define Z2_DIR_PIN ORIG_E3_DIR_PIN
  423. #define Z2_ENABLE_PIN ORIG_E3_ENABLE_PIN
  424. #define FEATURE_THREE_ZSTEPPER 0
  425. #define Z3_STEP_PIN ORIG_E2_STEP_PIN
  426. #define Z3_DIR_PIN ORIG_E2_DIR_PIN
  427. #define Z3_ENABLE_PIN ORIG_E2_ENABLE_PIN
  428. #define FEATURE_FOUR_ZSTEPPER 0
  429. #define Z4_STEP_PIN ORIG_E3_STEP_PIN
  430. #define Z4_DIR_PIN ORIG_E3_DIR_PIN
  431. #define Z4_ENABLE_PIN ORIG_E3_ENABLE_PIN
  432. #define FEATURE_DITTO_PRINTING 0
  433. #define USE_ADVANCE 0
  434. #define ENABLE_QUADRATIC_ADVANCE 0
  435.  
  436.  
  437. // ################# Misc. settings ##################
  438.  
  439. #define BAUDRATE 115200
  440. #define ENABLE_POWER_ON_STARTUP 0
  441. #define POWER_INVERTING 0
  442. #define AUTOMATIC_POWERUP 1
  443. #define KILL_METHOD 1
  444. #define ACK_WITH_LINENUMBER 1
  445. #define KEEP_ALIVE_INTERVAL 2000
  446. #define WAITING_IDENTIFIER "wait"
  447. #define ECHO_ON_EXECUTE 1
  448. #define EEPROM_MODE 1
  449. #undef PS_ON_PIN
  450. #define PS_ON_PIN 12
  451. #define JSON_OUTPUT 0
  452.  
  453. /* ======== Servos =======
  454. Control the servos with
  455. M340 P<servoId> S<pulseInUS> / ServoID = 0..3 pulseInUs = 500..2500
  456. Servos are controlled by a pulse width normally between 500 and 2500 with 1500ms in center position. 0 turns servo off.
  457. WARNING: Servos can draw a considerable amount of current. Make sure your system can handle this or you may risk your hardware!
  458. */
  459. #define FEATURE_SERVO 0
  460. #define SERVO0_PIN 11
  461. #define SERVO1_PIN -1
  462. #define SERVO2_PIN -1
  463. #define SERVO3_PIN -1
  464. #define SERVO0_NEUTRAL_POS -1
  465. #define SERVO1_NEUTRAL_POS -1
  466. #define SERVO2_NEUTRAL_POS -1
  467. #define SERVO3_NEUTRAL_POS -1
  468. #define UI_SERVO_CONTROL 0
  469. #define FAN_KICKSTART_TIME 200
  470. #define MAX_FAN_PWM 255
  471.  
  472. #define FEATURE_WATCHDOG 1
  473.  
  474. // #################### Z-Probing #####################
  475.  
  476. #define Z_PROBE_Z_OFFSET 0
  477. #define Z_PROBE_Z_OFFSET_MODE 0
  478. #define UI_BED_COATING 0
  479. #define FEATURE_Z_PROBE 1
  480. #define EXTRUDER_IS_Z_PROBE 0
  481. #define Z_PROBE_DISABLE_HEATERS 0
  482. #define Z_PROBE_BED_DISTANCE 10
  483. #define Z_PROBE_PIN ORIG_Z_MIN_PIN
  484. #define Z_PROBE_PULLUP 0
  485. #define Z_PROBE_ON_HIGH 0
  486. #define Z_PROBE_X_OFFSET 5
  487. #define Z_PROBE_Y_OFFSET 28
  488. #define Z_PROBE_WAIT_BEFORE_TEST 0
  489. #define Z_PROBE_SPEED 12
  490. #define Z_PROBE_XY_SPEED 500
  491. #define Z_PROBE_SWITCHING_DISTANCE 2
  492. #define Z_PROBE_REPETITIONS 1
  493. #define Z_PROBE_HEIGHT 1.5
  494. #define Z_PROBE_DELAY 0
  495. #define Z_PROBE_START_SCRIPT ""
  496. #define Z_PROBE_FINISHED_SCRIPT ""
  497. #define Z_PROBE_RUN_AFTER_EVERY_PROBE ""
  498. #define Z_PROBE_REQUIRES_HEATING 0
  499. #define Z_PROBE_MIN_TEMPERATURE 150
  500. #define FEATURE_AUTOLEVEL 0
  501. #define FEATURE_SOFTWARE_LEVELING 0
  502. #define Z_PROBE_X1 28
  503. #define Z_PROBE_Y1 33
  504. #define Z_PROBE_X2 221
  505. #define Z_PROBE_Y2 33
  506. #define Z_PROBE_X3 28
  507. #define Z_PROBE_Y3 177
  508. #define BED_LEVELING_METHOD 1
  509. #define BED_CORRECTION_METHOD 0
  510. #define BED_LEVELING_GRID_SIZE 22
  511. #define BED_LEVELING_REPETITIONS 5
  512. #define BED_MOTOR_1_X 0
  513. #define BED_MOTOR_1_Y 0
  514. #define BED_MOTOR_2_X 200
  515. #define BED_MOTOR_2_Y 0
  516. #define BED_MOTOR_3_X 100
  517. #define BED_MOTOR_3_Y 200
  518. #define BENDING_CORRECTION_A 0
  519. #define BENDING_CORRECTION_B 0
  520. #define BENDING_CORRECTION_C 0
  521. #define FEATURE_AXISCOMP 0
  522. #define AXISCOMP_TANXY 0
  523. #define AXISCOMP_TANYZ 0
  524. #define AXISCOMP_TANXZ 0
  525.  
  526. #ifndef SDSUPPORT // Some boards have sd support on board. These define the values already in pins.h
  527. #define SDSUPPORT 1
  528. #undef SDCARDDETECT
  529. #define SDCARDDETECT 49
  530. #define SDCARDDETECTINVERTED 0
  531. #endif
  532. #define SD_EXTENDED_DIR 1 /** Show extended directory including file length. Don't use this with Pronterface! */
  533. #define SD_RUN_ON_STOP ""
  534. #define SD_STOP_HEATER_AND_MOTORS_ON_STOP 1
  535. #define ARC_SUPPORT 1
  536. #define FEATURE_MEMORY_POSITION 1
  537. #define FEATURE_CHECKSUM_FORCED 0
  538. #define FEATURE_FAN_CONTROL 1
  539. #define FEATURE_FAN2_CONTROL 0
  540. #define FEATURE_CONTROLLER 11
  541. #define ADC_KEYPAD_PIN -1
  542. #define LANGUAGE_EN_ACTIVE 1
  543. #define LANGUAGE_DE_ACTIVE 0
  544. #define LANGUAGE_NL_ACTIVE 0
  545. #define LANGUAGE_PT_ACTIVE 0
  546. #define LANGUAGE_IT_ACTIVE 0
  547. #define LANGUAGE_ES_ACTIVE 0
  548. #define LANGUAGE_FI_ACTIVE 0
  549. #define LANGUAGE_SE_ACTIVE 0
  550. #define LANGUAGE_FR_ACTIVE 0
  551. #define LANGUAGE_CZ_ACTIVE 0
  552. #define LANGUAGE_PL_ACTIVE 0
  553. #define LANGUAGE_TR_ACTIVE 0
  554. #define UI_PRINTER_NAME "Mendel90"
  555. #define UI_PRINTER_COMPANY ""
  556. #define UI_PAGES_DURATION 4000
  557. #define UI_SPEEDDEPENDENT_POSITIONING 0
  558. #define UI_DISABLE_AUTO_PAGESWITCH 1
  559. #define UI_AUTORETURN_TO_MENU_AFTER 30000
  560. #define FEATURE_UI_KEYS 0
  561. #define UI_ENCODER_SPEED 1
  562. #define UI_REVERSE_ENCODER 1
  563. #define UI_KEY_BOUNCETIME 10
  564. #define UI_KEY_FIRST_REPEAT 500
  565. #define UI_KEY_REDUCE_REPEAT 50
  566. #define UI_KEY_MIN_REPEAT 50
  567. #define FEATURE_BEEPER 1
  568. #define CASE_LIGHTS_PIN -1
  569. #define CASE_LIGHT_DEFAULT_ON 1
  570. #define UI_START_SCREEN_DELAY 1000
  571. #define UI_DYNAMIC_ENCODER_SPEED 0
  572. /**
  573. Beeper sound definitions for short beeps during key actions
  574. and longer beeps for important actions.
  575. Parameter is delay in microseconds and the secons is the number of repetitions.
  576. Values must be in range 1..255
  577. */
  578. #define BEEPER_SHORT_SEQUENCE 2,2
  579. #define BEEPER_LONG_SEQUENCE 8,8
  580. #define UI_SET_MIN_HEATED_BED_TEMP 30
  581. #define UI_SET_MAX_HEATED_BED_TEMP 120
  582. #define UI_SET_MIN_EXTRUDER_TEMP 170
  583. #define UI_SET_MAX_EXTRUDER_TEMP 260
  584. #define UI_SET_EXTRUDER_FEEDRATE 2
  585. #define UI_SET_EXTRUDER_RETRACT_DISTANCE 3
  586.  
  587.  
  588. #define NUM_MOTOR_DRIVERS 0
  589.  
  590.  
  591.  
  592. #endif
  593.  
  594. /* Below you will find the configuration string, that created this Configuration.h
  595.  
  596. ========== Start configuration string ==========
  597. {
  598. "editMode": 2,
  599. "processor": 0,
  600. "baudrate": 115200,
  601. "bluetoothSerial": -1,
  602. "bluetoothBaudrate": 115200,
  603. "xStepsPerMM": 160,
  604. "yStepsPerMM": 160,
  605. "zStepsPerMM": 748.8008,
  606. "xInvert": "1",
  607. "x2Invert": 0,
  608. "xInvertEnable": 0,
  609. "eepromMode": 1,
  610. "yInvert": "0",
  611. "y2Invert": 0,
  612. "yInvertEnable": 0,
  613. "zInvert": "1",
  614. "z2Invert": 0,
  615. "z3Invert": 0,
  616. "z4Invert": 0,
  617. "zInvertEnable": 0,
  618. "extruder": [
  619. {
  620. "id": 0,
  621. "heatManager": 1,
  622. "pidDriveMin": 40,
  623. "pidDriveMax": 230,
  624. "pidMax": 255,
  625. "sensorType": 8,
  626. "sensorPin": "TEMP_0_PIN",
  627. "heaterPin": "HEATER_0_PIN",
  628. "maxFeedrate": 120,
  629. "startFeedrate": 20,
  630. "invert": "0",
  631. "invertEnable": "0",
  632. "acceleration": 1500,
  633. "watchPeriod": 1,
  634. "pidP": 10.23,
  635. "pidI": 0.71,
  636. "pidD": 36.66,
  637. "advanceK": 0,
  638. "advanceL": 0,
  639. "waitRetractTemp": 150,
  640. "waitRetractUnits": 0,
  641. "waitRetract": 0,
  642. "stepsPerMM": 1092.63158,
  643. "coolerPin": 6,
  644. "coolerSpeed": 255,
  645. "selectCommands": "",
  646. "deselectCommands": "",
  647. "xOffset": 0,
  648. "yOffset": 0,
  649. "zOffset": 0,
  650. "xOffsetSteps": 0,
  651. "yOffsetSteps": 0,
  652. "zOffsetSteps": 0,
  653. "stepper": {
  654. "name": "Extruder 0",
  655. "step": "ORIG_E0_STEP_PIN",
  656. "dir": "ORIG_E0_DIR_PIN",
  657. "enable": "ORIG_E0_ENABLE_PIN"
  658. },
  659. "advanceBacklashSteps": 0,
  660. "decoupleTestPeriod": 12,
  661. "jamPin": -1,
  662. "jamPullup": "0",
  663. "mirror": "0",
  664. "invert2": "0",
  665. "stepper2": {
  666. "name": "Extruder 0",
  667. "step": "ORIG_E0_STEP_PIN",
  668. "dir": "ORIG_E0_DIR_PIN",
  669. "enable": "ORIG_E0_ENABLE_PIN"
  670. },
  671. "preheat": 190
  672. }
  673. ],
  674. "uiLanguage": 0,
  675. "uiController": 0,
  676. "xMinEndstop": 1,
  677. "yMinEndstop": 1,
  678. "zMinEndstop": 2,
  679. "xMaxEndstop": 0,
  680. "yMaxEndstop": 0,
  681. "zMaxEndstop": 1,
  682. "x2MinEndstop": 0,
  683. "y2MinEndstop": 0,
  684. "x2MaxEndstop": 0,
  685. "y2MaxEndstop": 0,
  686. "motherboard": 33,
  687. "driveSystem": 0,
  688. "xMaxSpeed": 500,
  689. "xHomingSpeed": 50,
  690. "xTravelAcceleration": 500,
  691. "xPrintAcceleration": 500,
  692. "yMaxSpeed": 500,
  693. "yHomingSpeed": 50,
  694. "yTravelAcceleration": 500,
  695. "yPrintAcceleration": 500,
  696. "zMaxSpeed": 13,
  697. "zHomingSpeed": 13,
  698. "zTravelAcceleration": 500,
  699. "zPrintAcceleration": 500,
  700. "xMotor": {
  701. "name": "X motor",
  702. "step": "ORIG_X_STEP_PIN",
  703. "dir": "ORIG_X_DIR_PIN",
  704. "enable": "ORIG_X_ENABLE_PIN"
  705. },
  706. "yMotor": {
  707. "name": "Y motor",
  708. "step": "ORIG_Y_STEP_PIN",
  709. "dir": "ORIG_Y_DIR_PIN",
  710. "enable": "ORIG_Y_ENABLE_PIN"
  711. },
  712. "zMotor": {
  713. "name": "Z motor",
  714. "step": "ORIG_Z_STEP_PIN",
  715. "dir": "ORIG_Z_DIR_PIN",
  716. "enable": "ORIG_Z_ENABLE_PIN"
  717. },
  718. "enableBacklash": "0",
  719. "backlashX": 0,
  720. "backlashY": 0,
  721. "backlashZ": 0,
  722. "stepperInactiveTime": 360,
  723. "maxInactiveTime": 0,
  724. "xMinPos": -4,
  725. "yMinPos": -23.5,
  726. "zMinPos": 0,
  727. "xLength": 254,
  728. "yLength": 262.5,
  729. "zLength": 217.28,
  730. "alwaysCheckEndstops": "0",
  731. "disableX": "0",
  732. "disableY": "0",
  733. "disableZ": "0",
  734. "disableE": "0",
  735. "xHomeDir": "-1",
  736. "yHomeDir": "-1",
  737. "zHomeDir": "1",
  738. "xEndstopBack": 0,
  739. "yEndstopBack": 0,
  740. "zEndstopBack": 0,
  741. "deltaSegmentsPerSecondPrint": 180,
  742. "deltaSegmentsPerSecondTravel": 70,
  743. "deltaDiagonalRod": 445,
  744. "deltaHorizontalRadius": 209.25,
  745. "deltaAlphaA": 210,
  746. "deltaAlphaB": 330,
  747. "deltaAlphaC": 90,
  748. "deltaDiagonalCorrA": 0,
  749. "deltaDiagonalCorrB": 0,
  750. "deltaDiagonalCorrC": 0,
  751. "deltaMaxRadius": 150,
  752. "deltaFloorSafetyMarginMM": 15,
  753. "deltaRadiusCorrA": 0,
  754. "deltaRadiusCorrB": 0,
  755. "deltaRadiusCorrC": 0,
  756. "deltaXOffsetSteps": 0,
  757. "deltaYOffsetSteps": 0,
  758. "deltaZOffsetSteps": 0,
  759. "deltaSegmentsPerLine": 24,
  760. "stepperHighDelay": 0,
  761. "directionDelay": 0,
  762. "stepDoublerFrequency": 12000,
  763. "allowQuadstepping": "1",
  764. "doubleStepDelay": 0,
  765. "maxJerk": 10,
  766. "maxZJerk": 0.2,
  767. "moveCacheSize": 16,
  768. "moveCacheLow": 10,
  769. "lowTicksPerMove": 250000,
  770. "enablePowerOnStartup": "0",
  771. "echoOnExecute": "1",
  772. "sendWaits": "1",
  773. "ackWithLineNumber": "1",
  774. "killMethod": 1,
  775. "useAdvance": "0",
  776. "useQuadraticAdvance": "0",
  777. "powerInverting": 0,
  778. "mirrorX": 0,
  779. "mirrorXMotor": {
  780. "name": "Extruder 1",
  781. "step": "ORIG_E1_STEP_PIN",
  782. "dir": "ORIG_E1_DIR_PIN",
  783. "enable": "ORIG_E1_ENABLE_PIN"
  784. },
  785. "mirrorY": 0,
  786. "mirrorYMotor": {
  787. "name": "Extruder 1",
  788. "step": "ORIG_E1_STEP_PIN",
  789. "dir": "ORIG_E1_DIR_PIN",
  790. "enable": "ORIG_E1_ENABLE_PIN"
  791. },
  792. "mirrorZ": "0",
  793. "mirrorZMotor": {
  794. "name": "Extruder 3",
  795. "step": "ORIG_E3_STEP_PIN",
  796. "dir": "ORIG_E3_DIR_PIN",
  797. "enable": "ORIG_E3_ENABLE_PIN"
  798. },
  799. "mirrorZ3": "0",
  800. "mirrorZ3Motor": {
  801. "name": "Extruder 2",
  802. "step": "ORIG_E2_STEP_PIN",
  803. "dir": "ORIG_E2_DIR_PIN",
  804. "enable": "ORIG_E2_ENABLE_PIN"
  805. },
  806. "mirrorZ4": "0",
  807. "mirrorZ4Motor": {
  808. "name": "Extruder 3",
  809. "step": "ORIG_E3_STEP_PIN",
  810. "dir": "ORIG_E3_DIR_PIN",
  811. "enable": "ORIG_E3_ENABLE_PIN"
  812. },
  813. "dittoPrinting": "0",
  814. "featureServos": "0",
  815. "servo0Pin": 11,
  816. "servo1Pin": -1,
  817. "servo2Pin": -1,
  818. "servo3Pin": -1,
  819. "featureWatchdog": "1",
  820. "hasHeatedBed": "1",
  821. "enableZProbing": "1",
  822. "extrudeMaxLength": 160,
  823. "homeOrder": "HOME_ORDER_ZXY",
  824. "featureController": 11,
  825. "uiPrinterName": "Mendel90",
  826. "uiPrinterCompany": "",
  827. "uiPagesDuration": 4000,
  828. "uiHeadline": "",
  829. "uiDisablePageswitch": "1",
  830. "uiAutoReturnAfter": 30000,
  831. "featureKeys": "0",
  832. "uiEncoderSpeed": 1,
  833. "uiReverseEncoder": "1",
  834. "uiKeyBouncetime": 10,
  835. "uiKeyFirstRepeat": 500,
  836. "uiKeyReduceRepeat": 50,
  837. "uiKeyMinRepeat": 50,
  838. "featureBeeper": "1",
  839. "uiMinHeatedBed": 30,
  840. "uiMaxHeatedBed": 120,
  841. "uiMinEtxruderTemp": 170,
  842. "uiMaxExtruderTemp": 260,
  843. "uiExtruderFeedrate": 2,
  844. "uiExtruderRetractDistance": 3,
  845. "uiSpeeddependentPositioning": "0",
  846. "maxBedTemperature": 150,
  847. "bedSensorType": 1,
  848. "bedSensorPin": "TEMP_1_PIN",
  849. "bedHeaterPin": "HEATER_1_PIN",
  850. "bedHeatManager": 1,
  851. "bedPreheat": 55,
  852. "bedUpdateInterval": 5000,
  853. "bedPidDriveMin": 80,
  854. "bedPidDriveMax": 255,
  855. "bedPidP": 82.41,
  856. "bedPidI": 36.59,
  857. "bedPidD": 46.41,
  858. "bedPidMax": 255,
  859. "bedDecoupleTestPeriod": 300,
  860. "caseLightPin": -1,
  861. "caseLightDefaultOn": "1",
  862. "bedSkipIfWithin": 3,
  863. "gen1T0": 25,
  864. "gen1R0": 100000,
  865. "gen1Beta": 4036,
  866. "gen1MinTemp": -20,
  867. "gen1MaxTemp": 300,
  868. "gen1R1": 0,
  869. "gen1R2": 4700,
  870. "gen2T0": 25,
  871. "gen2R0": 100000,
  872. "gen2Beta": 4036,
  873. "gen2MinTemp": -20,
  874. "gen2MaxTemp": 300,
  875. "gen2R1": 0,
  876. "gen2R2": 4700,
  877. "gen3T0": 25,
  878. "gen3R0": 100000,
  879. "gen3Beta": 4036,
  880. "gen3MinTemp": -20,
  881. "gen3MaxTemp": 300,
  882. "gen3R1": 0,
  883. "gen3R2": 4700,
  884. "userTable0": {
  885. "r1": 0,
  886. "r2": 4700,
  887. "temps": [],
  888. "numEntries": 0
  889. },
  890. "userTable1": {
  891. "r1": 0,
  892. "r2": 4700,
  893. "temps": [],
  894. "numEntries": 0
  895. },
  896. "userTable2": {
  897. "r1": 0,
  898. "r2": 4700,
  899. "temps": [],
  900. "numEntries": 0
  901. },
  902. "tempHysteresis": 0,
  903. "pidControlRange": 20,
  904. "skipM109Within": 2,
  905. "extruderFanCoolTemp": 50,
  906. "minTemp": 150,
  907. "maxTemp": 250,
  908. "minDefectTemp": -10,
  909. "maxDefectTemp": 290,
  910. "arcSupport": "1",
  911. "featureMemoryPositionWatchdog": "1",
  912. "forceChecksum": "0",
  913. "sdExtendedDir": "1",
  914. "featureFanControl": "1",
  915. "fanPin": "ORIG_FAN_PIN",
  916. "featureFan2Control": "0",
  917. "fan2Pin": "ORIG_FAN2_PIN",
  918. "fanThermoPin": -1,
  919. "fanThermoMinPWM": 128,
  920. "fanThermoMaxPWM": 255,
  921. "fanThermoMinTemp": 45,
  922. "fanThermoMaxTemp": 60,
  923. "fanThermoThermistorPin": -1,
  924. "fanThermoThermistorType": 1,
  925. "scalePidToMax": 0,
  926. "zProbePin": "ORIG_Z_MIN_PIN",
  927. "zProbeBedDistance": 10,
  928. "zProbeDisableHeaters": "0",
  929. "zProbePullup": "0",
  930. "zProbeOnHigh": "0",
  931. "zProbeXOffset": 5,
  932. "zProbeYOffset": 28,
  933. "zProbeWaitBeforeTest": "0",
  934. "zProbeSpeed": 12,
  935. "zProbeXYSpeed": 500,
  936. "zProbeHeight": 1.5,
  937. "zProbeStartScript": "",
  938. "zProbeFinishedScript": "",
  939. "featureAutolevel": "0",
  940. "zProbeX1": 28,
  941. "zProbeY1": 33,
  942. "zProbeX2": 221,
  943. "zProbeY2": 33,
  944. "zProbeX3": 28,
  945. "zProbeY3": 177,
  946. "zProbeSwitchingDistance": 2,
  947. "zProbeRepetitions": 1,
  948. "zProbeEveryPoint": "",
  949. "sdSupport": "1",
  950. "sdCardDetectPin": 49,
  951. "sdCardDetectInverted": "0",
  952. "uiStartScreenDelay": 1000,
  953. "xEndstopBackMove": 5,
  954. "yEndstopBackMove": 5,
  955. "zEndstopBackMove": 2,
  956. "xEndstopRetestFactor": 3,
  957. "yEndstopRetestFactor": 3,
  958. "zEndstopRetestFactor": 3,
  959. "xMinPin": "ORIG_X_MIN_PIN",
  960. "yMinPin": "ORIG_Y_MIN_PIN",
  961. "zMinPin": "ORIG_Z_MIN_PIN",
  962. "xMaxPin": "ORIG_X_MAX_PIN",
  963. "yMaxPin": "ORIG_Y_MAX_PIN",
  964. "zMaxPin": "ORIG_Z_MAX_PIN",
  965. "x2MinPin": -1,
  966. "y2MinPin": -1,
  967. "x2MaxPin": -1,
  968. "y2MaxPin": -1,
  969. "deltaHomeOnPower": "0",
  970. "fanBoardPin": 4,
  971. "heaterPWMSpeed": 0,
  972. "featureBabystepping": "0",
  973. "babystepMultiplicator": 1,
  974. "pdmForHeater": "0",
  975. "pdmForCooler": "0",
  976. "psOn": 12,
  977. "mixingExtruder": "0",
  978. "decouplingTestMaxHoldVariance": 20,
  979. "decouplingTestMinTempRise": 1,
  980. "featureAxisComp": "0",
  981. "axisCompTanXY": 0,
  982. "axisCompTanXZ": 0,
  983. "axisCompTanYZ": 0,
  984. "retractOnPause": 2,
  985. "pauseStartCommands": "",
  986. "pauseEndCommands": "",
  987. "distortionCorrection": "1",
  988. "distortionCorrectionPoints": 22,
  989. "distortionCorrectionR": 100,
  990. "distortionPermanent": "1",
  991. "distortionUpdateFrequency": 15,
  992. "distortionStartDegrade": 0.1,
  993. "distortionEndDegrade": 2,
  994. "distortionExtrapolateCorners": "0",
  995. "distortionXMin": 28,
  996. "distortionXMax": 221,
  997. "distortionYMin": 33,
  998. "distortionYMax": 177,
  999. "sdRunOnStop": "",
  1000. "sdStopHeaterMotorsOnStop": "1",
  1001. "featureRetraction": "1",
  1002. "autoretractEnabled": "0",
  1003. "retractionLength": 3,
  1004. "retractionLongLength": 13,
  1005. "retractionSpeed": 40,
  1006. "retractionZLift": 0,
  1007. "retractionUndoExtraLength": 0,
  1008. "retractionUndoExtraLongLength": 0,
  1009. "retractionUndoSpeed": 20,
  1010. "filamentChangeXPos": 0,
  1011. "filamentChangeYPos": 0,
  1012. "filamentChangeZAdd": 2,
  1013. "filamentChangeRehome": 1,
  1014. "filamentChangeShortRetract": 5,
  1015. "filamentChangeLongRetract": 50,
  1016. "fanKickstart": 200,
  1017. "servo0StartPos": -1,
  1018. "servo1StartPos": -1,
  1019. "servo2StartPos": -1,
  1020. "servo3StartPos": -1,
  1021. "uiDynamicEncoderSpeed": "0",
  1022. "uiServoControl": 0,
  1023. "killIfSensorDefect": "0",
  1024. "jamSteps": 220,
  1025. "jamSlowdownSteps": 320,
  1026. "jamSlowdownTo": 70,
  1027. "jamErrorSteps": 500,
  1028. "jamMinSteps": 10,
  1029. "jamAction": 1,
  1030. "jamMethod": 1,
  1031. "primaryPort": 0,
  1032. "numMotorDrivers": 0,
  1033. "motorDrivers": [
  1034. {
  1035. "t": "None",
  1036. "s": "",
  1037. "invertEnable": "0",
  1038. "invertDirection": "0",
  1039. "stepsPerMM": 100,
  1040. "speed": 10,
  1041. "dirPin": -1,
  1042. "stepPin": -1,
  1043. "enablePin": -1,
  1044. "endstopPin": -1,
  1045. "invertEndstop": "0",
  1046. "minEndstop": "1",
  1047. "endstopPullup": "1",
  1048. "maxDistance": 20
  1049. },
  1050. {
  1051. "t": "None",
  1052. "s": "",
  1053. "invertEnable": "0",
  1054. "invertDirection": "0",
  1055. "stepsPerMM": 100,
  1056. "speed": 10,
  1057. "dirPin": -1,
  1058. "stepPin": -1,
  1059. "enablePin": -1,
  1060. "endstopPin": -1,
  1061. "invertEndstop": "0",
  1062. "minEndstop": "1",
  1063. "endstopPullup": "1",
  1064. "maxDistance": 20
  1065. },
  1066. {
  1067. "t": "None",
  1068. "s": "",
  1069. "invertEnable": "0",
  1070. "invertDirection": "0",
  1071. "stepsPerMM": 100,
  1072. "speed": 10,
  1073. "dirPin": -1,
  1074. "stepPin": -1,
  1075. "enablePin": -1,
  1076. "endstopPin": -1,
  1077. "invertEndstop": "0",
  1078. "minEndstop": "1",
  1079. "endstopPullup": "1",
  1080. "maxDistance": 20
  1081. },
  1082. {
  1083. "t": "None",
  1084. "s": "",
  1085. "invertEnable": "0",
  1086. "invertDirection": "0",
  1087. "stepsPerMM": 100,
  1088. "speed": 10,
  1089. "dirPin": -1,
  1090. "stepPin": -1,
  1091. "enablePin": -1,
  1092. "endstopPin": -1,
  1093. "invertEndstop": "0",
  1094. "minEndstop": "1",
  1095. "endstopPullup": "1",
  1096. "maxDistance": 20
  1097. },
  1098. {
  1099. "t": "None",
  1100. "s": "",
  1101. "invertEnable": "0",
  1102. "invertDirection": "0",
  1103. "stepsPerMM": 100,
  1104. "speed": 10,
  1105. "dirPin": -1,
  1106. "stepPin": -1,
  1107. "enablePin": -1,
  1108. "endstopPin": -1,
  1109. "invertEndstop": "0",
  1110. "minEndstop": "1",
  1111. "endstopPullup": "1",
  1112. "maxDistance": 20
  1113. },
  1114. {
  1115. "t": "None",
  1116. "s": "",
  1117. "invertEnable": "0",
  1118. "invertDirection": "0",
  1119. "stepsPerMM": 100,
  1120. "speed": 10,
  1121. "dirPin": -1,
  1122. "stepPin": -1,
  1123. "enablePin": -1,
  1124. "endstopPin": -1,
  1125. "invertEndstop": "0",
  1126. "minEndstop": "1",
  1127. "endstopPullup": "1",
  1128. "maxDistance": 20
  1129. }
  1130. ],
  1131. "manualConfig": "",
  1132. "zHomeMinTemperature": 0,
  1133. "zHomeXPos": 999999,
  1134. "zHomeYPos": 999999,
  1135. "zHomeHeatHeight": 20,
  1136. "zHomeHeatAll": "1",
  1137. "zProbeZOffsetMode": 0,
  1138. "zProbeZOffset": 0,
  1139. "zProbeDelay": 0,
  1140. "uiBedCoating": "0",
  1141. "langEN": "1",
  1142. "langDE": "0",
  1143. "langNL": "0",
  1144. "langPT": "0",
  1145. "langIT": "0",
  1146. "langES": "0",
  1147. "langFI": "0",
  1148. "langSE": "0",
  1149. "langFR": "0",
  1150. "langCZ": "0",
  1151. "langPL": "0",
  1152. "langTR": "0",
  1153. "interpolateAccelerationWithZ": 0,
  1154. "accelerationFactorTop": 100,
  1155. "bendingCorrectionA": 0,
  1156. "bendingCorrectionB": 0,
  1157. "bendingCorrectionC": 0,
  1158. "preventZDisableOnStepperTimeout": "0",
  1159. "supportLaser": "0",
  1160. "laserPin": -1,
  1161. "laserOnHigh": "1",
  1162. "laserWarmupTime": 0,
  1163. "defaultPrinterMode": 0,
  1164. "laserPwmMax": 255,
  1165. "laserWatt": 2,
  1166. "supportCNC": "0",
  1167. "cncWaitOnEnable": 300,
  1168. "cncWaitOnDisable": 0,
  1169. "cncEnablePin": -1,
  1170. "cncEnableWith": "1",
  1171. "cncDirectionPin": -1,
  1172. "cncDirectionCW": "1",
  1173. "cncPwmMax": 255,
  1174. "cncRpmMax": 8000,
  1175. "cncSafeZ": 150,
  1176. "startupGCode": "",
  1177. "jsonOutput": "0",
  1178. "bedLevelingMethod": 1,
  1179. "bedCorrectionMethod": 0,
  1180. "bedLevelingGridSize": 22,
  1181. "bedLevelingRepetitions": 5,
  1182. "bedMotor1X": 0,
  1183. "bedMotor1Y": 0,
  1184. "bedMotor2X": 200,
  1185. "bedMotor2Y": 0,
  1186. "bedMotor3X": 100,
  1187. "bedMotor3Y": 200,
  1188. "zProbeRequiresHeating": "0",
  1189. "zProbeMinTemperature": 150,
  1190. "adcKeypadPin": -1,
  1191. "sharedExtruderHeater": "0",
  1192. "extruderSwitchXYSpeed": 100,
  1193. "dualXAxis": "0",
  1194. "boardFanSpeed": 255,
  1195. "keepAliveInterval": 2000,
  1196. "moveXWhenHomed": "0",
  1197. "moveYWhenHomed": "0",
  1198. "moveZWhenHomed": "0",
  1199. "preheatTime": 30000,
  1200. "multiZEndstopHoming": "0",
  1201. "z2MinMaxPin": -1,
  1202. "z2MinMaxEndstop": 0,
  1203. "extruderIsZProbe": "0",
  1204. "boardFanMinSpeed": 0,
  1205. "doorPin": -1,
  1206. "doorEndstop": 1,
  1207. "zhomePreRaise": 0,
  1208. "zhomePreRaiseDistance": 10,
  1209. "dualXResolution": "0",
  1210. "x2axisStepsPerMM": 100,
  1211. "coolerPWMSpeed": 0,
  1212. "maxFanPWM": 255,
  1213. "raiseZOnToolchange": 0,
  1214. "distortionLimitTo": 2,
  1215. "automaticPowerup": "1",
  1216. "uiAnimation": "1",
  1217. "uiPresetBedTempPLA": 60,
  1218. "uiPresetBedABS": 110,
  1219. "uiPresetExtruderPLA": 190,
  1220. "uiPresetExtruderABS": 240,
  1221. "hasMAX6675": false,
  1222. "hasMAX31855": false,
  1223. "hasGeneric1": false,
  1224. "hasGeneric2": false,
  1225. "hasGeneric3": false,
  1226. "hasUser0": false,
  1227. "hasUser1": false,
  1228. "hasUser2": false,
  1229. "numExtruder": 1,
  1230. "version": 100,
  1231. "primaryPortName": ""
  1232. }
  1233. ========== End configuration string ==========
  1234.  
  1235. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement