Advertisement
Guest User

kossel mini configuration

a guest
Jan 5th, 2015
1,195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.06 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.91
  31. generator: http://www.repetier.com/firmware/v091/
  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.  
  42. #include "pins.h"
  43.  
  44. // ################## EDIT THESE SETTINGS MANUALLY ################
  45. // ################ END MANUAL SETTINGS ##########################
  46.  
  47. #define FAN_BOARD_PIN -1
  48.  
  49. //#define EXTERNALSERIAL use Arduino serial library instead of build in. Requires more ram, has only 63 byte input buffer.
  50. // Uncomment the following line if you are using arduino compatible firmware made for Arduino version earlier then 1.0
  51. // If it is incompatible you will get compiler errors about write functions not beeing compatible!
  52. //#define COMPAT_PRE1
  53.  
  54.  
  55. #define DRIVE_SYSTEM 3
  56. #define XAXIS_STEPS_PER_MM 50
  57. #define YAXIS_STEPS_PER_MM 50
  58. #define ZAXIS_STEPS_PER_MM 50
  59. #define EXTRUDER_FAN_COOL_TEMP 50
  60. #define EXT0_X_OFFSET 0
  61. #define EXT0_Y_OFFSET 0
  62. #define EXT0_STEPS_PER_MM 518
  63. #define EXT0_TEMPSENSOR_TYPE 8
  64. #define EXT0_TEMPSENSOR_PIN TEMP_0_PIN
  65. #define EXT0_HEATER_PIN HEATER_0_PIN
  66. #define EXT0_STEP_PIN ORIG_E0_STEP_PIN
  67. #define EXT0_DIR_PIN ORIG_E0_DIR_PIN
  68. #define EXT0_INVERSE 0
  69. #define EXT0_ENABLE_PIN E0_ENABLE_PIN
  70. #define EXT0_ENABLE_ON 0
  71. #define EXT0_MAX_FEEDRATE 50
  72. #define EXT0_MAX_START_FEEDRATE 20
  73. #define EXT0_MAX_ACCELERATION 5000
  74. #define EXT0_HEAT_MANAGER 3
  75. #define EXT0_WATCHPERIOD 1
  76. #define EXT0_PID_INTEGRAL_DRIVE_MAX 230
  77. #define EXT0_PID_INTEGRAL_DRIVE_MIN 40
  78. #define EXT0_PID_P 7
  79. #define EXT0_PID_I 2
  80. #define EXT0_PID_D 40
  81. #define EXT0_PID_MAX 255
  82. #define EXT0_ADVANCE_K 0
  83. #define EXT0_ADVANCE_L 0
  84. #define EXT0_ADVANCE_BACKLASH_STEPS 0
  85. #define EXT0_WAIT_RETRACT_TEMP 150
  86. #define EXT0_WAIT_RETRACT_UNITS 0
  87. #define EXT0_SELECT_COMMANDS ""
  88. #define EXT0_DESELECT_COMMANDS ""
  89. #define EXT0_EXTRUDER_COOLER_PIN -1
  90. #define EXT0_EXTRUDER_COOLER_SPEED 255
  91. #define RETRACT_DURING_HEATUP true
  92. #define PID_CONTROL_RANGE 10
  93. #define SKIP_M109_IF_WITHIN 2
  94. #define SCALE_PID_TO_MAX 1
  95. #define TEMP_HYSTERESIS 0
  96. #define EXTRUDE_MAXLENGTH 160
  97. #define NUM_TEMPS_USERTHERMISTOR0 0
  98. #define USER_THERMISTORTABLE0 {}
  99. #define NUM_TEMPS_USERTHERMISTOR1 0
  100. #define USER_THERMISTORTABLE1 {}
  101. #define NUM_TEMPS_USERTHERMISTOR2 0
  102. #define USER_THERMISTORTABLE2 {}
  103. #define GENERIC_THERM_VREF 5
  104. #define GENERIC_THERM_NUM_ENTRIES 33
  105. #define HEATER_PWM_SPEED 0
  106.  
  107. // ############# Heated bed configuration ########################
  108.  
  109. #define HAVE_HEATED_BED 0
  110. #define HEATED_BED_MAX_TEMP 120
  111. #define SKIP_M190_IF_WITHIN 3
  112. #define HEATED_BED_SENSOR_TYPE 1
  113. #define HEATED_BED_SENSOR_PIN TEMP_1_PIN
  114. #define HEATED_BED_HEATER_PIN HEATER_1_PIN
  115. #define HEATED_BED_SET_INTERVAL 5000
  116. #define HEATED_BED_HEAT_MANAGER 0
  117. #define HEATED_BED_PID_INTEGRAL_DRIVE_MAX 255
  118. #define HEATED_BED_PID_INTEGRAL_DRIVE_MIN 80
  119. #define HEATED_BED_PID_PGAIN 196
  120. #define HEATED_BED_PID_IGAIN 33
  121. #define HEATED_BED_PID_DGAIN 290
  122. #define HEATED_BED_PID_MAX 255
  123. #define MIN_EXTRUDER_TEMP 150
  124. #define MAXTEMP 275
  125. #define MIN_DEFECT_TEMPERATURE -10
  126. #define MAX_DEFECT_TEMPERATURE 290
  127.  
  128. // ################ Endstop configuration #####################
  129.  
  130. #define ENDSTOP_PULLUP_X_MIN true
  131. #define ENDSTOP_X_MIN_INVERTING false
  132. #define MIN_HARDWARE_ENDSTOP_X false
  133. #define ENDSTOP_PULLUP_Y_MIN true
  134. #define ENDSTOP_Y_MIN_INVERTING false
  135. #define MIN_HARDWARE_ENDSTOP_Y false
  136. #define ENDSTOP_PULLUP_Z_MIN true
  137. #define ENDSTOP_Z_MIN_INVERTING false
  138. #define MIN_HARDWARE_ENDSTOP_Z false
  139. #define ENDSTOP_PULLUP_X_MAX true
  140. #define ENDSTOP_X_MAX_INVERTING false
  141. #define MAX_HARDWARE_ENDSTOP_X true
  142. #define ENDSTOP_PULLUP_Y_MAX true
  143. #define ENDSTOP_Y_MAX_INVERTING false
  144. #define MAX_HARDWARE_ENDSTOP_Y true
  145. #define ENDSTOP_PULLUP_Z_MAX true
  146. #define ENDSTOP_Z_MAX_INVERTING false
  147. #define MAX_HARDWARE_ENDSTOP_Z true
  148. #define max_software_endstop_r true
  149.  
  150. #define min_software_endstop_x true
  151. #define min_software_endstop_y true
  152. #define min_software_endstop_z true
  153. #define max_software_endstop_x false
  154. #define max_software_endstop_y false
  155. #define max_software_endstop_z false
  156. #define ENDSTOP_X_BACK_MOVE 5
  157. #define ENDSTOP_Y_BACK_MOVE 5
  158. #define ENDSTOP_Z_BACK_MOVE 5
  159. #define ENDSTOP_X_RETEST_REDUCTION_FACTOR 3
  160. #define ENDSTOP_Y_RETEST_REDUCTION_FACTOR 3
  161. #define ENDSTOP_Z_RETEST_REDUCTION_FACTOR 3
  162. #define ENDSTOP_X_BACK_ON_HOME 1
  163. #define ENDSTOP_Y_BACK_ON_HOME 1
  164. #define ENDSTOP_Z_BACK_ON_HOME 0
  165. #define ALWAYS_CHECK_ENDSTOPS 1
  166.  
  167. // ################# XYZ movements ###################
  168.  
  169. #define X_ENABLE_ON 0
  170. #define Y_ENABLE_ON 0
  171. #define Z_ENABLE_ON 0
  172. #define DISABLE_X 0
  173. #define DISABLE_Y 0
  174. #define DISABLE_Z 0
  175. #define DISABLE_E 0
  176. #define INVERT_X_DIR 0
  177. #define INVERT_Y_DIR 0
  178. #define INVERT_Z_DIR 0
  179. #define X_HOME_DIR -1
  180. #define Y_HOME_DIR -1
  181. #define Z_HOME_DIR 1
  182. #define X_MAX_LENGTH 200
  183. #define Y_MAX_LENGTH 200
  184. #define Z_MAX_LENGTH 228.5
  185. #define X_MIN_POS 0
  186. #define Y_MIN_POS 0
  187. #define Z_MIN_POS 0
  188.  
  189. // ##########################################################################################
  190. // ## Movement settings ##
  191. // ##########################################################################################
  192.  
  193. #define FEATURE_BABYSTEPPING 1
  194. #define BABYSTEP_MULTIPLICATOR 1
  195.  
  196. #define DELTA_SEGMENTS_PER_SECOND_PRINT 180 // Move accurate setting for print moves
  197. #define DELTA_SEGMENTS_PER_SECOND_MOVE 70 // Less accurate setting for other moves
  198.  
  199. // Delta settings
  200. #define DELTA_DIAGONAL_ROD 214 // mm
  201. #define DELTA_ALPHA_A 210
  202. #define DELTA_ALPHA_B 330
  203. #define DELTA_ALPHA_C 90
  204. #define DELTA_RADIUS_CORRECTION_A 0
  205. #define DELTA_RADIUS_CORRECTION_B 0
  206. #define DELTA_RADIUS_CORRECTION_C 0
  207. #define DELTA_DIAGONAL_CORRECTION_A 0
  208. #define DELTA_DIAGONAL_CORRECTION_B 0
  209. #define DELTA_DIAGONAL_CORRECTION_C 0
  210. #define DELTA_MAX_RADIUS 140
  211. #define DELTA_RADIUS 116
  212. #define DELTA_HOME_ON_POWER 0
  213. #define STEP_COUNTER
  214. #define DELTA_X_ENDSTOP_OFFSET_STEPS 0
  215. #define DELTA_Y_ENDSTOP_OFFSET_STEPS 0
  216. #define DELTA_Z_ENDSTOP_OFFSET_STEPS 0
  217. //#define SOFTWARE_LEVELING
  218.  
  219. #define MAX_DELTA_SEGMENTS_PER_LINE 24
  220. #define STEPPER_INACTIVE_TIME 360L
  221. #define MAX_INACTIVE_TIME 0L
  222. #define MAX_FEEDRATE_X 300
  223. #define MAX_FEEDRATE_Y 300
  224. #define MAX_FEEDRATE_Z 300
  225. #define HOMING_FEEDRATE_X 40
  226. #define HOMING_FEEDRATE_Y 40
  227. #define HOMING_FEEDRATE_Z 40
  228. #define HOMING_ORDER HOME_ORDER_ZXY
  229. #define ENABLE_BACKLASH_COMPENSATION 0
  230. #define X_BACKLASH 0
  231. #define Y_BACKLASH 0
  232. #define Z_BACKLASH 0
  233. #define RAMP_ACCELERATION 1
  234. #define STEPPER_HIGH_DELAY 0
  235. #define STEP_DOUBLER_FREQUENCY 12000
  236. #define ALLOW_QUADSTEPPING 1
  237. #define DOUBLE_STEP_DELAY 1 // time in microseconds
  238. #define MAX_HALFSTEP_INTERVAL 1999
  239. #define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_X 1000
  240. #define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_Y 1000
  241. #define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_Z 1000
  242. #define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_X 1000
  243. #define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_Y 1000
  244. #define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_Z 1000
  245. #define MAX_JERK 20
  246. #define MAX_ZJERK 0.3
  247. #define MOVE_CACHE_SIZE 16
  248. #define MOVE_CACHE_LOW 10
  249. #define LOW_TICKS_PER_MOVE 250000
  250. #define FEATURE_TWO_XSTEPPER 0
  251. #define X2_STEP_PIN ORIG_E1_STEP_PIN
  252. #define X2_DIR_PIN ORIG_E1_DIR_PIN
  253. #define X2_ENABLE_PIN ORIG_E1_ENABLE_PIN
  254. #define FEATURE_TWO_YSTEPPER 0
  255. #define Y2_STEP_PIN ORIG_E1_STEP_PIN
  256. #define Y2_DIR_PIN ORIG_E1_DIR_PIN
  257. #define Y2_ENABLE_PIN ORIG_E1_ENABLE_PIN
  258. #define FEATURE_TWO_ZSTEPPER 0
  259. #define Z2_STEP_PIN ORIG_E1_STEP_PIN
  260. #define Z2_DIR_PIN ORIG_E1_DIR_PIN
  261. #define Z2_ENABLE_PIN ORIG_E1_ENABLE_PIN
  262. #define FEATURE_DITTO_PRINTING 0
  263.  
  264.  
  265. // ################# Misc. settings ##################
  266.  
  267. #define BAUDRATE 115200
  268. #define ENABLE_POWER_ON_STARTUP
  269. #define POWER_INVERTING 0
  270. #define KILL_METHOD 1
  271. #define GCODE_BUFFER_SIZE 2
  272. #define ACK_WITH_LINENUMBER
  273. #define WAITING_IDENTIFIER "wait"
  274. #define ECHO_ON_EXECUTE
  275. #define EEPROM_MODE 1
  276.  
  277. /* ======== Servos =======
  278. Control the servos with
  279. M340 P<servoId> S<pulseInUS> / ServoID = 0..3 pulseInUs = 500..2500
  280. Servos are controlled by a pulse width normally between 500 and 2500 with 1500ms in center position. 0 turns servo off.
  281. WARNING: Servos can draw a considerable amount of current. Make sure your system can handle this or you may risk your hardware!
  282. */
  283. #define FEATURE_SERVO 0
  284. #define SERVO0_PIN 11
  285. #define SERVO1_PIN -1
  286. #define SERVO2_PIN -1
  287. #define SERVO3_PIN -1
  288. #define FEATURE_WATCHDOG 0
  289.  
  290. // #################### Z-Probing #####################
  291.  
  292. #define FEATURE_Z_PROBE 0
  293. #define Z_PROBE_BED_DISTANCE 10
  294. #define Z_PROBE_PIN -1
  295. #define Z_PROBE_PULLUP 0
  296. #define Z_PROBE_ON_HIGH 0
  297. #define Z_PROBE_X_OFFSET 0
  298. #define Z_PROBE_Y_OFFSET 0
  299. #define Z_PROBE_WAIT_BEFORE_TEST 0
  300. #define Z_PROBE_SPEED 2
  301. #define Z_PROBE_XY_SPEED 150
  302. #define Z_PROBE_SWITCHING_DISTANCE 1
  303. #define Z_PROBE_REPETITIONS 1
  304. #define Z_PROBE_HEIGHT 40
  305. #define Z_PROBE_START_SCRIPT ""
  306. #define Z_PROBE_FINISHED_SCRIPT ""
  307. #define FEATURE_AUTOLEVEL 1
  308. #define Z_PROBE_X1 20
  309. #define Z_PROBE_Y1 20
  310. #define Z_PROBE_X2 160
  311. #define Z_PROBE_Y2 20
  312. #define Z_PROBE_X3 100
  313. #define Z_PROBE_Y3 160
  314.  
  315. #ifndef SDSUPPORT // Some boards have sd support on board. These define the values already in pins.h
  316. #define SDSUPPORT 0
  317. #define SDCARDDETECT -1
  318. #define SDCARDDETECTINVERTED 0
  319. #endif
  320. #define SD_EXTENDED_DIR 1 /** Show extended directory including file length. Don't use this with Pronterface! */
  321. #define ARC_SUPPORT 1
  322. #define FEATURE_MEMORY_POSITION 1
  323. #define FEATURE_CHECKSUM_FORCED 0
  324. #define FEATURE_FAN_CONTROL 1
  325. #define FEATURE_CONTROLLER 2
  326. #define UI_LANGUAGE 0
  327. #define UI_PRINTER_NAME "RepRap.cn"
  328. #define UI_PRINTER_COMPANY "Himanshu madhavani"
  329. #define UI_PAGES_DURATION 4000
  330. #define UI_ANIMATION 0
  331. #define UI_SPEEDDEPENDENT_POSITIONING 0
  332. #define UI_DISABLE_AUTO_PAGESWITCH 1
  333. #define UI_AUTORETURN_TO_MENU_AFTER 30000
  334. #define FEATURE_UI_KEYS 0
  335. #define UI_ENCODER_SPEED 1
  336. #define UI_KEY_BOUNCETIME 10
  337. #define UI_KEY_FIRST_REPEAT 500
  338. #define UI_KEY_REDUCE_REPEAT 50
  339. #define UI_KEY_MIN_REPEAT 50
  340. #define FEATURE_BEEPER 0
  341. #define CASE_LIGHTS_PIN -1
  342. #define CASE_LIGHT_DEFAULT_ON 1
  343. #define UI_START_SCREEN_DELAY 1000
  344. /**
  345. Beeper sound definitions for short beeps during key actions
  346. and longer beeps for important actions.
  347. Parameter is delay in microseconds and the secons is the number of repetitions.
  348. Values must be in range 1..255
  349. */
  350. #define BEEPER_SHORT_SEQUENCE 2,2
  351. #define BEEPER_LONG_SEQUENCE 8,8
  352. #define UI_SET_PRESET_HEATED_BED_TEMP_PLA 60
  353. #define UI_SET_PRESET_EXTRUDER_TEMP_PLA 190
  354. #define UI_SET_PRESET_HEATED_BED_TEMP_ABS 110
  355. #define UI_SET_PRESET_EXTRUDER_TEMP_ABS 240
  356. #define UI_SET_MIN_HEATED_BED_TEMP 30
  357. #define UI_SET_MAX_HEATED_BED_TEMP 120
  358. #define UI_SET_MIN_EXTRUDER_TEMP 170
  359. #define UI_SET_MAX_EXTRUDER_TEMP 260
  360. #define UI_SET_EXTRUDER_FEEDRATE 2
  361. #define UI_SET_EXTRUDER_RETRACT_DISTANCE 3
  362.  
  363. #endif
  364.  
  365. /* Below you will find the configuration string, that created this Configuration.h
  366.  
  367. ========== Start configuration string ==========
  368. {
  369. "editMode": 2,
  370. "processor": 1,
  371. "baudrate": 115200,
  372. "xStepsPerMM": 50,
  373. "yStepsPerMM": 50,
  374. "zStepsPerMM": 50,
  375. "xInvert": 0,
  376. "xInvertEnable": 0,
  377. "eepromMode": 1,
  378. "yInvert": 0,
  379. "yInvertEnable": 0,
  380. "zInvert": 0,
  381. "zInvertEnable": 0,
  382. "extruder": [
  383. {
  384. "id": 0,
  385. "heatManager": 3,
  386. "pidDriveMin": 40,
  387. "pidDriveMax": 230,
  388. "pidMax": 255,
  389. "sensorType": 8,
  390. "sensorPin": "TEMP_0_PIN",
  391. "heaterPin": "HEATER_0_PIN",
  392. "inverse": 0,
  393. "maxFeedrate": 50,
  394. "startFeedrate": 20,
  395. "invert": "0",
  396. "invertEnable": "0",
  397. "acceleration": 5000,
  398. "watchPeriod": 1,
  399. "pidP": 7,
  400. "pidI": 2,
  401. "pidD": 40,
  402. "advanceK": 0,
  403. "advanceL": 0,
  404. "waitRetractTemp": 150,
  405. "waitRetractUnits": 0,
  406. "waitRetract": 0,
  407. "stepsPerMM": 518,
  408. "coolerPin": -1,
  409. "coolerSpeed": 255,
  410. "selectCommands": "",
  411. "deselectCommands": "",
  412. "xOffset": 0,
  413. "yOffset": 0,
  414. "xOffsetSteps": 0,
  415. "yOffsetSteps": 0,
  416. "stepper": {
  417. "name": "Extruder 0",
  418. "step": "ORIG_E0_STEP_PIN",
  419. "dir": "ORIG_E0_DIR_PIN",
  420. "enable": "E0_ENABLE_PIN"
  421. },
  422. "advanceBacklashSteps": 0
  423. }
  424. ],
  425. "uiLanguage": 0,
  426. "uiController": 0,
  427. "xMinEndstop": 0,
  428. "yMinEndstop": 0,
  429. "zMinEndstop": 0,
  430. "xMaxEndstop": 2,
  431. "yMaxEndstop": 2,
  432. "zMaxEndstop": 2,
  433. "motherboard": 33,
  434. "driveSystem": 3,
  435. "xMaxSpeed": 300,
  436. "xHomingSpeed": 40,
  437. "xTravelAcceleration": 1000,
  438. "xPrintAcceleration": 1000,
  439. "yMaxSpeed": 300,
  440. "yHomingSpeed": 40,
  441. "yTravelAcceleration": 1000,
  442. "yPrintAcceleration": 1000,
  443. "zMaxSpeed": 300,
  444. "zHomingSpeed": 40,
  445. "zTravelAcceleration": 1000,
  446. "zPrintAcceleration": 1000,
  447. "xMotor": {
  448. "name": "X motor",
  449. "step": "ORIG_X_STEP_PIN",
  450. "dir": "ORIG_X_DIR_PIN",
  451. "enable": "ORIG_X_ENABLE_PIN"
  452. },
  453. "yMotor": {
  454. "name": "Y motor",
  455. "step": "ORIG_Y_STEP_PIN",
  456. "dir": "ORIG_Y_DIR_PIN",
  457. "enable": "ORIG_Y_ENABLE_PIN"
  458. },
  459. "zMotor": {
  460. "name": "Z motor",
  461. "step": "ORIG_Z_STEP_PIN",
  462. "dir": "ORIG_Z_DIR_PIN",
  463. "enable": "ORIG_Z_ENABLE_PIN"
  464. },
  465. "enableBacklash": "0",
  466. "backlashX": 0,
  467. "backlashY": 0,
  468. "backlashZ": 0,
  469. "stepperInactiveTime": 360,
  470. "maxInactiveTime": 0,
  471. "xMinPos": 0,
  472. "yMinPos": 0,
  473. "zMinPos": 0,
  474. "xLength": 200,
  475. "yLength": 200,
  476. "zLength": 228.5,
  477. "alwaysCheckEndstops": "1",
  478. "disableX": "0",
  479. "disableY": "0",
  480. "disableZ": "0",
  481. "disableE": "0",
  482. "xHomeDir": "-1",
  483. "yHomeDir": "-1",
  484. "zHomeDir": 1,
  485. "xEndstopBack": 1,
  486. "yEndstopBack": 1,
  487. "zEndstopBack": 0,
  488. "deltaSegmentsPerSecondPrint": 180,
  489. "deltaSegmentsPerSecondTravel": 70,
  490. "deltaDiagonalRod": 214,
  491. "deltaHorizontalRadius": 116,
  492. "deltaAlphaA": 210,
  493. "deltaAlphaB": 330,
  494. "deltaAlphaC": 90,
  495. "deltaDiagonalCorrA": 0,
  496. "deltaDiagonalCorrB": 0,
  497. "deltaDiagonalCorrC": 0,
  498. "deltaMaxRadius": 140,
  499. "deltaRadiusCorrA": 0,
  500. "deltaRadiusCorrB": 0,
  501. "deltaRadiusCorrC": 0,
  502. "deltaXOffsetSteps": 0,
  503. "deltaYOffsetSteps": 0,
  504. "deltaZOffsetSteps": 0,
  505. "deltaSegmentsPerLine": 24,
  506. "stepperHighDelay": 0,
  507. "stepDoublerFrequency": 12000,
  508. "allowQuadstepping": "1",
  509. "doubleStepDelay": 1,
  510. "maxHalfstepInterval": 1999,
  511. "maxJerk": 20,
  512. "maxZJerk": 0.3,
  513. "moveCacheSize": 16,
  514. "moveCacheLow": 10,
  515. "lowTicksPerMove": 250000,
  516. "enablePowerOnStartup": "1",
  517. "echoOnExecute": "1",
  518. "sendWaits": "1",
  519. "ackWithLineNumber": "1",
  520. "killMethod": 1,
  521. "useAdvance": "0",
  522. "useQuadraticAdvance": "0",
  523. "powerInverting": 0,
  524. "mirrorX": "0",
  525. "mirrorXMotor": {
  526. "name": "Extruder 1",
  527. "step": "ORIG_E1_STEP_PIN",
  528. "dir": "ORIG_E1_DIR_PIN",
  529. "enable": "ORIG_E1_ENABLE_PIN"
  530. },
  531. "mirrorY": "0",
  532. "mirrorYMotor": {
  533. "name": "Extruder 1",
  534. "step": "ORIG_E1_STEP_PIN",
  535. "dir": "ORIG_E1_DIR_PIN",
  536. "enable": "ORIG_E1_ENABLE_PIN"
  537. },
  538. "mirrorZ": 0,
  539. "mirrorZMotor": {
  540. "name": "Extruder 1",
  541. "step": "ORIG_E1_STEP_PIN",
  542. "dir": "ORIG_E1_DIR_PIN",
  543. "enable": "ORIG_E1_ENABLE_PIN"
  544. },
  545. "dittoPrinting": "0",
  546. "featureServos": "0",
  547. "servo0Pin": 11,
  548. "servo1Pin": -1,
  549. "servo2Pin": -1,
  550. "servo3Pin": -1,
  551. "featureWatchdog": "0",
  552. "hasHeatedBed": "0",
  553. "enableZProbing": "0",
  554. "extrudeMaxLength": 160,
  555. "homeOrder": "HOME_ORDER_ZXY",
  556. "featureController": 2,
  557. "uiPrinterName": "RepRap.cn",
  558. "uiPrinterCompany": "Himanshu madhavani",
  559. "uiPagesDuration": 4000,
  560. "uiAnimation": "0",
  561. "uiDisablePageswitch": "1",
  562. "uiAutoReturnAfter": 30000,
  563. "featureKeys": "0",
  564. "uiEncoderSpeed": 1,
  565. "uiKeyBouncetime": 10,
  566. "uiKeyFirstRepeat": 500,
  567. "uiKeyReduceRepeat": 50,
  568. "uiKeyMinRepeat": 50,
  569. "featureBeeper": "0",
  570. "uiPresetBedTempPLA": 60,
  571. "uiPresetBedABS": 110,
  572. "uiPresetExtruderPLA": 190,
  573. "uiPresetExtruderABS": 240,
  574. "uiMinHeatedBed": 30,
  575. "uiMaxHeatedBed": 120,
  576. "uiMinEtxruderTemp": 170,
  577. "uiMaxExtruderTemp": 260,
  578. "uiExtruderFeedrate": 2,
  579. "uiExtruderRetractDistance": 3,
  580. "uiSpeeddependentPositioning": "0",
  581. "maxBedTemperature": 120,
  582. "bedSensorType": 1,
  583. "bedSensorPin": "TEMP_1_PIN",
  584. "bedHeaterPin": "HEATER_1_PIN",
  585. "bedHeatManager": 0,
  586. "bedUpdateInterval": 5000,
  587. "bedPidDriveMin": 80,
  588. "bedPidDriveMax": 255,
  589. "bedPidP": 196,
  590. "bedPidI": 33,
  591. "bedPidD": 290,
  592. "bedPidMax": 255,
  593. "caseLightPin": -1,
  594. "caseLightDefaultOn": "1",
  595. "bedSkipIfWithin": 3,
  596. "gen1T0": 25,
  597. "gen1R0": 100000,
  598. "gen1Beta": 4036,
  599. "gen1MinTemp": -20,
  600. "gen1MaxTemp": 300,
  601. "gen1R1": 0,
  602. "gen1R2": 4700,
  603. "gen2T0": 25,
  604. "gen2R0": 100000,
  605. "gen2Beta": 4036,
  606. "gen2MinTemp": -20,
  607. "gen2MaxTemp": 300,
  608. "gen2R1": 0,
  609. "gen2R2": 4700,
  610. "gen3T0": 25,
  611. "gen3R0": 100000,
  612. "gen3Beta": 4036,
  613. "gen3MinTemp": -20,
  614. "gen3MaxTemp": 300,
  615. "gen3R1": 0,
  616. "gen3R2": 4700,
  617. "userTable0": {
  618. "r1": 0,
  619. "r2": 4700,
  620. "temps": [
  621.  
  622. ]
  623. },
  624. "userTable1": {
  625. "r1": 0,
  626. "r2": 4700,
  627. "temps": [
  628.  
  629. ]
  630. },
  631. "userTable2": {
  632. "r1": 0,
  633. "r2": 4700,
  634. "temps": [
  635.  
  636. ]
  637. },
  638. "tempHysteresis": 0,
  639. "pidControlRange": 10,
  640. "skipM109Within": 2,
  641. "extruderFanCoolTemp": 50,
  642. "minTemp": 150,
  643. "maxTemp": 275,
  644. "minDefectTemp": -10,
  645. "maxDefectTemp": 290,
  646. "arcSupport": "1",
  647. "featureMemoryPositionWatchdog": "1",
  648. "forceChecksum": "0",
  649. "sdExtendedDir": "1",
  650. "featureFanControl": "1",
  651. "fanPin": "ORIG_FAN_PIN",
  652. "scalePidToMax": "1",
  653. "zProbePin": -1,
  654. "zProbeBedDistance": 10,
  655. "zProbePullup": "0",
  656. "zProbeOnHigh": "0",
  657. "zProbeXOffset": 0,
  658. "zProbeYOffset": 0,
  659. "zProbeWaitBeforeTest": "0",
  660. "zProbeSpeed": 2,
  661. "zProbeXYSpeed": 150,
  662. "zProbeHeight": 40,
  663. "zProbeStartScript": "",
  664. "zProbeFinishedScript": "",
  665. "featureAutolevel": "1",
  666. "zProbeX1": 20,
  667. "zProbeY1": 20,
  668. "zProbeX2": 160,
  669. "zProbeY2": 20,
  670. "zProbeX3": 100,
  671. "zProbeY3": 160,
  672. "zProbeSwitchingDistance": 1,
  673. "zProbeRepetitions": 1,
  674. "sdSupport": "0",
  675. "sdCardDetectPin": -1,
  676. "sdCardDetectInverted": "0",
  677. "uiStartScreenDelay": 1000,
  678. "xEndstopBackMove": 5,
  679. "yEndstopBackMove": 5,
  680. "zEndstopBackMove": 5,
  681. "xEndstopRetestFactor": 3,
  682. "yEndstopRetestFactor": 3,
  683. "zEndstopRetestFactor": 3,
  684. "xMinPin": "ORIG_X_MIN_PIN",
  685. "yMinPin": "ORIG_Y_MIN_PIN",
  686. "zMinPin": "ORIG_Z_MIN_PIN",
  687. "xMaxPin": "ORIG_X_MAX_PIN",
  688. "yMaxPin": "ORIG_Y_MAX_PIN",
  689. "zMaxPin": "ORIG_Z_MAX_PIN",
  690. "deltaHomeOnPower": "0",
  691. "fanBoardPin": -1,
  692. "heaterPWMSpeed": 0,
  693. "featureBabystepping": "1",
  694. "babystepMultiplicator": 1,
  695. "hasMAX6675": false,
  696. "hasMAX31855": false,
  697. "hasGeneric1": false,
  698. "hasGeneric2": false,
  699. "hasGeneric3": false,
  700. "hasUser0": false,
  701. "hasUser1": false,
  702. "hasUser2": false,
  703. "numExtruder": 1,
  704. "version": 91.7
  705. }
  706. ========== End configuration string ==========
  707.  
  708. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement