This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
compaction_throughput_mb_per_sec: 16 | |
row_cache_save_period: 0 | |
cross_node_timeout: false | |
counter_cache_save_period: 7200 | |
sstable_preemptive_open_interval_in_mb: 50 | |
internode_compression: all | |
storage_port: 7000 | |
key_cache_save_period: 14400 | |
inter_dc_tcp_nodelay: false | |
start_rpc: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file contains pin mappings for the Anycubic i3 Mega with | |
# Ultrabase from 2017. (This config may work on an Anycubic i3 Mega v1 | |
# prior to the Ultrabase if you comment out the definition of the | |
# endstop_pin in the stepper_z1 section.) To use this config, the | |
# firmware should be compiled for the AVR atmega2560. | |
# See the example.cfg file for a description of available parameters. | |
[stepper_x] | |
step_pin: PF0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root = true | |
[*] | |
indent_style = space | |
indent_size = 2 | |
end_of_line = lf | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use PhpCsFixer\Config; | |
use PhpCsFixer\Finder; | |
$rules = [ | |
'@PSR1' => true, | |
'@PSR2' => true, | |
'array_syntax' => ['syntax' => 'short'], | |
'binary_operator_spaces' => [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use PhpCsFixer\Config; | |
use PhpCsFixer\Finder; | |
$rules = [ | |
'@PSR1' => true, | |
'@PSR2' => true, | |
'@PHP74Migration' => true, | |
'@PHP80Migration' => true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##################################################################### | |
# Mainsail | |
##################################################################### | |
[virtual_sdcard] | |
path: ~/gcode_files | |
[display_status] | |
[pause_resume] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##################################################################### | |
# Mainsail | |
##################################################################### | |
[virtual_sdcard] | |
path: ~/gcode_files | |
[display_status] | |
[pause_resume] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[z_calibration] | |
## update these variable according to the documentation here https://github.com/protoloft/klipper_z_calibration | |
## you then should call CALIBRATE_Z as one of the last lines on your PRINT_START to set the Z offset dinamically | |
# The X and Y coordinates (in mm) for clicking the nozzle on the | |
# Z endstop. | |
nozzle_xy_position: X,Y | |
# The X and Y coordinates (in mm) for clicking the probe's switch body | |
# on the Z endstop. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Macros for setting the status leds on the Voron enclosure (or for any neopixel-type leds). | |
# | |
# You will need to configure a neopixel (or other addressable led, such as dotstar). See | |
# https://www.klipper3d.org/Config_Reference.html#neopixel for configuration details. | |
# | |
# CONFIGURATION | |
# | |
# Example neopixel configuration: | |
# [neopixel caselight] | |
# pin: <your pin> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##################################################################### | |
# LED Control | |
##################################################################### | |
[neopixel caselight] | |
pin: PD3 | |
# The pin connected to the neopixel. This parameter must be | |
# provided. | |
chain_count: 54 | |
# The number of Neopixel chips that are "daisy chained" to the |
OlderNewer