Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianStremel authored Jan 2, 2025
2 parents 8601047 + 4089c35 commit e25b7e5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ Can switch back to mainline klipper at any time via a `git checkout upstream_mai
```bash
cd ~/klipper
git remote add kalico https://github.com/KalicoCrew/kalico.git
git fetch kalico
git checkout -b upstream-main origin/master
git branch -D master
git checkout -b main kalico/main
Expand Down
1 change: 1 addition & 0 deletions docs/_kalico/mkdocs-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ mdx-truly-sane-lists==1.3
mdx-breakless-lists==1.0.1
py-gfm==2.0.0
markdown==3.6
mkdocs-github-admonitions-plugin==0.0.3
4 changes: 3 additions & 1 deletion docs/_kalico/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,14 @@ markdown_extensions:
- mdx_partial_gfm
- mdx_truly_sane_lists
- mdx_breakless_lists
- admonition
plugins:
search:
lang: en
mkdocs-simple-hooks:
hooks:
on_page_markdown: "docs._kalico.mkdocs_hooks:transform"
gh-admonitions:

# Website layout configuration (using mkdocs-material theme)
theme:
Expand Down Expand Up @@ -153,4 +155,4 @@ nav:
- TSL1401CL_Filament_Width_Sensor.md
- Hall_Filament_Width_Sensor.md
- Contact.md
- Sponsors.md
- Sponsors.md
4 changes: 3 additions & 1 deletion klippy/extras/pid_calibrate.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ def temperature_update(self, read_time, temp, target_temp):
if not self.started and temp >= self.temp_low:
self.errored = True
self.finish(read_time)
self.gcode.respond_info("temperature to high to start calibration")
self.gcode.respond_info(
"temperature is too high to start calibration"
)
return
else:
self.started = True
Expand Down

0 comments on commit e25b7e5

Please sign in to comment.