This file contains hidden or 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
# Specs: | |
# - SKR 1.2 Pro | |
# - TMC2209 | |
# - 1.8 stepper on XYZ | |
# - Dual Z | |
# - BLTouch | |
# - Sensorless homing on X | |
# - Physical endstops on Y | |
# - BMG extruder with 1.8 stepper | |
# - e3d Volcano with 12V 40 watts heater |
This file contains hidden or 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
[display_data _default_16x4 printing_time] | |
position: 2, 10 | |
text: | |
{% set ptime = printer["gcode_macro M73"].r %} | |
{ "R%02d:%02d" % (ptime // 60, ptime % 60) } | |
[gcode_macro M73] | |
rename_existing: M773 | |
variable_p: 0.0 | |
variable_r: 0.0 |
This file contains hidden or 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
# Prutscha i3 | |
[mcu] | |
serial: /dev/ttyUSB0 | |
pin_map: arduino | |
[printer] | |
kinematics: cartesian | |
max_velocity: 200 | |
max_accel: 1500 |
This file contains hidden or 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
#!/usr/bin/env bash | |
echo "Stalling for Elasticsearch..." | |
for i in {30..0}; do | |
nc -q 1 elasticsearch 9200 2>/dev/null && break | |
echo "Elasticsearch init process in progress..." | |
sleep 1 | |
done | |
if [ "$i" = 0 ]; then |