yogurt: Use longer time frame to show stability.

This commit is contained in:
William Floyd 2022-03-17 09:52:17 -05:00
parent 94a4faef7b
commit e38028e7fe
Signed by untrusted user who does not match committer: william
GPG key ID: B3EEEDD81893CAF9
7 changed files with 10 additions and 9 deletions

View file

@ -71,7 +71,7 @@ If the value is between 0.6 and 0.95, it will turn it on, wait 750 milliseconds,
This ensures when attempting to hold a setpoint that the thermal lag in the system will catch up.
These values are found purely by experimentation, but yield sub $1^\circ F$ variation easily.
![A slice of history](media/Screenshot%20from%202022-03-17%2002-11-39.webp)
![A slice of history](media/Screenshot%20from%202022-03-17%2009-48-36.webp)
## P~~ID~~ Settings

Binary file not shown.

View file

@ -0,0 +1 @@
8453a2abca158bbeb71ffd0d29f736e8

View file

@ -318,13 +318,11 @@ __process_generic_image() {
[ "${!__img_rescale}" == 'auto' ] && [ "$(identify -format '(%w*%h)/1000\n' "${__source_file}" | bc)" -gt "${!__img_rescale_threshold}" ]
); then
__convert_options+=("-resize" "$((__img_rescale_threshold*1000))@>")
__convert_options+=("-resize" "$((__img_rescale_threshold * 1000))@>")
fi
echo "${__convert_options[@]}"
convert "${__source_file}" ${__convert_options[@]} "${__target}"
convert "${__source_file}" ${__convert_options[@]} "${__target}"
fi