pylabrobot.liquid_handling.backends.hamilton.vantage.Vantage.set_led_color

pylabrobot.liquid_handling.backends.hamilton.vantage.Vantage.set_led_color#

async Vantage.set_led_color(mode: Literal['on'] | Literal['off'] | Literal['blink'], intensity: int, white: int, red: int, green: int, blue: int, uv: int, blink_interval: int | None = None)#

Set the LED color.

Parameters:
  • mode (Literal['on'] | ~typing.Literal['off'] | ~typing.Literal['blink']) – The mode of the LED. One of “on”, “off”, or “blink”.

  • intensity (int) – The intensity of the LED. 0-100.

  • white (int) – The white color of the LED. 0-100.

  • red (int) – The red color of the LED. 0-100.

  • green (int) – The green color of the LED. 0-100.

  • blue (int) – The blue color of the LED. 0-100.

  • uv (int) – The UV color of the LED. 0-100.

  • blink_interval (int | None) – The blink interval in ms. Only used if mode is “blink”.