1. /*
  2. This file is part of Repetier-Firmware.
  3. Repetier-Firmware is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 3 of the License, or
  6. (at your option) any later version.
  7. Repetier-Firmware is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with Repetier-Firmware. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. #ifndef CONFIGURATION_H
  15. #define CONFIGURATION_H
  16. /**************** READ FIRST ************************
  17. This configuration file was created with the configuration tool. For that
  18. reason, it does not contain the same informations as the original Configuration.h file.
  19. It misses the comments and unused parts. Open this file file in the config tool
  20. to see and change the data. You can also upload it to newer/older versions. The system
  21. will silently add new options, so compilation continues to work.
  22. This file is optimized for version 0.92
  23. generator: http://www.repetier.com/firmware/v092/
  24. If you are in doubt which named functions use which pins on your board, please check the
  25. pins.h for the used name->pin assignments and your board documentation to verify it is
  26. as you expect.
  27. */
  28. #define NUM_EXTRUDER 1
  29. #define MOTHERBOARD 33
  30. #include "pins.h"
  31. // ################## EDIT THESE SETTINGS MANUALLY ################
  32. // ################ END MANUAL SETTINGS ##########################
  33. #undef FAN_PIN
  34. #define FAN_PIN HEATER_2_PIN
  35. #undef FAN_BOARD_PIN
  36. #define FAN_BOARD_PIN -1
  37. #define BOARD_FAN_SPEED 255
  38. #define FAN_THERMO_PIN -1
  39. #define FAN_THERMO_MIN_PWM 128
  40. #define FAN_THERMO_MAX_PWM 255
  41. #define FAN_THERMO_MIN_TEMP 45
  42. #define FAN_THERMO_MAX_TEMP 60
  43. #define FAN_THERMO_THERMISTOR_PIN -1
  44. #define FAN_THERMO_THERMISTOR_TYPE 1
  45. #undef X_MAX_PIN
  46. #define X_MAX_PIN -1
  47. #undef Y_MAX_PIN
  48. #define Y_MAX_PIN -1
  49. #undef Z_MAX_PIN
  50. #define Z_MAX_PIN -1
  51. //#define EXTERNALSERIAL use Arduino serial library instead of build in. Requires more ram, has only 63 byte input buffer.
  52. // Uncomment the following line if you are using Arduino compatible firmware made for Arduino version earlier then 1.0
  53. // If it is incompatible you will get compiler errors about write functions not being compatible!
  54. //#define COMPAT_PRE1
  55. #define BLUETOOTH_SERIAL -1
  56. #define BLUETOOTH_BAUD 115200
  57. #define MIXING_EXTRUDER 0
  58. #define DRIVE_SYSTEM 0
  59. #define XAXIS_STEPS_PER_MM 200
  60. #define YAXIS_STEPS_PER_MM 200
  61. #define ZAXIS_STEPS_PER_MM 800
  62. #define EXTRUDER_FAN_COOL_TEMP 50
  63. #define PDM_FOR_EXTRUDER 0
  64. #define PDM_FOR_COOLER 0
  65. #define DECOUPLING_TEST_MAX_HOLD_VARIANCE 20
  66. #define DECOUPLING_TEST_MIN_TEMP_RISE 1
  67. #define KILL_IF_SENSOR_DEFECT 0
  68. #define RETRACT_ON_PAUSE 2
  69. #define PAUSE_START_COMMANDS ""
  70. #define PAUSE_END_COMMANDS ""
  71. #define SHARED_EXTRUDER_HEATER 0
  72. #define EXT0_X_OFFSET 0
  73. #define EXT0_Y_OFFSET 0
  74. #define EXT0_Z_OFFSET 0
  75. #define EXT0_STEPS_PER_MM 180
  76. #define EXT0_TEMPSENSOR_TYPE 1
  77. #define EXT0_TEMPSENSOR_PIN TEMP_0_PIN
  78. #define EXT0_HEATER_PIN HEATER_0_PIN
  79. #define EXT0_STEP_PIN ORIG_E0_STEP_PIN
  80. #define EXT0_DIR_PIN ORIG_E0_DIR_PIN
  81. #define EXT0_INVERSE 1
  82. #define EXT0_ENABLE_PIN ORIG_E0_ENABLE_PIN
  83. #define EXT0_ENABLE_ON 0
  84. #define EXT0_MIRROR_STEPPER 0
  85. #define EXT0_STEP2_PIN ORIG_E0_STEP_PIN
  86. #define EXT0_DIR2_PIN ORIG_E0_DIR_PIN
  87. #define EXT0_INVERSE2 0
  88. #define EXT0_ENABLE2_PIN ORIG_E0_ENABLE_PIN
  89. #define EXT0_MAX_FEEDRATE 50
  90. #define EXT0_MAX_START_FEEDRATE 20
  91. #define EXT0_MAX_ACCELERATION 5000
  92. #define EXT0_HEAT_MANAGER 1
  93. #define EXT0_WATCHPERIOD 1
  94. #define EXT0_PID_INTEGRAL_DRIVE_MAX 230
  95. #define EXT0_PID_INTEGRAL_DRIVE_MIN 50
  96. #define EXT0_PID_PGAIN_OR_DEAD_TIME 7
  97. #define EXT0_PID_I 2
  98. #define EXT0_PID_D 40
  99. #define EXT0_PID_MAX 255
  100. #define EXT0_ADVANCE_K 0
  101. #define EXT0_ADVANCE_L 0
  102. #define EXT0_ADVANCE_BACKLASH_STEPS 0
  103. #define EXT0_WAIT_RETRACT_TEMP 150
  104. #define EXT0_WAIT_RETRACT_UNITS 0
  105. #define EXT0_SELECT_COMMANDS ""
  106. #define EXT0_DESELECT_COMMANDS ""
  107. #define EXT0_EXTRUDER_COOLER_PIN -1
  108. #define EXT0_EXTRUDER_COOLER_SPEED 255
  109. #define EXT0_DECOUPLE_TEST_PERIOD 12000
  110. #define EXT0_JAM_PIN -1
  111. #define EXT0_JAM_PULLUP 0
  112. #define FEATURE_RETRACTION 1
  113. #define AUTORETRACT_ENABLED 0
  114. #define RETRACTION_LENGTH 3
  115. #define RETRACTION_LONG_LENGTH 13
  116. #define RETRACTION_SPEED 40
  117. #define RETRACTION_Z_LIFT 0
  118. #define RETRACTION_UNDO_EXTRA_LENGTH 0
  119. #define RETRACTION_UNDO_EXTRA_LONG_LENGTH 0
  120. #define RETRACTION_UNDO_SPEED 20
  121. #define FILAMENTCHANGE_X_POS 0
  122. #define FILAMENTCHANGE_Y_POS 0
  123. #define FILAMENTCHANGE_Z_ADD 2
  124. #define FILAMENTCHANGE_REHOME 1
  125. #define FILAMENTCHANGE_SHORTRETRACT 5
  126. #define FILAMENTCHANGE_LONGRETRACT 50
  127. #define JAM_STEPS 220
  128. #define JAM_SLOWDOWN_STEPS 320
  129. #define JAM_SLOWDOWN_TO 70
  130. #define JAM_ERROR_STEPS 500
  131. #define JAM_MIN_STEPS 10
  132. #define JAM_ACTION 1
  133. #define RETRACT_DURING_HEATUP true
  134. #define PID_CONTROL_RANGE 20
  135. #define SKIP_M109_IF_WITHIN 2
  136. #define SCALE_PID_TO_MAX 1
  137. #define TEMP_HYSTERESIS 0
  138. #define EXTRUDE_MAXLENGTH 160
  139. #define NUM_TEMPS_USERTHERMISTOR0 0
  140. #define USER_THERMISTORTABLE0 {}
  141. #define NUM_TEMPS_USERTHERMISTOR1 0
  142. #define USER_THERMISTORTABLE1 {}
  143. #define NUM_TEMPS_USERTHERMISTOR2 0
  144. #define USER_THERMISTORTABLE2 {}
  145. #define GENERIC_THERM_VREF 5
  146. #define GENERIC_THERM_NUM_ENTRIES 33
  147. #define HEATER_PWM_SPEED 0
  148. // ############# Heated bed configuration ########################
  149. #define HAVE_HEATED_BED 1
  150. #define HEATED_BED_MAX_TEMP 110
  151. #define SKIP_M190_IF_WITHIN 3
  152. #define HEATED_BED_SENSOR_TYPE 1
  153. #define HEATED_BED_SENSOR_PIN TEMP_2_PIN
  154. #define HEATED_BED_HEATER_PIN HEATER_1_PIN
  155. #define HEATED_BED_SET_INTERVAL 5000
  156. #define HEATED_BED_HEAT_MANAGER 0
  157. #define HEATED_BED_PID_INTEGRAL_DRIVE_MAX 255
  158. #define HEATED_BED_PID_INTEGRAL_DRIVE_MIN 80
  159. #define HEATED_BED_PID_PGAIN_OR_DEAD_TIME 196
  160. #define HEATED_BED_PID_IGAIN 33
  161. #define HEATED_BED_PID_DGAIN 290
  162. #define HEATED_BED_PID_MAX 255
  163. #define HEATED_BED_DECOUPLE_TEST_PERIOD 300000
  164. #define MIN_EXTRUDER_TEMP 150
  165. #define MAXTEMP 275
  166. #define MIN_DEFECT_TEMPERATURE -10
  167. #define MAX_DEFECT_TEMPERATURE 290
  168. // ##########################################################################################
  169. // ## Laser configuration ##
  170. // ##########################################################################################
  171. /*
  172. If the firmware is in laser mode, it can control a laser output to cut or engrave materials.
  173. Please use this feature only if you know about safety and required protection. Lasers are
  174. dangerous and can hurt or make you blind!!!
  175. The default laser driver only supports laser on and off. Here you control the eĆ­ntensity with
  176. your feedrate. For exchangeable diode lasers this is normally enough. If you need more control
  177. you can set the intensity in a range 0-255 with a custom extension to the driver. See driver.h
  178. and comments on how to extend the functions non invasive with our event system.
  179. If you have a laser - powder system you will like your E override. If moves contain a
  180. increasing extruder position it will laser that move. With this trick you can
  181. use existing fdm slicers to laser the output. Laser width is extrusion width.
  182. Other tools may use M3 and M5 to enable/disable laser. Here G1/G2/G3 moves have laser enabled
  183. and G0 moves have it disables.
  184. In any case, laser only enables while moving. At the end of a move it gets
  185. automatically disabled.
  186. */
  187. #define SUPPORT_LASER 0
  188. #define LASER_PIN -1
  189. #define LASER_ON_HIGH 1
  190. // ## CNC configuration ##
  191. /*
  192. If the firmware is in CNC mode, it can control a mill with M3/M4/M5. It works
  193. similar to laser mode, but mill keeps enabled during G0 moves and it allows
  194. setting rpm (only with event extension that supports this) and milling direction.
  195. It also can add a delay to wait for spindle to run on full speed.
  196. */
  197. #define SUPPORT_CNC 0
  198. #define CNC_WAIT_ON_ENABLE 300
  199. #define CNC_WAIT_ON_DISABLE 0
  200. #define CNC_ENABLE_PIN -1
  201. #define CNC_ENABLE_WITH 1
  202. #define CNC_DIRECTION_PIN -1
  203. #define CNC_DIRECTION_CW 1
  204. #define DEFAULT_PRINTER_MODE 0
  205. // ################ Endstop configuration #####################
  206. #define ENDSTOP_PULLUP_X_MIN true
  207. #define ENDSTOP_X_MIN_INVERTING true
  208. #define MIN_HARDWARE_ENDSTOP_X true
  209. #define ENDSTOP_PULLUP_Y_MIN true
  210. #define ENDSTOP_Y_MIN_INVERTING true
  211. #define MIN_HARDWARE_ENDSTOP_Y true
  212. #define ENDSTOP_PULLUP_Z_MIN false
  213. #define ENDSTOP_Z_MIN_INVERTING true
  214. #define MIN_HARDWARE_ENDSTOP_Z false
  215. #define ENDSTOP_PULLUP_X_MAX true
  216. #define ENDSTOP_X_MAX_INVERTING false
  217. #define MAX_HARDWARE_ENDSTOP_X false
  218. #define ENDSTOP_PULLUP_Y_MAX true
  219. #define ENDSTOP_Y_MAX_INVERTING false
  220. #define MAX_HARDWARE_ENDSTOP_Y false
  221. #define ENDSTOP_PULLUP_Z_MAX true
  222. #define ENDSTOP_Z_MAX_INVERTING false
  223. #define MAX_HARDWARE_ENDSTOP_Z false
  224. #define max_software_endstop_r true
  225. #define min_software_endstop_x false
  226. #define min_software_endstop_y false
  227. #define min_software_endstop_z false
  228. #define max_software_endstop_x true
  229. #define max_software_endstop_y true
  230. #define max_software_endstop_z true
  231. #define ENDSTOP_X_BACK_MOVE 5
  232. #define ENDSTOP_Y_BACK_MOVE 5
  233. #define ENDSTOP_Z_BACK_MOVE 2
  234. #define ENDSTOP_X_RETEST_REDUCTION_FACTOR 3
  235. #define ENDSTOP_Y_RETEST_REDUCTION_FACTOR 3
  236. #define ENDSTOP_Z_RETEST_REDUCTION_FACTOR 3
  237. #define ENDSTOP_X_BACK_ON_HOME 5
  238. #define ENDSTOP_Y_BACK_ON_HOME 5
  239. #define ENDSTOP_Z_BACK_ON_HOME 0
  240. #define ALWAYS_CHECK_ENDSTOPS 1
  241. // ################# XYZ movements ###################
  242. #define X_ENABLE_ON 0
  243. #define Y_ENABLE_ON 0
  244. #define Z_ENABLE_ON 0
  245. #define DISABLE_X 0
  246. #define DISABLE_Y 0
  247. #define DISABLE_Z 0
  248. #define DISABLE_E 0
  249. #define INVERT_X_DIR 1
  250. #define INVERT_Y_DIR 1
  251. #define INVERT_Z_DIR 0
  252. #define X_HOME_DIR -1
  253. #define Y_HOME_DIR -1
  254. #define Z_HOME_DIR -1
  255. #define X_MAX_LENGTH 245
  256. #define Y_MAX_LENGTH 210
  257. #define Z_MAX_LENGTH 230
  258. #define X_MIN_POS -38
  259. #define Y_MIN_POS -7
  260. #define Z_MIN_POS 0
  261. #define DISTORTION_CORRECTION 0
  262. #define DISTORTION_CORRECTION_POINTS 5
  263. #define DISTORTION_CORRECTION_R 100
  264. #define DISTORTION_PERMANENT 1
  265. #define DISTORTION_UPDATE_FREQUENCY 15
  266. #define DISTORTION_START_DEGRADE 0.5
  267. #define DISTORTION_END_HEIGHT 1
  268. #define DISTORTION_EXTRAPOLATE_CORNERS 0
  269. #define DISTORTION_XMIN 10
  270. #define DISTORTION_YMIN 10
  271. #define DISTORTION_XMAX 190
  272. #define DISTORTION_YMAX 190
  273. // ##########################################################################################
  274. // ## Movement settings ##
  275. // ##########################################################################################
  276. #define FEATURE_BABYSTEPPING 1
  277. #define BABYSTEP_MULTIPLICATOR 1
  278. #define DELTA_SEGMENTS_PER_SECOND_PRINT 180 // Move accurate setting for print moves
  279. #define DELTA_SEGMENTS_PER_SECOND_MOVE 70 // Less accurate setting for other moves
  280. #define EXACT_DELTA_MOVES 1
  281. // Delta settings
  282. #define DELTA_HOME_ON_POWER 0
  283. #define DELTASEGMENTS_PER_PRINTLINE 24
  284. #define STEPPER_INACTIVE_TIME 360L
  285. #define MAX_INACTIVE_TIME 0L
  286. #define MAX_FEEDRATE_X 200
  287. #define MAX_FEEDRATE_Y 200
  288. #define MAX_FEEDRATE_Z 2
  289. #define HOMING_FEEDRATE_X 40
  290. #define HOMING_FEEDRATE_Y 40
  291. #define HOMING_FEEDRATE_Z 2
  292. #define HOMING_ORDER HOME_ORDER_XYZ
  293. #define ZHOME_MIN_TEMPERATURE 0
  294. #define ZHOME_HEAT_ALL 1
  295. #define ZHOME_HEAT_HEIGHT 20
  296. #define ZHOME_X_POS 110
  297. #define ZHOME_Y_POS 110
  298. #define ENABLE_BACKLASH_COMPENSATION 0
  299. #define X_BACKLASH 0
  300. #define Y_BACKLASH 0
  301. #define Z_BACKLASH 0
  302. #define RAMP_ACCELERATION 1
  303. #define STEPPER_HIGH_DELAY 0
  304. #define DIRECTION_DELAY 0
  305. #define STEP_DOUBLER_FREQUENCY 12000
  306. #define ALLOW_QUADSTEPPING 1
  307. #define DOUBLE_STEP_DELAY 0 // time in microseconds
  308. #define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_X 1000
  309. #define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_Y 1000
  310. #define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_Z 100
  311. #define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_X 1000
  312. #define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_Y 1000
  313. #define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_Z 100
  314. #define INTERPOLATE_ACCELERATION_WITH_Z 0
  315. #define ACCELERATION_FACTOR_TOP 100
  316. #define MAX_JERK 20
  317. #define MAX_ZJERK 0.3
  318. #define PRINTLINE_CACHE_SIZE 16
  319. #define MOVE_CACHE_LOW 10
  320. #define LOW_TICKS_PER_MOVE 250000
  321. #define EXTRUDER_SWITCH_XY_SPEED 100
  322. #define DUAL_X_AXIS 0
  323. #define FEATURE_TWO_XSTEPPER 0
  324. #define X2_STEP_PIN ORIG_E1_STEP_PIN
  325. #define X2_DIR_PIN ORIG_E1_DIR_PIN
  326. #define X2_ENABLE_PIN ORIG_E1_ENABLE_PIN
  327. #define FEATURE_TWO_YSTEPPER 0
  328. #define Y2_STEP_PIN ORIG_E1_STEP_PIN
  329. #define Y2_DIR_PIN ORIG_E1_DIR_PIN
  330. #define Y2_ENABLE_PIN ORIG_E1_ENABLE_PIN
  331. #define FEATURE_TWO_ZSTEPPER 0
  332. #define Z2_STEP_PIN ORIG_E1_STEP_PIN
  333. #define Z2_DIR_PIN ORIG_E1_DIR_PIN
  334. #define Z2_ENABLE_PIN ORIG_E1_ENABLE_PIN
  335. #define FEATURE_THREE_ZSTEPPER 0
  336. #define Z3_STEP_PIN ORIG_E2_STEP_PIN
  337. #define Z3_DIR_PIN ORIG_E2_DIR_PIN
  338. #define Z3_ENABLE_PIN ORIG_E2_ENABLE_PIN
  339. #define FEATURE_DITTO_PRINTING 0
  340. #define USE_ADVANCE 0
  341. #define ENABLE_QUADRATIC_ADVANCE 0
  342. // ################# Misc. settings ##################
  343. #define BAUDRATE 115200
  344. #define ENABLE_POWER_ON_STARTUP 1
  345. #define POWER_INVERTING 0
  346. #define KILL_METHOD 1
  347. #define ACK_WITH_LINENUMBER 1
  348. #define ECHO_ON_EXECUTE 1
  349. #define EEPROM_MODE 1
  350. #undef PS_ON_PIN
  351. #define PS_ON_PIN ORIG_PS_ON_PIN
  352. #define JSON_OUTPUT 0
  353. /* ======== Servos =======
  354. Control the servos with
  355. M340 P<servoId> S<pulseInUS> / ServoID = 0..3 pulseInUs = 500..2500
  356. Servos are controlled by a pulse width normally between 500 and 2500 with 1500ms in center position. 0 turns servo off.
  357. WARNING: Servos can draw a considerable amount of current. Make sure your system can handle this or you may risk your hardware!
  358. */
  359. #define FEATURE_SERVO 0
  360. #define SERVO0_PIN 11
  361. #define SERVO1_PIN -1
  362. #define SERVO2_PIN -1
  363. #define SERVO3_PIN -1
  364. #define SERVO0_NEUTRAL_POS -1
  365. #define SERVO1_NEUTRAL_POS -1
  366. #define SERVO2_NEUTRAL_POS -1
  367. #define SERVO3_NEUTRAL_POS -1
  368. #define UI_SERVO_CONTROL 0
  369. #define FAN_KICKSTART_TIME 200
  370. #define FEATURE_WATCHDOG 0
  371. // #################### Z-Probing #####################
  372. #define Z_PROBE_Z_OFFSET -0.1
  373. #define Z_PROBE_Z_OFFSET_MODE 0
  374. #define UI_BED_COATING 1
  375. #define FEATURE_Z_PROBE true
  376. #define Z_PROBE_BED_DISTANCE 0
  377. #define Z_PROBE_PIN ORIG_Z_MIN_PIN
  378. #define Z_PROBE_PULLUP 0
  379. #define Z_PROBE_ON_HIGH 0
  380. #define Z_PROBE_X_OFFSET -25
  381. #define Z_PROBE_Y_OFFSET -25
  382. #define Z_PROBE_WAIT_BEFORE_TEST 0
  383. #define Z_PROBE_SPEED 5
  384. #define Z_PROBE_XY_SPEED 150
  385. #define Z_PROBE_SWITCHING_DISTANCE 5
  386. #define Z_PROBE_REPETITIONS 5
  387. #define Z_PROBE_HEIGHT 15
  388. #define Z_PROBE_START_SCRIPT "G1 X100 Y100"
  389. #define Z_PROBE_FINISHED_SCRIPT ""
  390. #define Z_PROBE_REQUIRES_HEATING 0
  391. #define Z_PROBE_MIN_TEMPERATURE 150
  392. #define FEATURE_AUTOLEVEL true
  393. #define Z_PROBE_X1 20
  394. #define Z_PROBE_Y1 20
  395. #define Z_PROBE_X2 160
  396. #define Z_PROBE_Y2 20
  397. #define Z_PROBE_X3 100
  398. #define Z_PROBE_Y3 160
  399. #define BED_LEVELING_METHOD 0
  400. #define BED_CORRECTION_METHOD 0
  401. #define BED_LEVELING_GRID_SIZE 5
  402. #define BED_LEVELING_REPETITIONS 5
  403. #define BED_MOTOR_1_X 0
  404. #define BED_MOTOR_1_Y 0
  405. #define BED_MOTOR_2_X 200
  406. #define BED_MOTOR_2_Y 0
  407. #define BED_MOTOR_3_X 100
  408. #define BED_MOTOR_3_Y 200
  409. #define BENDING_CORRECTION_A 0
  410. #define BENDING_CORRECTION_B 0
  411. #define BENDING_CORRECTION_C 0
  412. #define FEATURE_AXISCOMP 0
  413. #define AXISCOMP_TANXY 0
  414. #define AXISCOMP_TANYZ 0
  415. #define AXISCOMP_TANXZ 0
  416. #ifndef SDSUPPORT // Some boards have sd support on board. These define the values already in pins.h
  417. #define SDSUPPORT 0
  418. #undef SDCARDDETECT
  419. #define SDCARDDETECT -1
  420. #define SDCARDDETECTINVERTED 0
  421. #endif
  422. #define SD_EXTENDED_DIR 1 /** Show extended directory including file length. Don't use this with Pronterface! */
  423. #define SD_RUN_ON_STOP ""
  424. #define SD_STOP_HEATER_AND_MOTORS_ON_STOP 1
  425. #define ARC_SUPPORT 1
  426. #define FEATURE_MEMORY_POSITION 1
  427. #define FEATURE_CHECKSUM_FORCED 0
  428. #define FEATURE_FAN_CONTROL 1
  429. #define FEATURE_FAN2_CONTROL 0
  430. #define FEATURE_CONTROLLER 0
  431. #define ADC_KEYPAD_PIN -1
  432. #define LANGUAGE_EN_ACTIVE 1
  433. #define LANGUAGE_DE_ACTIVE 1
  434. #define LANGUAGE_NL_ACTIVE 0
  435. #define LANGUAGE_PT_ACTIVE 1
  436. #define LANGUAGE_IT_ACTIVE 1
  437. #define LANGUAGE_ES_ACTIVE 1
  438. #define LANGUAGE_FI_ACTIVE 0
  439. #define LANGUAGE_SE_ACTIVE 0
  440. #define LANGUAGE_FR_ACTIVE 1
  441. #define LANGUAGE_CZ_ACTIVE 0
  442. #define LANGUAGE_PL_ACTIVE 1
  443. #define LANGUAGE_TR_ACTIVE 1
  444. #define UI_PRINTER_NAME "RepRap"
  445. #define UI_PRINTER_COMPANY "Home made"
  446. #define UI_PAGES_DURATION 4000
  447. #define UI_ANIMATION 0
  448. #define UI_SPEEDDEPENDENT_POSITIONING 0
  449. #define UI_DISABLE_AUTO_PAGESWITCH 1
  450. #define UI_AUTORETURN_TO_MENU_AFTER 30000
  451. #define FEATURE_UI_KEYS 0
  452. #define UI_ENCODER_SPEED 1
  453. #define UI_REVERSE_ENCODER 0
  454. #define UI_KEY_BOUNCETIME 10
  455. #define UI_KEY_FIRST_REPEAT 500
  456. #define UI_KEY_REDUCE_REPEAT 50
  457. #define UI_KEY_MIN_REPEAT 50
  458. #define FEATURE_BEEPER 0
  459. #define CASE_LIGHTS_PIN -1
  460. #define CASE_LIGHT_DEFAULT_ON 1
  461. #define UI_START_SCREEN_DELAY 1000
  462. #define UI_DYNAMIC_ENCODER_SPEED 1
  463. /**
  464. Beeper sound definitions for short beeps during key actions
  465. and longer beeps for important actions.
  466. Parameter is delay in microseconds and the secons is the number of repetitions.
  467. Values must be in range 1..255
  468. */
  469. #define BEEPER_SHORT_SEQUENCE 2,2
  470. #define BEEPER_LONG_SEQUENCE 8,8
  471. #define UI_SET_PRESET_HEATED_BED_TEMP_PLA 60
  472. #define UI_SET_PRESET_EXTRUDER_TEMP_PLA 190
  473. #define UI_SET_PRESET_HEATED_BED_TEMP_ABS 110
  474. #define UI_SET_PRESET_EXTRUDER_TEMP_ABS 240
  475. #define UI_SET_MIN_HEATED_BED_TEMP 30
  476. #define UI_SET_MAX_HEATED_BED_TEMP 120
  477. #define UI_SET_MIN_EXTRUDER_TEMP 170
  478. #define UI_SET_MAX_EXTRUDER_TEMP 260
  479. #define UI_SET_EXTRUDER_FEEDRATE 2
  480. #define UI_SET_EXTRUDER_RETRACT_DISTANCE 3
  481. #define NUM_MOTOR_DRIVERS 0
  482. #endif