:mod:`thingz_button` ==================== .. py:module:: thingz_button .. autoapi-nested-parse:: Thingz button .. py:class:: Button Control Galaxia's physical buttons .. py:method:: is_pressed() -> bool :return: True if button is pressed, False otherwise :rtype: bool .. py:method:: was_pressed() -> bool :return: True if button has been pressed since last call, False otherwise :rtype: bool .. py:method:: get_presses() -> int Get the number of presses since the last call :return: The number of presses since the last call :rtype: int .. py:method:: on_pressed(callback: Callable[Optional[Button]]) -> None Register a callaback bind to press event :param Callable[Optional[Button]] callback: The function to call when the event occurs. When called the button will be passed as paramater