mirror of
https://github.com/syssi/esphome-votronic.git
synced 2025-07-23 04:23:02 +02:00
69 lines
2.5 KiB
Python
69 lines
2.5 KiB
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import ble_client, esp32_ble_tracker, output
|
|
from esphome.const import CONF_CHARACTERISTIC_UUID, CONF_ID, CONF_SERVICE_UUID
|
|
|
|
from .. import ble_client_ns
|
|
|
|
DEPENDENCIES = ["ble_client"]
|
|
|
|
CONF_REQUIRE_RESPONSE = "require_response"
|
|
|
|
BLEBinaryOutput = ble_client_ns.class_(
|
|
"BLEBinaryOutput", output.BinaryOutput, ble_client.BLEClientNode, cg.Component
|
|
)
|
|
|
|
CONFIG_SCHEMA = cv.All(
|
|
output.BINARY_OUTPUT_SCHEMA.extend(
|
|
{
|
|
cv.Required(CONF_ID): cv.declare_id(BLEBinaryOutput),
|
|
cv.Required(CONF_SERVICE_UUID): esp32_ble_tracker.bt_uuid,
|
|
cv.Required(CONF_CHARACTERISTIC_UUID): esp32_ble_tracker.bt_uuid,
|
|
cv.Optional(CONF_REQUIRE_RESPONSE, default=False): cv.boolean,
|
|
}
|
|
)
|
|
.extend(cv.COMPONENT_SCHEMA)
|
|
.extend(ble_client.BLE_CLIENT_SCHEMA)
|
|
)
|
|
|
|
|
|
def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
if len(config[CONF_SERVICE_UUID]) == len(esp32_ble_tracker.bt_uuid16_format):
|
|
cg.add(
|
|
var.set_service_uuid16(esp32_ble_tracker.as_hex(config[CONF_SERVICE_UUID]))
|
|
)
|
|
elif len(config[CONF_SERVICE_UUID]) == len(esp32_ble_tracker.bt_uuid32_format):
|
|
cg.add(
|
|
var.set_service_uuid32(esp32_ble_tracker.as_hex(config[CONF_SERVICE_UUID]))
|
|
)
|
|
elif len(config[CONF_SERVICE_UUID]) == len(esp32_ble_tracker.bt_uuid128_format):
|
|
uuid128 = esp32_ble_tracker.as_reversed_hex_array(config[CONF_SERVICE_UUID])
|
|
cg.add(var.set_service_uuid128(uuid128))
|
|
|
|
if len(config[CONF_CHARACTERISTIC_UUID]) == len(esp32_ble_tracker.bt_uuid16_format):
|
|
cg.add(
|
|
var.set_char_uuid16(
|
|
esp32_ble_tracker.as_hex(config[CONF_CHARACTERISTIC_UUID])
|
|
)
|
|
)
|
|
elif len(config[CONF_CHARACTERISTIC_UUID]) == len(
|
|
esp32_ble_tracker.bt_uuid32_format
|
|
):
|
|
cg.add(
|
|
var.set_char_uuid32(
|
|
esp32_ble_tracker.as_hex(config[CONF_CHARACTERISTIC_UUID])
|
|
)
|
|
)
|
|
elif len(config[CONF_CHARACTERISTIC_UUID]) == len(
|
|
esp32_ble_tracker.bt_uuid128_format
|
|
):
|
|
uuid128 = esp32_ble_tracker.as_reversed_hex_array(
|
|
config[CONF_CHARACTERISTIC_UUID]
|
|
)
|
|
cg.add(var.set_char_uuid128(uuid128))
|
|
cg.add(var.set_require_response(config[CONF_REQUIRE_RESPONSE]))
|
|
yield output.register_output(var, config)
|
|
yield ble_client.register_ble_node(var, config)
|
|
yield cg.register_component(var, config)
|