;; Start heating both the hotend and bed while we home.
M104 S150 ; Set nozzle no-ooze warmup temp
M140 S{material_bed_temperature_layer_0}
G12 ; wipe nozzle
G28 ; Home all axes
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
/** | |
* Shelly Plus/Pro 2PM – Taupunkt-Skript | |
* - Standard: Innen per BLE, Außen per HTTP | |
* - HTTP wird pro Zyklus in evaluate() abgefragt (kein interval_ms) | |
* - Age-Failsafe: AUS nur im Intervall (wenn ein Sensor älter als age_ms) | |
* - evaluate() schaltet nur EIN (diff >= on_c); AUS macht ausschließlich Failsafe | |
* - /status liefert direkt das state-Objekt | |
* - Taupunkt (TAUPI 4.0): a=17.62, b=243.12 | |
*/ |
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
# This script is usefull if you have a public foreign image with git and a desired development environment set up | |
# (e.g. jupyter). You can use this to checkout your repo inside the container, run your code (e.g. python scripts) | |
# and commit the results back to your repo without the need to alter or deploy the original image. Can also be used | |
# for kubernetes pods. | |
version: '3.7' | |
services: | |
example: | |
environment: |