Decrease default settling time to 0.05

This commit is contained in:
Joe Knapper 2026-07-10 10:49:51 +01:00
parent d26b93e1be
commit e709001494

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