Updated README files and added chamfers to hole edges
This commit is contained in:
parent
c06516fe5d
commit
75156f5964
|
|
@ -23,6 +23,7 @@ If your mod is lacking a column in the compatibility matrix, feel free to submit
|
|||
|
||||
| Creator | Config title | Description | V1.6 | V2.1 | V2.2 |
|
||||
|---------|--------------|-------------|------|------|------|
|
||||
| bryansj | [SKR 1.3 V2.2 Extra Settings for Reference](./klipper/eddie) | Voron Design VORON2.2 300mm SKR 1.3 TMC2209 config with Extra Features Enabled for Reference | :x: | :grey_question: | :heavy_check_mark: |
|
||||
| Chron | [SKR 1.3 TMC2208 UART Config](./klipper/Chron) | Configuration for SKR 1.3 TMC2208 UART | :x: | :heavy_check_mark: | :grey_question: |
|
||||
| Danowar | [FYSETC F6 1.3 Klipper Config](./klipper/Danowar/FYSETC_F6_V1.3_Klipper_Config) | Klipper config for a FYSETC F6 350 build. UPDATED 11/14/19 | :x: | :heavy_check_mark: | :heavy_check_mark: |
|
||||
| eddie | [SKR 1.3 V2 Universal Config](./klipper/eddie) | Universal Config and Setup Guide for SKR 1.3 and V2 | :x: | :heavy_check_mark: | :heavy_check_mark: |
|
||||
|
|
|
|||
|
|
@ -123,7 +123,7 @@ enable_force_move: true
|
|||
|
||||
# Timeout after idle
|
||||
[idle_timeout]
|
||||
timeout: 1800 ; 30 minutes
|
||||
timeout: 3600 ; 60 minutes
|
||||
|
||||
# This adds the 'respond' G-Code that you can use to send commands back to OctoPrint
|
||||
[respond]
|
||||
|
|
@ -298,12 +298,14 @@ min_temp: 10
|
|||
max_temp: 270
|
||||
max_power: 1.0
|
||||
min_extrude_temp: 170
|
||||
max_extrude_only_distance: 780.0
|
||||
#control = pid
|
||||
#pid_kp = 26.213
|
||||
#pid_ki = 1.304
|
||||
#pid_kd = 131.721
|
||||
# PA can be disabled by declaring a 0.0 value
|
||||
pressure_advance: 0.0
|
||||
# PA Measured to 0.86 Max
|
||||
pressure_advance: 0.00
|
||||
pressure_advance_smooth_time: 0.040
|
||||
# A time range (in seconds) to use when calculating the average
|
||||
# extruder velocity for pressure advance. A larger value results in
|
||||
|
|
@ -375,7 +377,7 @@ sensor_type: ATC Semitec 104GT-2
|
|||
sensor_pin: z:P0.25
|
||||
min_temp: 0
|
||||
max_temp: 70.0
|
||||
target_temp: 40.0 ; Activate Exhaust fan at this temperature
|
||||
target_temp: 55.0 ; Activate Exhaust fan at this temperature
|
||||
control: watermark
|
||||
gcode_id: C
|
||||
|
||||
|
|
@ -476,7 +478,7 @@ type: command
|
|||
name: Test accuracy
|
||||
gcode:
|
||||
G28
|
||||
G0 X164 Y134 Z10 F6000
|
||||
G0 X150 Y150 Z10 F6000
|
||||
PROBE_ACCURACY
|
||||
|
||||
[menu __calibration_save_config]
|
||||
|
|
@ -501,7 +503,6 @@ name: Adjust Z offset
|
|||
enter_gcode:
|
||||
G28
|
||||
G0 X150 Y150 Z10 F6000
|
||||
PROBE_CALIBRATE
|
||||
items:
|
||||
__calibration__toolhead_zpos
|
||||
__calibration_probe_calibrate_testz_minus, __calibration_probe_calibrate_testz_plus
|
||||
|
|
@ -607,13 +608,13 @@ cursor: \x20
|
|||
type: command
|
||||
name: Load Filament
|
||||
gcode:
|
||||
M701
|
||||
LOAD_FILAMENT
|
||||
|
||||
[menu __filament __unload]
|
||||
type: command
|
||||
name: Unload Filament
|
||||
gcode:
|
||||
M702
|
||||
UNLOAD_FILAMENT
|
||||
|
||||
[menu __filament __feed]
|
||||
type: input
|
||||
|
|
@ -685,6 +686,7 @@ max_point: 260,230
|
|||
# Auto Adjustment Routine
|
||||
[gcode_macro G32]
|
||||
gcode:
|
||||
M141 S55 ; set chamber for 55C max
|
||||
BED_MESH_CLEAR
|
||||
{% if "z" not in printer.toolhead.homed_axes %} ; G28 Home if needed
|
||||
G28
|
||||
|
|
@ -716,6 +718,7 @@ gcode:
|
|||
G0 Z1.00 X20.0 Y20.0 F20000 ; move nozzle to remove stringing
|
||||
TURN_OFF_HEATERS ; turn off heaters
|
||||
M107 ; turn off fan
|
||||
M141 S25 ; vent chamber setting fan to 25C
|
||||
G1 Z2 F3000 ; move nozzle up 2mm
|
||||
G90 ; absolute positioning
|
||||
G0 X55 Y300 F3600 ; park nozzle at brush bin
|
||||
|
|
@ -823,6 +826,13 @@ gcode:
|
|||
G1 X{X} Y{Y} F3000
|
||||
G0 E-50 F4800
|
||||
|
||||
#####################################################################
|
||||
# Reference POSITION_ENDSTOP Z Offset Settings
|
||||
#####################################################################
|
||||
|
||||
# Energetic PEI Smooth Side = -1.100
|
||||
# Energetci PEI Textured Side = -1.170
|
||||
|
||||
#*# <---------------------- SAVE_CONFIG ---------------------->
|
||||
#*# DO NOT EDIT THIS BLOCK OR BELOW. The contents are auto-generated.
|
||||
#*#
|
||||
|
|
@ -839,4 +849,4 @@ gcode:
|
|||
#*# pid_kd = 100.816
|
||||
#*#
|
||||
#*# [stepper_z]
|
||||
#*# position_endstop = -2.830
|
||||
#*# position_endstop = -1.100
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ If your mod is lacking a column in the compatibility matrix, feel free to submit
|
|||
|Armstr0ng |[Led extrusions mount](./Armstr0ng) | A mount for aluminium LED extrusions with hidden fasteners | :grey_question:|:heavy_check_mark: | :heavy_check_mark:|
|
||||
| ArmyAg08|[Logitech Camera Mounts](./ArmyAg08/Logitech_C270_Mounts) |Different Logitech camera mounts, attached to the extrusions. Fits C270 and C310 |:heavy_check_mark: |:heavy_check_mark: |:heavy_check_mark: |
|
||||
| | [Corner Panel Clip](./ArmyAg08/Panels)|Corner panel clip that fit 3mm or 1/8" panels with foam tape | :x:|:heavy_check_mark: | :heavy_check_mark:|
|
||||
| bryansj | [Rotated Pi Mount with Heatsink](./bryansj\RPi_Frame_with_Heatsink_90deg) | Raspberry Pi with Heatsink Frame for minimal channel width | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
|
||||
| bryansj | [Rotated Pi Mount with Heatsink](./bryansj/RPi_Frame_with_Heatsink_90deg) | Raspberry Pi with Heatsink Frame for minimal channel width | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
|
||||
| Cerulean | [Respooler](./Cerulean/Respooler) | Respool tangled spools or bad koils | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
|
||||
|Danowar |[Dual Mobius Mount](./Danowar/Dual_Mobuis_Mount) | Mounts two Mobius Extruders to the back of the printer| :heavy_check_mark:| :heavy_check_mark:|:heavy_check_mark: |
|
||||
| |[F6 Board Mount](./Danowar/F6_Board_Mount) | Mounts for FYSETCS F6 controller boards|:heavy_check_mark: | :heavy_check_mark:| :heavy_check_mark:|
|
||||
|
|
|
|||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Loading…
Reference in New Issue