Update 6.0.0
This commit is contained in:
parent
bb0b7539a0
commit
c8db437b79
63 changed files with 3667 additions and 737 deletions
33
files/guppy-screen/guppy_update-3v3.cfg
Normal file
33
files/guppy-screen/guppy_update-3v3.cfg
Normal file
|
@ -0,0 +1,33 @@
|
|||
########################################
|
||||
# Guppy Screen Update
|
||||
########################################
|
||||
|
||||
[gcode_shell_command guppy_update]
|
||||
command: sh /usr/data/helper-script/files/guppy-screen/guppy-update.sh
|
||||
timeout: 600.0
|
||||
verbose: True
|
||||
|
||||
|
||||
[gcode_macro GUPPY_UPDATE]
|
||||
description: Check for Guppy Screen Updates
|
||||
gcode:
|
||||
{% if printer.idle_timeout.state == "Printing" %}
|
||||
RESPOND TYPE=error MSG="It's not possible to update Guppy Screen while printing!"
|
||||
{% else %}
|
||||
RUN_SHELL_COMMAND CMD=guppy_update
|
||||
{% endif %}
|
||||
|
||||
|
||||
[gcode_macro INPUT_SHAPER_CALIBRATION]
|
||||
description: Measure X and Y Axis Resonances and Save values
|
||||
gcode:
|
||||
SET_TEMPERATURE_FAN_TARGET TEMPERATURE_FAN=soc_fan TARGET=30
|
||||
{% if printer.toolhead.homed_axes != "xyz" %}
|
||||
RESPOND TYPE=command MSG="Homing..."
|
||||
G28
|
||||
{% endif %}
|
||||
RESPOND TYPE=command MSG="Measuring X and Y Resonances..."
|
||||
SHAPER_CALIBRATE
|
||||
M400
|
||||
SET_TEMPERATURE_FAN_TARGET TEMPERATURE_FAN=soc_fan TARGET=45
|
||||
CXSAVE_CONFIG
|
|
@ -21,8 +21,8 @@ gcode:
|
|||
[gcode_macro INPUT_SHAPER_CALIBRATION]
|
||||
description: Measure X and Y Axis Resonances and Save values
|
||||
gcode:
|
||||
{% if printer["configfile"].config["temperature_fan mcu_fan"] %}
|
||||
SET_TEMPERATURE_FAN_TARGET TEMPERATURE_FAN=mcu_fan TARGET=30
|
||||
{% if printer["configfile"].config["temperature_fan soc_fan"] %}
|
||||
SET_TEMPERATURE_FAN_TARGET TEMPERATURE_FAN=soc_fan TARGET=30
|
||||
{% endif %}
|
||||
{% if printer.toolhead.homed_axes != "xyz" %}
|
||||
RESPOND TYPE=command MSG="Homing..."
|
||||
|
@ -31,7 +31,7 @@ gcode:
|
|||
RESPOND TYPE=command MSG="Measuring X and Y Resonances..."
|
||||
SHAPER_CALIBRATE
|
||||
M400
|
||||
{% if printer["configfile"].config["temperature_fan mcu_fan"] %}
|
||||
SET_TEMPERATURE_FAN_TARGET TEMPERATURE_FAN=mcu_fan TARGET=50
|
||||
{% if printer["configfile"].config["temperature_fan soc_fan"] %}
|
||||
SET_TEMPERATURE_FAN_TARGET TEMPERATURE_FAN=soc_fan TARGET=50
|
||||
{% endif %}
|
||||
CXSAVE_CONFIG
|
51
files/guppy-screen/guppyconfig-3v3.json
Normal file
51
files/guppy-screen/guppyconfig-3v3.json
Normal file
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
"config_path": "/usr/data/guppyscreen/guppyconfig.json",
|
||||
"default_printer": "Ender-3 V3",
|
||||
"display_rotate": 3,
|
||||
"display_sleep_sec": -1,
|
||||
"guppy_init_script": "/etc/init.d/S99guppyscreen",
|
||||
"invert_z_icon": true,
|
||||
"log_path": "/usr/data/printer_data/logs/guppyscreen.log",
|
||||
"printers": {
|
||||
"Ender-3 V3": {
|
||||
"default_macros": {
|
||||
"cooldown": "SET_HEATER_TEMPERATURE HEATER=extruder TARGET=0\nSET_HEATER_TEMPERATURE HEATER=heater_bed TARGET=0",
|
||||
"load_filament": "LOAD_MATERIAL",
|
||||
"unload_filament": "QUIT_MATERIAL"
|
||||
},
|
||||
"fans": [
|
||||
{
|
||||
"display_name": "Model Cooling",
|
||||
"id": "output_pin fan0"
|
||||
},
|
||||
{
|
||||
"display_name": "Auxiliary Cooling",
|
||||
"id": "output_pin fan2"
|
||||
}
|
||||
],
|
||||
"leds": null,
|
||||
"log_level": "debug",
|
||||
"monitored_sensors": [
|
||||
{
|
||||
"color": "red",
|
||||
"controllable": true,
|
||||
"display_name": "Extruder",
|
||||
"id": "extruder"
|
||||
},
|
||||
{
|
||||
"color": "purple",
|
||||
"controllable": true,
|
||||
"display_name": "Bed",
|
||||
"id": "heater_bed"
|
||||
}
|
||||
],
|
||||
"moonraker_api_key": false,
|
||||
"moonraker_host": "127.0.0.1",
|
||||
"moonraker_port": 7125
|
||||
}
|
||||
},
|
||||
"prompt_emergency_stop": true,
|
||||
"thumbnail_path": "/usr/data/printer_data/thumbnails",
|
||||
"touch_calibrated": false,
|
||||
"wpa_supplicant": "/var/run/wpa_supplicant"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue