""" The MIT License (MIT) Copyright © 2020 Walkline Wang (https://walkline.wang) Gitee: https://gitee.com/walkline/ESP32-BLE-Remote_Controller """ import ubluetooth as bt from ble.const import BLEConst from .__characteristic import Characteristic class ServiceChanged(Characteristic): UUID = bt.UUID(BLEConst.Characteristics.SERVICE_CHANGED) FLAGS = bt.FLAG_NOTIFY def __init__(self): Characteristic.__init__(self, self.UUID, self.FLAGS)