read_steady_scale

Description

Waits for the scale to settle then returns the steady value.

Signature

read_steady_scale(self, wait: bool = True) -> Union[float, CmdToken]

Parameters

wait: bool, optional

If True, this command blocks until measurement is complete.

Returns

float

If wait = True, this command returns the weight value from the balance's front panel display.


CmdToken

A CmdToken object that can be used to follow up on the status of the measurement or wait for it to finish if wait = False. Use tkn.return_value[0] to recover the measurement value after the scale has settled (i.e., tkn.is_done() == True).