mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 01:17:42 +01:00
18 lines
No EOL
633 B
Python
18 lines
No EOL
633 B
Python
# -*- coding: utf-8 -*-
|
|
from cbpi.api import *
|
|
from .mqtt_actor import MQTTActor
|
|
from .generic_mqtt_actor import GenericMqttActor
|
|
from .tasmota_mqtt_actor import TasmotaMqttActor
|
|
|
|
def setup(cbpi):
|
|
'''
|
|
This method is called by the server during startup
|
|
Here you need to register your plugins at the server
|
|
|
|
:param cbpi: the cbpi core
|
|
:return:
|
|
'''
|
|
if str(cbpi.static_config.get("mqtt", False)).lower() == "true":
|
|
cbpi.plugin.register("MQTTActor", MQTTActor)
|
|
cbpi.plugin.register("MQTT Actor (Generic)", GenericMqttActor)
|
|
cbpi.plugin.register("MQTT Actor (Tasmota)", TasmotaMqttActor) |