Advertisement
Guest User

configuration.h

a guest
Oct 25th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.41 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 0
  56. #define XAXIS_STEPS_PER_MM 80
  57. #define YAXIS_STEPS_PER_MM 80
  58. #define ZAXIS_STEPS_PER_MM 80
  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 370
  63. #define EXT0_TEMPSENSOR_TYPE 1
  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 20
  93. #define SKIP_M109_IF_WITHIN 2
  94. #define SCALE_PID_TO_MAX 0
  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 true
  132. #define MIN_HARDWARE_ENDSTOP_X true
  133. #define ENDSTOP_PULLUP_Y_MIN true
  134. #define ENDSTOP_Y_MIN_INVERTING true
  135. #define MIN_HARDWARE_ENDSTOP_Y true
  136. #define ENDSTOP_PULLUP_Z_MIN true
  137. #define ENDSTOP_Z_MIN_INVERTING true
  138. #define MIN_HARDWARE_ENDSTOP_Z true
  139. #define ENDSTOP_PULLUP_X_MAX true
  140. #define ENDSTOP_X_MAX_INVERTING false
  141. #define MAX_HARDWARE_ENDSTOP_X false
  142. #define ENDSTOP_PULLUP_Y_MAX true
  143. #define ENDSTOP_Y_MAX_INVERTING false
  144. #define MAX_HARDWARE_ENDSTOP_Y false
  145. #define ENDSTOP_PULLUP_Z_MAX true
  146. #define ENDSTOP_Z_MAX_INVERTING false
  147. #define MAX_HARDWARE_ENDSTOP_Z false
  148. #define max_software_endstop_r true
  149.  
  150. #define min_software_endstop_x false
  151. #define min_software_endstop_y false
  152. #define min_software_endstop_z false
  153. #define max_software_endstop_x true
  154. #define max_software_endstop_y true
  155. #define max_software_endstop_z true
  156. #define ENDSTOP_X_BACK_MOVE 5
  157. #define ENDSTOP_Y_BACK_MOVE 5
  158. #define ENDSTOP_Z_BACK_MOVE 2
  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 120
  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_HOME_ON_POWER 0
  201.  
  202. #define MAX_DELTA_SEGMENTS_PER_LINE 24
  203. #define STEPPER_INACTIVE_TIME 360L
  204. #define MAX_INACTIVE_TIME 0L
  205. #define MAX_FEEDRATE_X 200
  206. #define MAX_FEEDRATE_Y 200
  207. #define MAX_FEEDRATE_Z 2
  208. #define HOMING_FEEDRATE_X 40
  209. #define HOMING_FEEDRATE_Y 40
  210. #define HOMING_FEEDRATE_Z 2
  211. #define HOMING_ORDER HOME_ORDER_ZXY
  212. #define ENABLE_BACKLASH_COMPENSATION 0
  213. #define X_BACKLASH 0
  214. #define Y_BACKLASH 0
  215. #define Z_BACKLASH 0
  216. #define RAMP_ACCELERATION 1
  217. #define STEPPER_HIGH_DELAY 0
  218. #define STEP_DOUBLER_FREQUENCY 12000
  219. #define ALLOW_QUADSTEPPING 1
  220. #define DOUBLE_STEP_DELAY 1 // time in microseconds
  221. #define MAX_HALFSTEP_INTERVAL 1999
  222. #define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_X 1000
  223. #define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_Y 1000
  224. #define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_Z 100
  225. #define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_X 1000
  226. #define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_Y 1000
  227. #define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_Z 100
  228. #define MAX_JERK 20
  229. #define MAX_ZJERK 0.3
  230. #define MOVE_CACHE_SIZE 16
  231. #define MOVE_CACHE_LOW 10
  232. #define LOW_TICKS_PER_MOVE 250000
  233. #define FEATURE_TWO_XSTEPPER 0
  234. #define X2_STEP_PIN ORIG_E1_STEP_PIN
  235. #define X2_DIR_PIN ORIG_E1_DIR_PIN
  236. #define X2_ENABLE_PIN E1_ENABLE_PIN
  237. #define FEATURE_TWO_YSTEPPER 0
  238. #define Y2_STEP_PIN ORIG_E1_STEP_PIN
  239. #define Y2_DIR_PIN ORIG_E1_DIR_PIN
  240. #define Y2_ENABLE_PIN E1_ENABLE_PIN
  241. #define FEATURE_TWO_ZSTEPPER 0
  242. #define Z2_STEP_PIN ORIG_E1_STEP_PIN
  243. #define Z2_DIR_PIN ORIG_E1_DIR_PIN
  244. #define Z2_ENABLE_PIN E1_ENABLE_PIN
  245. #define FEATURE_DITTO_PRINTING 0
  246.  
  247.  
  248. // ################# Misc. settings ##################
  249.  
  250. #define BAUDRATE 250000
  251. #define ENABLE_POWER_ON_STARTUP
  252. #define POWER_INVERTING 0
  253. #define KILL_METHOD 1
  254. #define GCODE_BUFFER_SIZE 2
  255. #define ACK_WITH_LINENUMBER
  256. #define WAITING_IDENTIFIER "wait"
  257. #define ECHO_ON_EXECUTE
  258. #define EEPROM_MODE 1
  259.  
  260. /* ======== Servos =======
  261. Control the servos with
  262. M340 P<servoId> S<pulseInUS> / ServoID = 0..3 pulseInUs = 500..2500
  263. Servos are controlled by a pulse width normally between 500 and 2500 with 1500ms in center position. 0 turns servo off.
  264. WARNING: Servos can draw a considerable amount of current. Make sure your system can handle this or you may risk your hardware!
  265. */
  266. #define FEATURE_SERVO 0
  267. #define SERVO0_PIN 11
  268. #define SERVO1_PIN -1
  269. #define SERVO2_PIN -1
  270. #define SERVO3_PIN -1
  271. #define FEATURE_WATCHDOG 0
  272.  
  273. // #################### Z-Probing #####################
  274.  
  275. #define FEATURE_Z_PROBE 1
  276. #define Z_PROBE_BED_DISTANCE 10
  277. #define Z_PROBE_PIN 63
  278. #define Z_PROBE_PULLUP 1
  279. #define Z_PROBE_ON_HIGH 1
  280. #define Z_PROBE_X_OFFSET 0
  281. #define Z_PROBE_Y_OFFSET 0
  282. #define Z_PROBE_WAIT_BEFORE_TEST 1
  283. #define Z_PROBE_SPEED 5
  284. #define Z_PROBE_XY_SPEED 150
  285. #define Z_PROBE_SWITCHING_DISTANCE 30
  286. #define Z_PROBE_REPETITIONS 1
  287. #define Z_PROBE_HEIGHT 40
  288. #define Z_PROBE_START_SCRIPT ""
  289. #define Z_PROBE_FINISHED_SCRIPT ""
  290. #define FEATURE_AUTOLEVEL 0
  291. #define Z_PROBE_X1 20
  292. #define Z_PROBE_Y1 20
  293. #define Z_PROBE_X2 160
  294. #define Z_PROBE_Y2 20
  295. #define Z_PROBE_X3 100
  296. #define Z_PROBE_Y3 160
  297.  
  298. #ifndef SDSUPPORT // Some boards have sd support on board. These define the values already in pins.h
  299. #define SDSUPPORT 0
  300. #define SDCARDDETECT -1
  301. #define SDCARDDETECTINVERTED 0
  302. #endif
  303. #define SD_EXTENDED_DIR 1 /** Show extended directory including file length. Don't use this with Pronterface! */
  304. #define ARC_SUPPORT 1
  305. #define FEATURE_MEMORY_POSITION 1
  306. #define FEATURE_CHECKSUM_FORCED 0
  307. #define FEATURE_FAN_CONTROL 1
  308. #define FEATURE_CONTROLLER 0
  309. #define UI_LANGUAGE 0
  310. #define UI_PRINTER_NAME "RepRap"
  311. #define UI_PRINTER_COMPANY "Home made"
  312. #define UI_PAGES_DURATION 4000
  313. #define UI_ANIMATION 1
  314. #define UI_SPEEDDEPENDENT_POSITIONING 0
  315. #define UI_DISABLE_AUTO_PAGESWITCH 1
  316. #define UI_AUTORETURN_TO_MENU_AFTER 30000
  317. #define FEATURE_UI_KEYS 0
  318. #define UI_ENCODER_SPEED 1
  319. #define UI_KEY_BOUNCETIME 10
  320. #define UI_KEY_FIRST_REPEAT 500
  321. #define UI_KEY_REDUCE_REPEAT 50
  322. #define UI_KEY_MIN_REPEAT 50
  323. #define FEATURE_BEEPER 0
  324. #define CASE_LIGHTS_PIN -1
  325. #define CASE_LIGHT_DEFAULT_ON 1
  326. #define UI_START_SCREEN_DELAY 1000
  327. /**
  328. Beeper sound definitions for short beeps during key actions
  329. and longer beeps for important actions.
  330. Parameter is delay in microseconds and the secons is the number of repetitions.
  331. Values must be in range 1..255
  332. */
  333. #define BEEPER_SHORT_SEQUENCE 2,2
  334. #define BEEPER_LONG_SEQUENCE 8,8
  335. #define UI_SET_PRESET_HEATED_BED_TEMP_PLA 60
  336. #define UI_SET_PRESET_EXTRUDER_TEMP_PLA 190
  337. #define UI_SET_PRESET_HEATED_BED_TEMP_ABS 110
  338. #define UI_SET_PRESET_EXTRUDER_TEMP_ABS 240
  339. #define UI_SET_MIN_HEATED_BED_TEMP 30
  340. #define UI_SET_MAX_HEATED_BED_TEMP 120
  341. #define UI_SET_MIN_EXTRUDER_TEMP 170
  342. #define UI_SET_MAX_EXTRUDER_TEMP 260
  343. #define UI_SET_EXTRUDER_FEEDRATE 2
  344. #define UI_SET_EXTRUDER_RETRACT_DISTANCE 3
  345.  
  346. #endif
  347.  
  348. /* Below you will find the configuration string, that created this Configuration.h
  349.  
  350. ========== Start configuration string ==========
  351. {
  352. "editMode": 1,
  353. "processor": 0,
  354. "baudrate": 250000,
  355. "xStepsPerMM": 80,
  356. "yStepsPerMM": 80,
  357. "zStepsPerMM": 80,
  358. "xInvert": 0,
  359. "xInvertEnable": 0,
  360. "eepromMode": 1,
  361. "yInvert": 0,
  362. "yInvertEnable": 0,
  363. "zInvert": 0,
  364. "zInvertEnable": 0,
  365. "extruder": [
  366. {
  367. "id": 0,
  368. "heatManager": 3,
  369. "pidDriveMin": 40,
  370. "pidDriveMax": 230,
  371. "pidMax": 255,
  372. "sensorType": 1,
  373. "sensorPin": "TEMP_0_PIN",
  374. "heaterPin": "HEATER_0_PIN",
  375. "maxFeedrate": 50,
  376. "startFeedrate": 20,
  377. "invert": "0",
  378. "invertEnable": "0",
  379. "acceleration": 5000,
  380. "watchPeriod": 1,
  381. "pidP": 7,
  382. "pidI": 2,
  383. "pidD": 40,
  384. "advanceK": 0,
  385. "advanceL": 0,
  386. "waitRetractTemp": 150,
  387. "waitRetractUnits": 0,
  388. "waitRetract": 0,
  389. "stepsPerMM": 370,
  390. "coolerPin": -1,
  391. "coolerSpeed": 255,
  392. "selectCommands": "",
  393. "deselectCommands": "",
  394. "xOffset": 0,
  395. "yOffset": 0,
  396. "xOffsetSteps": 0,
  397. "yOffsetSteps": 0,
  398. "stepper": {
  399. "name": "Extruder 0",
  400. "step": "ORIG_E0_STEP_PIN",
  401. "dir": "ORIG_E0_DIR_PIN",
  402. "enable": "E0_ENABLE_PIN"
  403. },
  404. "advanceBacklashSteps": 0
  405. }
  406. ],
  407. "uiLanguage": 0,
  408. "uiController": 0,
  409. "xMinEndstop": 1,
  410. "yMinEndstop": 1,
  411. "zMinEndstop": 1,
  412. "xMaxEndstop": 0,
  413. "yMaxEndstop": 0,
  414. "zMaxEndstop": 0,
  415. "motherboard": 33,
  416. "driveSystem": 0,
  417. "xMaxSpeed": 200,
  418. "xHomingSpeed": 40,
  419. "xTravelAcceleration": 1000,
  420. "xPrintAcceleration": 1000,
  421. "yMaxSpeed": 200,
  422. "yHomingSpeed": 40,
  423. "yTravelAcceleration": 1000,
  424. "yPrintAcceleration": 1000,
  425. "zMaxSpeed": 2,
  426. "zHomingSpeed": 2,
  427. "zTravelAcceleration": 100,
  428. "zPrintAcceleration": 100,
  429. "xMotor": {
  430. "name": "X motor",
  431. "step": "ORIG_X_STEP_PIN",
  432. "dir": "ORIG_X_DIR_PIN",
  433. "enable": "ORIG_X_ENABLE_PIN"
  434. },
  435. "yMotor": {
  436. "name": "Y motor",
  437. "step": "ORIG_Y_STEP_PIN",
  438. "dir": "ORIG_Y_DIR_PIN",
  439. "enable": "ORIG_Y_ENABLE_PIN"
  440. },
  441. "zMotor": {
  442. "name": "Z motor",
  443. "step": "ORIG_Z_STEP_PIN",
  444. "dir": "ORIG_Z_DIR_PIN",
  445. "enable": "ORIG_Z_ENABLE_PIN"
  446. },
  447. "enableBacklash": "0",
  448. "backlashX": 0,
  449. "backlashY": 0,
  450. "backlashZ": 0,
  451. "stepperInactiveTime": 360,
  452. "maxInactiveTime": 0,
  453. "xMinPos": 0,
  454. "yMinPos": 0,
  455. "zMinPos": 0,
  456. "xLength": 200,
  457. "yLength": 200,
  458. "zLength": 120,
  459. "alwaysCheckEndstops": "1",
  460. "disableX": "0",
  461. "disableY": "0",
  462. "disableZ": "0",
  463. "disableE": "0",
  464. "xHomeDir": "-1",
  465. "yHomeDir": "-1",
  466. "zHomeDir": "-1",
  467. "xEndstopBack": 1,
  468. "yEndstopBack": 1,
  469. "zEndstopBack": 0,
  470. "deltaSegmentsPerSecondPrint": 180,
  471. "deltaSegmentsPerSecondTravel": 70,
  472. "deltaDiagonalRod": 445,
  473. "deltaHorizontalRadius": 209.25,
  474. "deltaAlphaA": 210,
  475. "deltaAlphaB": 330,
  476. "deltaAlphaC": 90,
  477. "deltaDiagonalCorrA": 0,
  478. "deltaDiagonalCorrB": 0,
  479. "deltaDiagonalCorrC": 0,
  480. "deltaMaxRadius": 150,
  481. "deltaRadiusCorrA": 0,
  482. "deltaRadiusCorrB": 0,
  483. "deltaRadiusCorrC": 0,
  484. "deltaXOffsetSteps": 0,
  485. "deltaYOffsetSteps": 0,
  486. "deltaZOffsetSteps": 0,
  487. "deltaSegmentsPerLine": 24,
  488. "stepperHighDelay": 0,
  489. "stepDoublerFrequency": 12000,
  490. "allowQuadstepping": "1",
  491. "doubleStepDelay": 1,
  492. "maxHalfstepInterval": 1999,
  493. "maxJerk": 20,
  494. "maxZJerk": 0.3,
  495. "moveCacheSize": 16,
  496. "moveCacheLow": 10,
  497. "lowTicksPerMove": 250000,
  498. "enablePowerOnStartup": "1",
  499. "echoOnExecute": "1",
  500. "sendWaits": "1",
  501. "ackWithLineNumber": "1",
  502. "killMethod": 1,
  503. "useAdvance": "0",
  504. "useQuadraticAdvance": "0",
  505. "powerInverting": 0,
  506. "mirrorX": 0,
  507. "mirrorXMotor": {
  508. "name": "Extruder 1",
  509. "step": "ORIG_E1_STEP_PIN",
  510. "dir": "ORIG_E1_DIR_PIN",
  511. "enable": "E1_ENABLE_PIN"
  512. },
  513. "mirrorY": 0,
  514. "mirrorYMotor": {
  515. "name": "Extruder 1",
  516. "step": "ORIG_E1_STEP_PIN",
  517. "dir": "ORIG_E1_DIR_PIN",
  518. "enable": "E1_ENABLE_PIN"
  519. },
  520. "mirrorZ": 0,
  521. "mirrorZMotor": {
  522. "name": "Extruder 1",
  523. "step": "ORIG_E1_STEP_PIN",
  524. "dir": "ORIG_E1_DIR_PIN",
  525. "enable": "E1_ENABLE_PIN"
  526. },
  527. "dittoPrinting": "0",
  528. "featureServos": "0",
  529. "servo0Pin": 11,
  530. "servo1Pin": -1,
  531. "servo2Pin": -1,
  532. "servo3Pin": -1,
  533. "featureWatchdog": "0",
  534. "hasHeatedBed": "0",
  535. "enableZProbing": "1",
  536. "extrudeMaxLength": 160,
  537. "homeOrder": "HOME_ORDER_ZXY",
  538. "featureController": 0,
  539. "uiPrinterName": "RepRap",
  540. "uiPrinterCompany": "Home made",
  541. "uiPagesDuration": 4000,
  542. "uiAnimation": "1",
  543. "uiDisablePageswitch": "1",
  544. "uiAutoReturnAfter": 30000,
  545. "featureKeys": "0",
  546. "uiEncoderSpeed": 1,
  547. "uiKeyBouncetime": 10,
  548. "uiKeyFirstRepeat": 500,
  549. "uiKeyReduceRepeat": 50,
  550. "uiKeyMinRepeat": 50,
  551. "featureBeeper": "0",
  552. "uiPresetBedTempPLA": 60,
  553. "uiPresetBedABS": 110,
  554. "uiPresetExtruderPLA": 190,
  555. "uiPresetExtruderABS": 240,
  556. "uiMinHeatedBed": 30,
  557. "uiMaxHeatedBed": 120,
  558. "uiMinEtxruderTemp": 170,
  559. "uiMaxExtruderTemp": 260,
  560. "uiExtruderFeedrate": 2,
  561. "uiExtruderRetractDistance": 3,
  562. "uiSpeeddependentPositioning": "0",
  563. "maxBedTemperature": 120,
  564. "bedSensorType": 1,
  565. "bedSensorPin": "TEMP_1_PIN",
  566. "bedHeaterPin": "HEATER_1_PIN",
  567. "bedHeatManager": 0,
  568. "bedUpdateInterval": 5000,
  569. "bedPidDriveMin": 80,
  570. "bedPidDriveMax": 255,
  571. "bedPidP": 196,
  572. "bedPidI": 33,
  573. "bedPidD": 290,
  574. "bedPidMax": 255,
  575. "caseLightPin": -1,
  576. "caseLightDefaultOn": "1",
  577. "bedSkipIfWithin": 3,
  578. "gen1T0": 25,
  579. "gen1R0": 100000,
  580. "gen1Beta": 4036,
  581. "gen1MinTemp": -20,
  582. "gen1MaxTemp": 300,
  583. "gen1R1": 0,
  584. "gen1R2": 4700,
  585. "gen2T0": 25,
  586. "gen2R0": 100000,
  587. "gen2Beta": 4036,
  588. "gen2MinTemp": -20,
  589. "gen2MaxTemp": 300,
  590. "gen2R1": 0,
  591. "gen2R2": 4700,
  592. "gen3T0": 25,
  593. "gen3R0": 100000,
  594. "gen3Beta": 4036,
  595. "gen3MinTemp": -20,
  596. "gen3MaxTemp": 300,
  597. "gen3R1": 0,
  598. "gen3R2": 4700,
  599. "userTable0": {
  600. "r1": 0,
  601. "r2": 4700,
  602. "temps": [
  603.  
  604. ]
  605. },
  606. "userTable1": {
  607. "r1": 0,
  608. "r2": 4700,
  609. "temps": [
  610.  
  611. ]
  612. },
  613. "userTable2": {
  614. "r1": 0,
  615. "r2": 4700,
  616. "temps": [
  617.  
  618. ]
  619. },
  620. "tempHysteresis": 0,
  621. "pidControlRange": 20,
  622. "skipM109Within": 2,
  623. "extruderFanCoolTemp": 50,
  624. "minTemp": 150,
  625. "maxTemp": 275,
  626. "minDefectTemp": -10,
  627. "maxDefectTemp": 290,
  628. "arcSupport": "1",
  629. "featureMemoryPositionWatchdog": "1",
  630. "forceChecksum": "0",
  631. "sdExtendedDir": "1",
  632. "featureFanControl": "1",
  633. "fanPin": "ORIG_FAN_PIN",
  634. "scalePidToMax": 0,
  635. "zProbePin": 63,
  636. "zProbeBedDistance": 10,
  637. "zProbePullup": "1",
  638. "zProbeOnHigh": "1",
  639. "zProbeXOffset": 0,
  640. "zProbeYOffset": 0,
  641. "zProbeWaitBeforeTest": "1",
  642. "zProbeSpeed": 5,
  643. "zProbeXYSpeed": 150,
  644. "zProbeHeight": 40,
  645. "zProbeStartScript": "",
  646. "zProbeFinishedScript": "",
  647. "featureAutolevel": "0",
  648. "zProbeX1": 20,
  649. "zProbeY1": 20,
  650. "zProbeX2": 160,
  651. "zProbeY2": 20,
  652. "zProbeX3": 100,
  653. "zProbeY3": 160,
  654. "zProbeSwitchingDistance": 30,
  655. "zProbeRepetitions": 1,
  656. "sdSupport": "0",
  657. "sdCardDetectPin": -1,
  658. "sdCardDetectInverted": "0",
  659. "uiStartScreenDelay": 1000,
  660. "xEndstopBackMove": 5,
  661. "yEndstopBackMove": 5,
  662. "zEndstopBackMove": 2,
  663. "xEndstopRetestFactor": 3,
  664. "yEndstopRetestFactor": 3,
  665. "zEndstopRetestFactor": 3,
  666. "xMinPin": "ORIG_X_MIN_PIN",
  667. "yMinPin": "ORIG_Y_MIN_PIN",
  668. "zMinPin": "ORIG_Z_MIN_PIN",
  669. "xMaxPin": "ORIG_X_MAX_PIN",
  670. "yMaxPin": "ORIG_Y_MAX_PIN",
  671. "zMaxPin": "ORIG_Z_MAX_PIN",
  672. "deltaHomeOnPower": "0",
  673. "fanBoardPin": -1,
  674. "heaterPWMSpeed": 0,
  675. "featureBabystepping": "1",
  676. "babystepMultiplicator": 1,
  677. "hasMAX6675": false,
  678. "hasMAX31855": false,
  679. "hasGeneric1": false,
  680. "hasGeneric2": false,
  681. "hasGeneric3": false,
  682. "hasUser0": false,
  683. "hasUser1": false,
  684. "hasUser2": false,
  685. "numExtruder": 1,
  686. "version": 91.7
  687. }
  688. ========== End configuration string ==========
  689.  
  690. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement