Advertisement
Guest User

Sparkcube config

a guest
Jun 24th, 2015
1,408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 26.37 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 0.92
  31.    generator: http://www.repetier.com/firmware/v092/
  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. #define FAN_BOARD_PIN -1
  47.  
  48. //#define EXTERNALSERIAL  use Arduino serial library instead of build in. Requires more ram, has only 63 byte input buffer.
  49. // Uncomment the following line if you are using arduino compatible firmware made for Arduino version earlier then 1.0
  50. // If it is incompatible you will get compiler errors about write functions not beeing compatible!
  51. //#define COMPAT_PRE1
  52. #define BLUETOOTH_SERIAL  -1
  53. #define BLUETOOTH_BAUD  115200
  54. #define MIXING_EXTRUDER 0
  55.  
  56. #define DRIVE_SYSTEM 1
  57. #define XAXIS_STEPS_PER_MM 320
  58. #define YAXIS_STEPS_PER_MM 320
  59. #define ZAXIS_STEPS_PER_MM 6400
  60. #define EXTRUDER_FAN_COOL_TEMP 50
  61. #define PDM_FOR_EXTRUDER 0
  62. #define PDM_FOR_COOLER 0
  63. #define DECOUPLING_TEST_MAX_HOLD_VARIANCE 20
  64. #define DECOUPLING_TEST_MIN_TEMP_RISE 1
  65. #define KILL_IF_SENSOR_DEFECT 0
  66. #define RETRACT_ON_PAUSE 2
  67. #define PAUSE_START_COMMANDS ""
  68. #define PAUSE_END_COMMANDS ""
  69. #define EXT0_X_OFFSET 0
  70. #define EXT0_Y_OFFSET 0
  71. #define EXT0_Z_OFFSET 0
  72. #define EXT0_STEPS_PER_MM 374
  73. #define EXT0_TEMPSENSOR_TYPE 8
  74. #define EXT0_TEMPSENSOR_PIN TEMP_0_PIN
  75. #define EXT0_HEATER_PIN HEATER_0_PIN
  76. #define EXT0_STEP_PIN ORIG_E0_STEP_PIN
  77. #define EXT0_DIR_PIN ORIG_E0_DIR_PIN
  78. #define EXT0_INVERSE 0
  79. #define EXT0_ENABLE_PIN E0_ENABLE_PIN
  80. #define EXT0_ENABLE_ON 0
  81. #define EXT0_MAX_FEEDRATE 50
  82. #define EXT0_MAX_START_FEEDRATE 20
  83. #define EXT0_MAX_ACCELERATION 5000
  84. #define EXT0_HEAT_MANAGER 3
  85. #define EXT0_WATCHPERIOD 1
  86. #define EXT0_PID_INTEGRAL_DRIVE_MAX 230
  87. #define EXT0_PID_INTEGRAL_DRIVE_MIN 40
  88. #define EXT0_PID_PGAIN_OR_DEAD_TIME 7
  89. #define EXT0_PID_I 2
  90. #define EXT0_PID_D 40
  91. #define EXT0_PID_MAX 255
  92. #define EXT0_ADVANCE_K 0
  93. #define EXT0_ADVANCE_L 0
  94. #define EXT0_ADVANCE_BACKLASH_STEPS 0
  95. #define EXT0_WAIT_RETRACT_TEMP 150
  96. #define EXT0_WAIT_RETRACT_UNITS 0
  97. #define EXT0_SELECT_COMMANDS ""
  98. #define EXT0_DESELECT_COMMANDS ""
  99. #define EXT0_EXTRUDER_COOLER_PIN -1
  100. #define EXT0_EXTRUDER_COOLER_SPEED 255
  101. #define EXT0_DECOUPLE_TEST_PERIOD 12000
  102. #define EXT0_JAM_PIN -1
  103. #define EXT0_JAM_PULLUP 0
  104.  
  105. #define FEATURE_RETRACTION 1
  106. #define AUTORETRACT_ENABLED 0
  107. #define RETRACTION_LENGTH 3
  108. #define RETRACTION_LONG_LENGTH 13
  109. #define RETRACTION_SPEED 40
  110. #define RETRACTION_Z_LIFT 0
  111. #define RETRACTION_UNDO_EXTRA_LENGTH 0
  112. #define RETRACTION_UNDO_EXTRA_LONG_LENGTH 0
  113. #define RETRACTION_UNDO_SPEED 20
  114. #define FILAMENTCHANGE_X_POS 0
  115. #define FILAMENTCHANGE_Y_POS 0
  116. #define FILAMENTCHANGE_Z_ADD  2
  117. #define FILAMENTCHANGE_REHOME 1
  118. #define FILAMENTCHANGE_SHORTRETRACT 5
  119. #define FILAMENTCHANGE_LONGRETRACT 50
  120. #define JAM_STEPS 220
  121. #define JAM_SLOWDOWN_STEPS 320
  122. #define JAM_SLOWDOWN_TO 70
  123. #define JAM_ERROR_STEPS 500
  124. #define JAM_MIN_STEPS 10
  125. #define JAM_ACTION 1
  126.  
  127. #define RETRACT_DURING_HEATUP true
  128. #define PID_CONTROL_RANGE 20
  129. #define SKIP_M109_IF_WITHIN 2
  130. #define SCALE_PID_TO_MAX 0
  131. #define TEMP_HYSTERESIS 0
  132. #define EXTRUDE_MAXLENGTH 160
  133. #define NUM_TEMPS_USERTHERMISTOR0 0
  134. #define USER_THERMISTORTABLE0 {}
  135. #define NUM_TEMPS_USERTHERMISTOR1 0
  136. #define USER_THERMISTORTABLE1 {}
  137. #define NUM_TEMPS_USERTHERMISTOR2 0
  138. #define USER_THERMISTORTABLE2 {}
  139. #define GENERIC_THERM_VREF 5
  140. #define GENERIC_THERM_NUM_ENTRIES 33
  141. #define HEATER_PWM_SPEED 0
  142.  
  143. // ############# Heated bed configuration ########################
  144.  
  145. #define HAVE_HEATED_BED 1
  146. #define HEATED_BED_MAX_TEMP 120
  147. #define SKIP_M190_IF_WITHIN 3
  148. #define HEATED_BED_SENSOR_TYPE 9
  149. #define HEATED_BED_SENSOR_PIN TEMP_1_PIN
  150. #define HEATED_BED_HEATER_PIN HEATER_1_PIN
  151. #define HEATED_BED_SET_INTERVAL 5000
  152. #define HEATED_BED_HEAT_MANAGER 0
  153. #define HEATED_BED_PID_INTEGRAL_DRIVE_MAX 255
  154. #define HEATED_BED_PID_INTEGRAL_DRIVE_MIN 80
  155. #define HEATED_BED_PID_PGAIN_OR_DEAD_TIME   196
  156. #define HEATED_BED_PID_IGAIN   33
  157. #define HEATED_BED_PID_DGAIN 290
  158. #define HEATED_BED_PID_MAX 255
  159. #define HEATED_BED_DECOUPLE_TEST_PERIOD 300000
  160. #define MIN_EXTRUDER_TEMP 150
  161. #define MAXTEMP 250
  162. #define MIN_DEFECT_TEMPERATURE -10
  163. #define MAX_DEFECT_TEMPERATURE 290
  164.  
  165. // ################ Endstop configuration #####################
  166.  
  167. #define ENDSTOP_PULLUP_X_MIN true
  168. #define ENDSTOP_X_MIN_INVERTING false
  169. #define MIN_HARDWARE_ENDSTOP_X false
  170. #define ENDSTOP_PULLUP_Y_MIN true
  171. #define ENDSTOP_Y_MIN_INVERTING false
  172. #define MIN_HARDWARE_ENDSTOP_Y false
  173. #define ENDSTOP_PULLUP_Z_MIN true
  174. #define ENDSTOP_Z_MIN_INVERTING true
  175. #define MIN_HARDWARE_ENDSTOP_Z true
  176. #define ENDSTOP_PULLUP_X_MAX true
  177. #define ENDSTOP_X_MAX_INVERTING false
  178. #define MAX_HARDWARE_ENDSTOP_X true
  179. #define ENDSTOP_PULLUP_Y_MAX true
  180. #define ENDSTOP_Y_MAX_INVERTING false
  181. #define MAX_HARDWARE_ENDSTOP_Y true
  182. #define ENDSTOP_PULLUP_Z_MAX true
  183. #define ENDSTOP_Z_MAX_INVERTING false
  184. #define MAX_HARDWARE_ENDSTOP_Z false
  185. #define max_software_endstop_r true
  186.  
  187. #define min_software_endstop_x true
  188. #define min_software_endstop_y true
  189. #define min_software_endstop_z false
  190. #define max_software_endstop_x false
  191. #define max_software_endstop_y false
  192. #define max_software_endstop_z true
  193. #define ENDSTOP_X_BACK_MOVE 5
  194. #define ENDSTOP_Y_BACK_MOVE 5
  195. #define ENDSTOP_Z_BACK_MOVE 2
  196. #define ENDSTOP_X_RETEST_REDUCTION_FACTOR 3
  197. #define ENDSTOP_Y_RETEST_REDUCTION_FACTOR 3
  198. #define ENDSTOP_Z_RETEST_REDUCTION_FACTOR 3
  199. #define ENDSTOP_X_BACK_ON_HOME 1
  200. #define ENDSTOP_Y_BACK_ON_HOME 1
  201. #define ENDSTOP_Z_BACK_ON_HOME 0
  202. #define ALWAYS_CHECK_ENDSTOPS 1
  203.  
  204. // ################# XYZ movements ###################
  205.  
  206. #define X_ENABLE_ON 0
  207. #define Y_ENABLE_ON 0
  208. #define Z_ENABLE_ON 0
  209. #define DISABLE_X 0
  210. #define DISABLE_Y 0
  211. #define DISABLE_Z 0
  212. #define DISABLE_E 0
  213. #define INVERT_X_DIR 0
  214. #define INVERT_Y_DIR 0
  215. #define INVERT_Z_DIR 0
  216. #define X_HOME_DIR 1
  217. #define Y_HOME_DIR 1
  218. #define Z_HOME_DIR -1
  219. #define X_MAX_LENGTH 300
  220. #define Y_MAX_LENGTH 200
  221. #define Z_MAX_LENGTH 250
  222. #define X_MIN_POS 0
  223. #define Y_MIN_POS 0
  224. #define Z_MIN_POS 0
  225. #define DISTORTION_CORRECTION 0
  226. #define DISTORTION_CORRECTION_POINTS 5
  227. #define DISTORTION_CORRECTION_R 100
  228. #define DISTORTION_PERMANENT 1
  229. #define DISTORTION_UPDATE_FREQUENCY 15
  230. #define DISTORTION_START_DEGRADE 0.5
  231. #define DISTORTION_END_HEIGHT 1
  232. #define DISTORTION_EXTRAPOLATE_CORNERS 0
  233.  
  234. // ##########################################################################################
  235. // ##                           Movement settings                                          ##
  236. // ##########################################################################################
  237.  
  238. #define FEATURE_BABYSTEPPING 1
  239. #define BABYSTEP_MULTIPLICATOR 1
  240.  
  241. #define DELTA_SEGMENTS_PER_SECOND_PRINT 180 // Move accurate setting for print moves
  242. #define DELTA_SEGMENTS_PER_SECOND_MOVE 70 // Less accurate setting for other moves
  243.  
  244. // Delta settings
  245. #define DELTA_HOME_ON_POWER 0
  246.  
  247. #define DELTASEGMENTS_PER_PRINTLINE 24
  248. #define STEPPER_INACTIVE_TIME 360L
  249. #define MAX_INACTIVE_TIME 0L
  250. #define MAX_FEEDRATE_X 250
  251. #define MAX_FEEDRATE_Y 250
  252. #define MAX_FEEDRATE_Z 5
  253. #define HOMING_FEEDRATE_X 50
  254. #define HOMING_FEEDRATE_Y 50
  255. #define HOMING_FEEDRATE_Z 2
  256. #define HOMING_ORDER HOME_ORDER_XYZ
  257. #define ZHOME_MIN_TEMPERATURE 0
  258. #define ZHOME_HEAT_ALL 1
  259. #define ZHOME_HEAT_HEIGHT 20
  260. #define ZHOME_X_POS 999999
  261. #define ZHOME_Y_POS 999999
  262. #define ENABLE_BACKLASH_COMPENSATION 0
  263. #define X_BACKLASH 0
  264. #define Y_BACKLASH 0
  265. #define Z_BACKLASH 0
  266. #define RAMP_ACCELERATION 1
  267. #define STEPPER_HIGH_DELAY 1
  268. #define DIRECTION_DELAY 0
  269. #define STEP_DOUBLER_FREQUENCY 12000
  270. #define ALLOW_QUADSTEPPING 1
  271. #define DOUBLE_STEP_DELAY 0 // time in microseconds
  272. #define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_X 1000
  273. #define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_Y 1000
  274. #define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_Z 100
  275. #define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_X 1000
  276. #define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_Y 1000
  277. #define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_Z 100
  278. #define MAX_JERK 20
  279. #define MAX_ZJERK 0.3
  280. #define PRINTLINE_CACHE_SIZE 16
  281. #define MOVE_CACHE_LOW 10
  282. #define LOW_TICKS_PER_MOVE 250000
  283. #define FEATURE_TWO_XSTEPPER 0
  284. #define X2_STEP_PIN   ORIG_E1_STEP_PIN
  285. #define X2_DIR_PIN    ORIG_E1_DIR_PIN
  286. #define X2_ENABLE_PIN E1_ENABLE_PIN
  287. #define FEATURE_TWO_YSTEPPER 0
  288. #define Y2_STEP_PIN   ORIG_E1_STEP_PIN
  289. #define Y2_DIR_PIN    ORIG_E1_DIR_PIN
  290. #define Y2_ENABLE_PIN E1_ENABLE_PIN
  291. #define FEATURE_TWO_ZSTEPPER 0
  292. #define Z2_STEP_PIN   ORIG_E1_STEP_PIN
  293. #define Z2_DIR_PIN    ORIG_E1_DIR_PIN
  294. #define Z2_ENABLE_PIN E1_ENABLE_PIN
  295. #define FEATURE_DITTO_PRINTING 0
  296. #define USE_ADVANCE 0
  297. #define ENABLE_QUADRATIC_ADVANCE 0
  298.  
  299.  
  300. // ################# Misc. settings ##################
  301.  
  302. #define BAUDRATE 115200
  303. #define ENABLE_POWER_ON_STARTUP 1
  304. #define POWER_INVERTING 0
  305. #define KILL_METHOD 1
  306. #define ACK_WITH_LINENUMBER 1
  307. #define WAITING_IDENTIFIER "wait"
  308. #define ECHO_ON_EXECUTE 1
  309. #define EEPROM_MODE 1
  310. #define PS_ON_PIN ORIG_PS_ON_PIN
  311.  
  312. /* ======== Servos =======
  313. Control the servos with
  314. M340 P<servoId> S<pulseInUS>   / ServoID = 0..3  pulseInUs = 500..2500
  315. Servos are controlled by a pulse width normally between 500 and 2500 with 1500ms in center position. 0 turns servo off.
  316. WARNING: Servos can draw a considerable amount of current. Make sure your system can handle this or you may risk your hardware!
  317. */
  318. #define FEATURE_SERVO 0
  319. #define SERVO0_PIN 11
  320. #define SERVO1_PIN -1
  321. #define SERVO2_PIN -1
  322. #define SERVO3_PIN -1
  323. #define SERVO0_NEUTRAL_POS  -1
  324. #define SERVO1_NEUTRAL_POS  -1
  325. #define SERVO2_NEUTRAL_POS  -1
  326. #define SERVO3_NEUTRAL_POS  -1
  327. #define UI_SERVO_CONTROL 0
  328. #define FAN_KICKSTART_TIME  200
  329.  
  330.         #define FEATURE_WATCHDOG 0
  331.  
  332. // #################### Z-Probing #####################
  333.  
  334. #define FEATURE_Z_PROBE 0
  335. #define Z_PROBE_BED_DISTANCE 10
  336. #define Z_PROBE_PIN -1
  337. #define Z_PROBE_PULLUP 0
  338. #define Z_PROBE_ON_HIGH 0
  339. #define Z_PROBE_X_OFFSET 0
  340. #define Z_PROBE_Y_OFFSET 0
  341. #define Z_PROBE_WAIT_BEFORE_TEST 0
  342. #define Z_PROBE_SPEED 2
  343. #define Z_PROBE_XY_SPEED 150
  344. #define Z_PROBE_SWITCHING_DISTANCE 1
  345. #define Z_PROBE_REPETITIONS 1
  346. #define Z_PROBE_HEIGHT 40
  347. #define Z_PROBE_START_SCRIPT ""
  348. #define Z_PROBE_FINISHED_SCRIPT ""
  349. #define FEATURE_AUTOLEVEL 1
  350. #define Z_PROBE_X1 20
  351. #define Z_PROBE_Y1 20
  352. #define Z_PROBE_X2 160
  353. #define Z_PROBE_Y2 20
  354. #define Z_PROBE_X3 100
  355. #define Z_PROBE_Y3 160
  356. #define FEATURE_AXISCOMP 0
  357. #define AXISCOMP_TANXY 0
  358. #define AXISCOMP_TANYZ 0
  359. #define AXISCOMP_TANXZ 0
  360.  
  361. #ifndef SDSUPPORT  // Some boards have sd support on board. These define the values already in pins.h
  362. #define SDSUPPORT 0
  363. #define SDCARDDETECT -1
  364. #define SDCARDDETECTINVERTED 0
  365. #endif
  366. #define SD_EXTENDED_DIR 1 /** Show extended directory including file length. Don't use this with Pronterface! */
  367. #define SD_RUN_ON_STOP ""
  368. #define SD_STOP_HEATER_AND_MOTORS_ON_STOP 1
  369. #define ARC_SUPPORT 1
  370. #define FEATURE_MEMORY_POSITION 1
  371. #define FEATURE_CHECKSUM_FORCED 0
  372. #define FEATURE_FAN_CONTROL 1
  373. #define FEATURE_CONTROLLER 11
  374. #define UI_LANGUAGE 1
  375. #define UI_PRINTER_NAME "RepRap"
  376. #define UI_PRINTER_COMPANY "Home made"
  377. #define UI_PAGES_DURATION 4000
  378. #define UI_ANIMATION 1
  379. #define UI_SPEEDDEPENDENT_POSITIONING 0
  380. #define UI_DISABLE_AUTO_PAGESWITCH 1
  381. #define UI_AUTORETURN_TO_MENU_AFTER 30000
  382. #define FEATURE_UI_KEYS 0
  383. #define UI_ENCODER_SPEED 2
  384. #define UI_REVERSE_ENCODER 1
  385. #define UI_KEY_BOUNCETIME 10
  386. #define UI_KEY_FIRST_REPEAT 500
  387. #define UI_KEY_REDUCE_REPEAT 50
  388. #define UI_KEY_MIN_REPEAT 50
  389. #define FEATURE_BEEPER 0
  390. #define CASE_LIGHTS_PIN -1
  391. #define CASE_LIGHT_DEFAULT_ON 1
  392. #define UI_START_SCREEN_DELAY 1000
  393. #define UI_DYNAMIC_ENCODER_SPEED 1
  394.         /**
  395. Beeper sound definitions for short beeps during key actions
  396. and longer beeps for important actions.
  397. Parameter is delay in microseconds and the secons is the number of repetitions.
  398. Values must be in range 1..255
  399. */
  400. #define BEEPER_SHORT_SEQUENCE 2,2
  401. #define BEEPER_LONG_SEQUENCE 8,8
  402. #define UI_SET_PRESET_HEATED_BED_TEMP_PLA 45
  403. #define UI_SET_PRESET_EXTRUDER_TEMP_PLA   210
  404. #define UI_SET_PRESET_HEATED_BED_TEMP_ABS 110
  405. #define UI_SET_PRESET_EXTRUDER_TEMP_ABS   240
  406. #define UI_SET_MIN_HEATED_BED_TEMP  30
  407. #define UI_SET_MAX_HEATED_BED_TEMP 120
  408. #define UI_SET_MIN_EXTRUDER_TEMP   170
  409. #define UI_SET_MAX_EXTRUDER_TEMP   250
  410. #define UI_SET_EXTRUDER_FEEDRATE 5
  411. #define UI_SET_EXTRUDER_RETRACT_DISTANCE 3
  412.  
  413.  
  414. #define NUM_MOTOR_DRIVERS 0
  415.  
  416.  
  417.  
  418. #endif
  419.  
  420. /* Below you will find the configuration string, that created this Configuration.h
  421.  
  422. ========== Start configuration string ==========
  423. {
  424.     "editMode": 2,
  425.     "processor": 0,
  426.     "baudrate": 115200,
  427.     "bluetoothSerial": -1,
  428.     "bluetoothBaudrate": 115200,
  429.     "xStepsPerMM": 320,
  430.     "yStepsPerMM": 320,
  431.     "zStepsPerMM": 6400,
  432.     "xInvert": 0,
  433.     "xInvertEnable": 0,
  434.     "eepromMode": 1,
  435.     "yInvert": 0,
  436.     "yInvertEnable": 0,
  437.     "zInvert": 0,
  438.     "zInvertEnable": 0,
  439.     "extruder": [
  440.         {
  441.             "id": 0,
  442.             "heatManager": 3,
  443.             "pidDriveMin": 40,
  444.             "pidDriveMax": 230,
  445.             "pidMax": 255,
  446.             "sensorType": 8,
  447.             "sensorPin": "TEMP_0_PIN",
  448.             "heaterPin": "HEATER_0_PIN",
  449.             "maxFeedrate": 50,
  450.             "startFeedrate": 20,
  451.             "invert": "0",
  452.             "invertEnable": "0",
  453.             "acceleration": 5000,
  454.             "watchPeriod": 1,
  455.             "pidP": 7,
  456.             "pidI": 2,
  457.             "pidD": 40,
  458.             "advanceK": 0,
  459.             "advanceL": 0,
  460.             "waitRetractTemp": 150,
  461.             "waitRetractUnits": 0,
  462.             "waitRetract": 0,
  463.             "stepsPerMM": 374,
  464.             "coolerPin": -1,
  465.             "coolerSpeed": 255,
  466.             "selectCommands": "",
  467.             "deselectCommands": "",
  468.             "xOffset": 0,
  469.             "yOffset": 0,
  470.             "zOffset": 0,
  471.             "xOffsetSteps": 0,
  472.             "yOffsetSteps": 0,
  473.             "zOffsetSteps": 0,
  474.             "stepper": {
  475.                 "name": "Extruder 0",
  476.                 "step": "ORIG_E0_STEP_PIN",
  477.                 "dir": "ORIG_E0_DIR_PIN",
  478.                 "enable": "E0_ENABLE_PIN"
  479.             },
  480.             "advanceBacklashSteps": 0,
  481.             "decoupleTestPeriod": 12,
  482.             "jamPin": -1,
  483.             "jamPullup": "0"
  484.         }
  485.     ],
  486.     "uiLanguage": 1,
  487.     "uiController": 0,
  488.     "xMinEndstop": 0,
  489.     "yMinEndstop": 0,
  490.     "zMinEndstop": 1,
  491.     "xMaxEndstop": 2,
  492.     "yMaxEndstop": 2,
  493.     "zMaxEndstop": 0,
  494.     "motherboard": 33,
  495.     "driveSystem": 1,
  496.     "xMaxSpeed": 250,
  497.     "xHomingSpeed": 50,
  498.     "xTravelAcceleration": 1000,
  499.     "xPrintAcceleration": 1000,
  500.     "yMaxSpeed": 250,
  501.     "yHomingSpeed": 50,
  502.     "yTravelAcceleration": 1000,
  503.     "yPrintAcceleration": 1000,
  504.     "zMaxSpeed": 5,
  505.     "zHomingSpeed": 2,
  506.     "zTravelAcceleration": 100,
  507.     "zPrintAcceleration": 100,
  508.     "xMotor": {
  509.         "name": "X motor",
  510.         "step": "ORIG_X_STEP_PIN",
  511.         "dir": "ORIG_X_DIR_PIN",
  512.         "enable": "ORIG_X_ENABLE_PIN"
  513.     },
  514.     "yMotor": {
  515.         "name": "Y motor",
  516.         "step": "ORIG_Y_STEP_PIN",
  517.         "dir": "ORIG_Y_DIR_PIN",
  518.         "enable": "ORIG_Y_ENABLE_PIN"
  519.     },
  520.     "zMotor": {
  521.         "name": "Z motor",
  522.         "step": "ORIG_Z_STEP_PIN",
  523.         "dir": "ORIG_Z_DIR_PIN",
  524.         "enable": "ORIG_Z_ENABLE_PIN"
  525.     },
  526.     "enableBacklash": "0",
  527.     "backlashX": 0,
  528.     "backlashY": 0,
  529.     "backlashZ": 0,
  530.     "stepperInactiveTime": 360,
  531.     "maxInactiveTime": 0,
  532.     "xMinPos": 0,
  533.     "yMinPos": 0,
  534.     "zMinPos": 0,
  535.     "xLength": 300,
  536.     "yLength": 200,
  537.     "zLength": 250,
  538.     "alwaysCheckEndstops": "1",
  539.     "disableX": "0",
  540.     "disableY": "0",
  541.     "disableZ": "0",
  542.     "disableE": "0",
  543.     "xHomeDir": "1",
  544.     "yHomeDir": "1",
  545.     "zHomeDir": "-1",
  546.     "xEndstopBack": 1,
  547.     "yEndstopBack": 1,
  548.     "zEndstopBack": 0,
  549.     "deltaSegmentsPerSecondPrint": 180,
  550.     "deltaSegmentsPerSecondTravel": 70,
  551.     "deltaDiagonalRod": 445,
  552.     "deltaHorizontalRadius": 209.25,
  553.     "deltaAlphaA": 210,
  554.     "deltaAlphaB": 330,
  555.     "deltaAlphaC": 90,
  556.     "deltaDiagonalCorrA": 0,
  557.     "deltaDiagonalCorrB": 0,
  558.     "deltaDiagonalCorrC": 0,
  559.     "deltaMaxRadius": 150,
  560.     "deltaFloorSafetyMarginMM": 15,
  561.     "deltaRadiusCorrA": 0,
  562.     "deltaRadiusCorrB": 0,
  563.     "deltaRadiusCorrC": 0,
  564.     "deltaXOffsetSteps": 0,
  565.     "deltaYOffsetSteps": 0,
  566.     "deltaZOffsetSteps": 0,
  567.     "deltaSegmentsPerLine": 24,
  568.     "stepperHighDelay": 1,
  569.     "directionDelay": 0,
  570.     "stepDoublerFrequency": 12000,
  571.     "allowQuadstepping": "1",
  572.     "doubleStepDelay": 0,
  573.     "maxJerk": 20,
  574.     "maxZJerk": 0.3,
  575.     "moveCacheSize": 16,
  576.     "moveCacheLow": 10,
  577.     "lowTicksPerMove": 250000,
  578.     "enablePowerOnStartup": "1",
  579.     "echoOnExecute": "1",
  580.     "sendWaits": "1",
  581.     "ackWithLineNumber": "1",
  582.     "killMethod": 1,
  583.     "useAdvance": "0",
  584.     "useQuadraticAdvance": "0",
  585.     "powerInverting": 0,
  586.     "mirrorX": 0,
  587.     "mirrorXMotor": {
  588.         "name": "Extruder 1",
  589.         "step": "ORIG_E1_STEP_PIN",
  590.         "dir": "ORIG_E1_DIR_PIN",
  591.         "enable": "E1_ENABLE_PIN"
  592.     },
  593.     "mirrorY": 0,
  594.     "mirrorYMotor": {
  595.         "name": "Extruder 1",
  596.         "step": "ORIG_E1_STEP_PIN",
  597.         "dir": "ORIG_E1_DIR_PIN",
  598.         "enable": "E1_ENABLE_PIN"
  599.     },
  600.     "mirrorZ": 0,
  601.     "mirrorZMotor": {
  602.         "name": "Extruder 1",
  603.         "step": "ORIG_E1_STEP_PIN",
  604.         "dir": "ORIG_E1_DIR_PIN",
  605.         "enable": "E1_ENABLE_PIN"
  606.     },
  607.     "dittoPrinting": "0",
  608.     "featureServos": "0",
  609.     "servo0Pin": 11,
  610.     "servo1Pin": -1,
  611.     "servo2Pin": -1,
  612.     "servo3Pin": -1,
  613.     "featureWatchdog": "0",
  614.     "hasHeatedBed": "1",
  615.     "enableZProbing": "0",
  616.     "extrudeMaxLength": 160,
  617.     "homeOrder": "HOME_ORDER_XYZ",
  618.     "featureController": 11,
  619.     "uiPrinterName": "RepRap",
  620.     "uiPrinterCompany": "Home made",
  621.     "uiPagesDuration": 4000,
  622.     "uiAnimation": "1",
  623.     "uiDisablePageswitch": "1",
  624.     "uiAutoReturnAfter": 30000,
  625.     "featureKeys": "0",
  626.     "uiEncoderSpeed": 2,
  627.     "uiReverseEncoder": "1",
  628.     "uiKeyBouncetime": 10,
  629.     "uiKeyFirstRepeat": 500,
  630.     "uiKeyReduceRepeat": 50,
  631.     "uiKeyMinRepeat": 50,
  632.     "featureBeeper": "0",
  633.     "uiPresetBedTempPLA": 45,
  634.     "uiPresetBedABS": 110,
  635.     "uiPresetExtruderPLA": 210,
  636.     "uiPresetExtruderABS": 240,
  637.     "uiMinHeatedBed": 30,
  638.     "uiMaxHeatedBed": 120,
  639.     "uiMinEtxruderTemp": 170,
  640.     "uiMaxExtruderTemp": 250,
  641.     "uiExtruderFeedrate": 5,
  642.     "uiExtruderRetractDistance": 3,
  643.     "uiSpeeddependentPositioning": "0",
  644.     "maxBedTemperature": 120,
  645.     "bedSensorType": 9,
  646.     "bedSensorPin": "TEMP_1_PIN",
  647.     "bedHeaterPin": "HEATER_1_PIN",
  648.     "bedHeatManager": 0,
  649.     "bedUpdateInterval": 5000,
  650.     "bedPidDriveMin": 80,
  651.     "bedPidDriveMax": 255,
  652.     "bedPidP": 196,
  653.     "bedPidI": 33,
  654.     "bedPidD": 290,
  655.     "bedPidMax": 255,
  656.     "bedDecoupleTestPeriod": 300,
  657.     "caseLightPin": -1,
  658.     "caseLightDefaultOn": "1",
  659.     "bedSkipIfWithin": 3,
  660.     "gen1T0": 25,
  661.     "gen1R0": 100000,
  662.     "gen1Beta": 4036,
  663.     "gen1MinTemp": -20,
  664.     "gen1MaxTemp": 300,
  665.     "gen1R1": 0,
  666.     "gen1R2": 4700,
  667.     "gen2T0": 25,
  668.     "gen2R0": 100000,
  669.     "gen2Beta": 4036,
  670.     "gen2MinTemp": -20,
  671.     "gen2MaxTemp": 300,
  672.     "gen2R1": 0,
  673.     "gen2R2": 4700,
  674.     "gen3T0": 25,
  675.     "gen3R0": 100000,
  676.     "gen3Beta": 4036,
  677.     "gen3MinTemp": -20,
  678.     "gen3MaxTemp": 300,
  679.     "gen3R1": 0,
  680.     "gen3R2": 4700,
  681.     "userTable0": {
  682.         "r1": 0,
  683.         "r2": 4700,
  684.         "temps": [
  685.  
  686.         ]
  687.     },
  688.     "userTable1": {
  689.         "r1": 0,
  690.         "r2": 4700,
  691.         "temps": [
  692.  
  693.         ]
  694.     },
  695.     "userTable2": {
  696.         "r1": 0,
  697.         "r2": 4700,
  698.         "temps": [
  699.  
  700.         ]
  701.     },
  702.     "tempHysteresis": 0,
  703.     "pidControlRange": 20,
  704.     "skipM109Within": 2,
  705.     "extruderFanCoolTemp": 50,
  706.     "minTemp": 150,
  707.     "maxTemp": 250,
  708.     "minDefectTemp": -10,
  709.     "maxDefectTemp": 290,
  710.     "arcSupport": "1",
  711.     "featureMemoryPositionWatchdog": "1",
  712.     "forceChecksum": "0",
  713.     "sdExtendedDir": "1",
  714.     "featureFanControl": "1",
  715.     "fanPin": "ORIG_FAN_PIN",
  716.     "scalePidToMax": 0,
  717.     "zProbePin": -1,
  718.     "zProbeBedDistance": 10,
  719.     "zProbePullup": "0",
  720.     "zProbeOnHigh": "0",
  721.     "zProbeXOffset": 0,
  722.     "zProbeYOffset": 0,
  723.     "zProbeWaitBeforeTest": "0",
  724.     "zProbeSpeed": 2,
  725.     "zProbeXYSpeed": 150,
  726.     "zProbeHeight": 40,
  727.     "zProbeStartScript": "",
  728.     "zProbeFinishedScript": "",
  729.     "featureAutolevel": "1",
  730.     "zProbeX1": 20,
  731.     "zProbeY1": 20,
  732.     "zProbeX2": 160,
  733.     "zProbeY2": 20,
  734.     "zProbeX3": 100,
  735.     "zProbeY3": 160,
  736.     "zProbeSwitchingDistance": 1,
  737.     "zProbeRepetitions": 1,
  738.     "sdSupport": "0",
  739.     "sdCardDetectPin": -1,
  740.     "sdCardDetectInverted": "0",
  741.     "uiStartScreenDelay": 1000,
  742.     "xEndstopBackMove": 5,
  743.     "yEndstopBackMove": 5,
  744.     "zEndstopBackMove": 2,
  745.     "xEndstopRetestFactor": 3,
  746.     "yEndstopRetestFactor": 3,
  747.     "zEndstopRetestFactor": 3,
  748.     "xMinPin": "ORIG_X_MIN_PIN",
  749.     "yMinPin": "ORIG_Y_MIN_PIN",
  750.     "zMinPin": "ORIG_Z_MIN_PIN",
  751.     "xMaxPin": "ORIG_X_MAX_PIN",
  752.     "yMaxPin": "ORIG_Y_MAX_PIN",
  753.     "zMaxPin": "ORIG_Z_MAX_PIN",
  754.     "deltaHomeOnPower": "0",
  755.     "fanBoardPin": -1,
  756.     "heaterPWMSpeed": 0,
  757.     "featureBabystepping": "1",
  758.     "babystepMultiplicator": 1,
  759.     "pdmForHeater": "0",
  760.     "pdmForCooler": "0",
  761.     "psOn": "ORIG_PS_ON_PIN",
  762.     "mixingExtruder": "0",
  763.     "decouplingTestMaxHoldVariance": 20,
  764.     "decouplingTestMinTempRise": 1,
  765.     "featureAxisComp": "0",
  766.     "axisCompTanXY": 0,
  767.     "axisCompTanXZ": 0,
  768.     "axisCompTanYZ": 0,
  769.     "retractOnPause": 2,
  770.     "pauseStartCommands": "",
  771.     "pauseEndCommands": "",
  772.     "distortionCorrection": "0",
  773.     "distortionCorrectionPoints": 5,
  774.     "distortionCorrectionR": 100,
  775.     "distortionPermanent": "1",
  776.     "distortionUpdateFrequency": 15,
  777.     "distortionStartDegrade": 0.5,
  778.     "distortionEndDegrade": 1,
  779.     "distortionExtrapolateCorners": "0",
  780.     "sdRunOnStop": "",
  781.     "sdStopHeaterMotorsOnStop": "1",
  782.     "featureRetraction": "1",
  783.     "autoretractEnabled": "0",
  784.     "retractionLength": 3,
  785.     "retractionLongLength": 13,
  786.     "retractionSpeed": 40,
  787.     "retractionZLift": 0,
  788.     "retractionUndoExtraLength": 0,
  789.     "retractionUndoExtraLongLength": 0,
  790.     "retractionUndoSpeed": 20,
  791.     "filamentChangeXPos": 0,
  792.     "filamentChangeYPos": 0,
  793.     "filamentChangeZAdd": 2,
  794.     "filamentChangeRehome": 1,
  795.     "filamentChangeShortRetract": 5,
  796.     "filamentChangeLongRetract": 50,
  797.     "fanKickstart": 200,
  798.     "servo0StartPos": -1,
  799.     "servo1StartPos": -1,
  800.     "servo2StartPos": -1,
  801.     "servo3StartPos": -1,
  802.     "uiDynamicEncoderSpeed": "1",
  803.     "uiServoControl": 0,
  804.     "killIfSensorDefect": "0",
  805.     "jamSteps": 220,
  806.     "jamSlowdownSteps": 320,
  807.     "jamSlowdownTo": 70,
  808.     "jamErrorSteps": 500,
  809.     "jamMinSteps": 10,
  810.     "jamAction": 1,
  811.     "primaryPort": 0,
  812.     "numMotorDrivers": 0,
  813.     "motorDrivers": [
  814.         {
  815.             "t": "None",
  816.             "s": "",
  817.             "invertEnable": "0",
  818.             "invertDirection": "0",
  819.             "stepsPerMM": 100,
  820.             "speed": 10,
  821.             "dirPin": -1,
  822.             "stepPin": -1,
  823.             "enablePin": -1
  824.         },
  825.         {
  826.             "t": "None",
  827.             "s": "",
  828.             "invertEnable": "0",
  829.             "invertDirection": "0",
  830.             "stepsPerMM": 100,
  831.             "speed": 10,
  832.             "dirPin": -1,
  833.             "stepPin": -1,
  834.             "enablePin": -1
  835.         },
  836.         {
  837.             "t": "None",
  838.             "s": "",
  839.             "invertEnable": "0",
  840.             "invertDirection": "0",
  841.             "stepsPerMM": 100,
  842.             "speed": 10,
  843.             "dirPin": -1,
  844.             "stepPin": -1,
  845.             "enablePin": -1
  846.         },
  847.         {
  848.             "t": "None",
  849.             "s": "",
  850.             "invertEnable": "0",
  851.             "invertDirection": "0",
  852.             "stepsPerMM": 100,
  853.             "speed": 10,
  854.             "dirPin": -1,
  855.             "stepPin": -1,
  856.             "enablePin": -1
  857.         },
  858.         {
  859.             "t": "None",
  860.             "s": "",
  861.             "invertEnable": "0",
  862.             "invertDirection": "0",
  863.             "stepsPerMM": 100,
  864.             "speed": 10,
  865.             "dirPin": -1,
  866.             "stepPin": -1,
  867.             "enablePin": -1
  868.         },
  869.         {
  870.             "t": "None",
  871.             "s": "",
  872.             "invertEnable": "0",
  873.             "invertDirection": "0",
  874.             "stepsPerMM": 100,
  875.             "speed": 10,
  876.             "dirPin": -1,
  877.             "stepPin": -1,
  878.             "enablePin": -1
  879.         }
  880.     ],
  881.     "manualConfig": "",
  882.     "zHomeMinTemperature": 0,
  883.     "zHomeXPos": 999999,
  884.     "zHomeYPos": 999999,
  885.     "zHomeHeatHeight": 20,
  886.     "zHomeHeatAll": "1",
  887.     "hasMAX6675": false,
  888.     "hasMAX31855": false,
  889.     "hasGeneric1": false,
  890.     "hasGeneric2": false,
  891.     "hasGeneric3": false,
  892.     "hasUser0": false,
  893.     "hasUser1": false,
  894.     "hasUser2": false,
  895.     "numExtruder": 1,
  896.     "version": 92.3,
  897.     "primaryPortName": ""
  898. }
  899. ========== End configuration string ==========
  900.  
  901. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement