We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
You can extend CraftBeerPi with custom background task. Below you will find a basic example where the method gets invoked every secons
from modules import cbpi, @cbpi.backgroundtask(key="my_task", interval=1) def my_custom_background_task(): # YOUR CODE GOES HERE pass
@cbpi.backgroundtask Parameter