Merge branch 'settling-time' into 'v3'

Decrease default settling time to 0.05

See merge request openflexure/openflexure-microscope-server!657
This commit is contained in:
Joe Knapper 2026-07-10 13:04:12 +00:00
commit bb38e11ba8

View file

@ -69,7 +69,7 @@ class StackParams(BaseModel):
# Using docstrings under variables as this is how pdoc would expect
# attributed to be documented
settling_time: float = Field(default=0.3, ge=0)
settling_time: float = Field(default=0.05, ge=0)
"""Time (in seconds) between moving and capturing an image"""
origin: StackOrigin = StackOrigin.START