async readRadioTxPower(): Promise<number> {
    const uuid = constants.RADIO_TX_POWER_CHARACTERISTIC_UUID;
    const rawVal = await this.readCharacteristic(uuid);
    const val = rawVal.getInt8(0);
    return val;