Unity連接低功耗藍(lán)牙設(shè)備

一言蛇、前言

工作中需求Unity 連接一個(gè)低功耗藍(lán)牙模塊收發(fā)信息的功能瑟匆。
使用《Bluetooth LE for iOS tvOS and Android 2.55》插件實(shí)現(xiàn)赖淤。
導(dǎo)入插件打包apk時(shí)會(huì)報(bào)錯(cuò),應(yīng)該是AndroidManifest文件里面的錯(cuò)誤,使用下面代碼替換

<?xml version="1.0" encoding="utf-8"?>
<manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.unity3d.player"
    android:installLocation="preferExternal"
    android:versionCode="1"
    android:versionName="1.0">
    <supports-screens
        android:smallScreens="true"
        android:normalScreens="true"
        android:largeScreens="true"
        android:xlargeScreens="true"
        android:anyDensity="true"/>
    
    <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
    <uses-permission android:name="android.permission.BLUETOOTH"/>
    
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
    <uses-feature android:name="android.hardware.bluetooth_le" android:required="false"/>
    <uses-permission-sdk-23 android:name="android.permission.ACCESS_COARSE_LOCATION"/>
    <uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"/>
    
    <uses-permission android:name="android.permission.BLUETOOTH" android:maxSdkVersion="30" />
    <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" android:maxSdkVersion="30"/>
    <uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
    <uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE" />
    <uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />

    <application
        android:icon="@drawable/app_icon"
        android:label="@string/app_name"
        android:debuggable="true">
        <activity android:name="com.unity3d.player.UnityPlayerProxyActivity"
                  android:label="@string/app_name"
                  android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen">
            
        </activity>
        <activity android:name="com.unity3d.player.UnityPlayerActivity"
                  android:label="@string/app_name"
                  android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name="com.unity3d.player.UnityPlayerNativeActivity"
                  android:label="@string/app_name"
                  android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen">
            <meta-data android:name="android.app.lib_name" android:value="unity" />
            <meta-data android:name="unityplayer.ForwardNativeEventsToDalvik" android:value="true" />
        </activity>
    </application>
</manifest>

二尿赚、實(shí)現(xiàn)

1添忘、初始化

BluetoothLEHardwareInterface.Initialize(true, false, () =>
        {
            Debug.Log("藍(lán)牙初始化成功");           //初始化成功執(zhí)行回調(diào)
            Invoke("FindDevice", 0.1f);
        }, (error) =>
        {
            Debug.Log("藍(lán)牙初始化失敗請(qǐng)打開(kāi)藍(lán)牙");  //初始化失敗的回調(diào)響應(yīng)
        });

2采呐、掃描設(shè)備,通過(guò)設(shè)備名稱找到藍(lán)牙模塊設(shè)備

public void FindDevice()
    {
        Debug.Log("開(kāi)始搜索藍(lán)牙設(shè)備");
        BluetoothLEHardwareInterface.ScanForPeripheralsWithServices(null,
            (address, name) =>
                {
                    if (name.Contains(DeviceName))
                    {
                        //掃描處理搁骑,加入設(shè)備列表              
                        Debug.Log("找到所需設(shè)備");
                        DeviceAddress = address;
                        ConnectDevice();
                    }
                },
                null);
    }

3斧吐、連接藍(lán)牙設(shè)備又固,通過(guò)我們需要找的ServiceUUID和CharacteristicUUID連接

public void ConnectDevice()
    {     
        Debug.Log("連接藍(lán)牙設(shè)備");
        BluetoothLEHardwareInterface.StopScan();
        BluetoothLEHardwareInterface.ConnectToPeripheral(DeviceAddress, null, null,
            (address, serviceUUID, characteristicUUID) =>
            {
                Debug.Log("連接藍(lán)牙成功");
                SubscribeCharacteristicWithDeviceAddress();
            });
    }

4、訂閱服務(wù)
訂閱藍(lán)牙服務(wù)之后我們就可以進(jìn)行我們需要的數(shù)據(jù)操作了煤率,OnCharacteristicNotification會(huì)返回接收到的數(shù)據(jù)仰冠,其實(shí)具體的數(shù)據(jù)接發(fā)模式還有很多,這里看我的項(xiàng)目需求和設(shè)備類型是這樣的蝶糯,更多的可以去查藍(lán)牙的模式洋只。

private void SubscribeCharacteristicWithDeviceAddress()
    {
        Debug.Log("訂閱服務(wù)");
        BluetoothLEHardwareInterface.SubscribeCharacteristicWithDeviceAddress
            (DeviceAddress, ServiceUUID, CharacteristicUUID, 
(notifyAddress, notifyCharacteristic) =>
                        {
                            Debug.Log(1);
                            //通過(guò)UUID讀取信息
                            BluetoothLEHardwareInterface.ReadCharacteristic(DeviceAddress, ServiceUUID,    ButtonUUID, (characteristic, bytes) =>
                            {
                                 Debug.Log(bytes);
                            });
                        }, 
(address, characteristicUUID, bytes) =>
                        {
                            if (_state != States.None)
                            {
                                Debug.Log(2);
                            }
                           Debug.Log(bytes);
                        }););
    }

5、寫入藍(lán)牙模塊信息

public void btnClick()
    {
        SendByte(new byte[] { 0xA7, 0x06, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06 });
    }
void SendByte(byte[] data)
    {
        Debug.Log("總:"+ data.Length);
        for (int i = 0; i < data.Length; i++)
        {
            Debug.Log(i + " : " + data[i]);
        }

        BluetoothLEHardwareInterface.WriteCharacteristic(DeviceAddress, ServiceUUID, writeId, data, data.Length, false, (characteristicUUID) =>
        {
            StatusMessage = "發(fā)送";
            BluetoothLEHardwareInterface.Log("Write Succeeded");
        });
    }

6昼捍、讀取藍(lán)牙模塊發(fā)送的信息

BluetoothLEHardwareInterface.ReadCharacteristic(DeviceAddress, ServiceUUID,    notifyId , (characteristic, bytes) =>
                            {
                                 Debug.Log(bytes);
                            });

7识虚、取消訂閱服務(wù)

 BluetoothLEHardwareInterface.UnSubscribeCharacteristic(DeviceAddress, ServiceUUID, notifyId , null);

8、斷開(kāi)連接藍(lán)牙

BluetoothLEHardwareInterface.DisconnectPeripheral(DeviceAddress, (address) =>
                            {
                                Debug.Log("斷開(kāi)藍(lán)牙連接");
                                StatusMessage = "Device disconnected";
                                BluetoothLEHardwareInterface.DeInitialize(() =>
                                {
                                     Debug.Log("取消初始化");
                                });
                            });

9妒茬、讀取藍(lán)牙信號(hào)強(qiáng)度担锤,可以設(shè)置2s執(zhí)行一次

BluetoothLEHardwareInterface.ReadRSSI(DeviceAddress, (address, rssi) =>
                        {
                            Debug.Log("rssi");
                        });

三、根據(jù)示例場(chǎng)景StartingExample修改代碼

using UnityEngine;
using UnityEngine.UI;

public class StartingExample : MonoBehaviour
{
    string DeviceName = "YX_202308070464";
    string ServiceUUID = "0000FFB0-0000-1000-8000-00805F9B34FB";
    string notifyId = "0000FFB2-0000-1000-8000-00805F9B34FB";
    string writeId = "0000FFB1-0000-1000-8000-00805F9B34FB";

    enum States
    {
        None,
        Scan,
        ScanRSSI,
        ReadRSSI,
        Connect,
        RequestMTU,
        Subscribe,
        Unsubscribe,
        Disconnect,
    }

    private bool _connected = false;
    private float _timeout = 0f;
    private States _state = States.None;
    private string _deviceAddress;
    private bool _foundButtonUUID = false;
    private bool _foundLedUUID = false;
    private bool _rssiOnly = false;
    private int _rssi = 0;

    public Text StatusText;
    public Text ButtonPositionText;

    private string StatusMessage
    {
        set
        {
            BluetoothLEHardwareInterface.Log(value);
            StatusText.text = value;
        }
    }

    void Reset()
    {
        _connected = false;
        _timeout = 0f;
        _state = States.None;
        _deviceAddress = null;
        _foundButtonUUID = false;
        _foundLedUUID = false;
        _rssi = 0;
    }

    void SetState(States newState, float timeout)
    {
        _state = newState;
        _timeout = timeout;
    }

    void StartProcess()
    {
        Reset();
        BluetoothLEHardwareInterface.Initialize(true, false, () =>
        {

            SetState(States.Scan, 0.1f);

        }, (error) =>
        {

            StatusMessage = "Error during initialize: " + error;
        });
    }

    void Start()
    {
        StartProcess();
    }

    private void ProcessButton(byte[] bytes)
    {
        if (bytes[0] == 0x00)
            ButtonPositionText.text = "Not Pushed";
        else
            ButtonPositionText.text = "Pushed";
    }


    void Update()
    {
        if (_timeout > 0f)
        {
            _timeout -= Time.deltaTime;
            if (_timeout <= 0f)
            {
                _timeout = 0f;

                switch (_state)
                {
                    case States.None:
                        break;

                    case States.Scan:
                        StatusMessage = "Scanning for " + DeviceName;
                        Debug.Log(1);
                        BluetoothLEHardwareInterface.ScanForPeripheralsWithServices(null, 
                            (address, name) =>
                        {
                            // if your device does not advertise the rssi and manufacturer specific data
                            // then you must use this callback because the next callback only gets called
                            // if you have manufacturer specific data

                            if (!_rssiOnly)
                            {
                                if (name.Contains(DeviceName))
                                {
                                    StatusMessage = "Found " + name;
                                    Debug.Log(2);
                                    // found a device with the name we want
                                    // this example does not deal with finding more than one
                                    _deviceAddress = address;
                                    SetState(States.Connect, 0.5f);
                                }
                            }

                        }, 
                            (address, name, rssi, bytes) =>
                        {

                            // use this one if the device responses with manufacturer specific data and the rssi

                            if (name.Contains(DeviceName))
                            {
                                StatusMessage = "Found " + name;

                                if (_rssiOnly)
                                {
                                    _rssi = rssi;
                                }
                                else
                                {
                                    // found a device with the name we want
                                    // this example does not deal with finding more than one
                                    _deviceAddress = address;
                                    SetState(States.Connect, 0.5f);
                                }
                            }

                        }, _rssiOnly); // this last setting allows RFduino to send RSSI without having manufacturer data

                        if (_rssiOnly)
                            SetState(States.ScanRSSI, 0.5f);
                        break;

                    case States.ScanRSSI:
                        break;

                    case States.ReadRSSI:
                        StatusMessage = $"Call Read RSSI";
                        Debug.Log(4);
                        BluetoothLEHardwareInterface.ReadRSSI(_deviceAddress, (address, rssi) =>
                        {
                            StatusMessage = $"Read RSSI: {rssi}";
                        });

                        SetState(States.ReadRSSI, 2f);
                        break;

                    case States.Connect:
                        StatusMessage = "Connecting...";
                        Debug.Log(5);
                        // set these flags
                        _foundButtonUUID = false;
                        _foundLedUUID = false;

                        // note that the first parameter is the address, not the name. I have not fixed this because
                        // of backwards compatiblity.
                        // also note that I am not using the first 2 callbacks. If you are not looking for specific characteristics you can use one of
                        // the first 2, but keep in mind that the device will enumerate everything and so you will want to have a timeout
                        // large enough that it will be finished enumerating before you try to subscribe or do any other operations.
                        //請(qǐng)注意乍钻,第一個(gè)參數(shù)是地址肛循,而不是名稱。由于向后兼容性银择,我沒(méi)有解決這個(gè)問(wèn)題多糠。
                        //還要注意,我注意到我沒(méi)有使用前兩個(gè)回調(diào)浩考。如果你不是在尋找特定的特征夹孔,你可以使用前兩個(gè)特征中的一個(gè),
                        //但請(qǐng)記住怀挠,設(shè)備會(huì)枚舉所有內(nèi)容析蝴,因此你需要有一個(gè)足夠大的超時(shí)害捕,以便在你嘗試訂閱或執(zhí)行任何其他操作之前完成枚舉绿淋。

                        BluetoothLEHardwareInterface.ConnectToPeripheral(_deviceAddress, null, null, (address, serviceUUID, characteristicUUID) =>
                        {
                            StatusMessage = "Connected...";

                            BluetoothLEHardwareInterface.StopScan();

                            StatusMessage = address;

                            if (IsEqual(serviceUUID, ServiceUUID))
                            {
                                Debug.Log(6.5f);
                                StatusMessage = "Found Service UUID";

                                _foundButtonUUID = _foundButtonUUID || IsEqual(characteristicUUID, writeId);

                                Debug.Log(_foundButtonUUID);
                                // if we have found both characteristics that we are waiting for
                                // set the state. make sure there is enough timeout that if the
                                // device is still enumerating other characteristics it finishes
                                // before we try to subscribe
                                if (_foundButtonUUID /*&& _foundLedUUID*/)
                                {
                                    Debug.Log(6.6f);
                                    _connected = true;
                                    SetState(States.RequestMTU, 2f);
                                }
                            }
                        });
                        break;

                    case States.RequestMTU:
                        StatusMessage = "Requesting MTU";
                        Debug.Log(7);
                        BluetoothLEHardwareInterface.RequestMtu(_deviceAddress, 185, (address, newMTU) =>
                        {
                            StatusMessage = "MTU set to " + newMTU.ToString();
                            Debug.Log(8);
                            SetState(States.Subscribe, 0.1f);
                        });
                        break;

                    case States.Subscribe:
                        StatusMessage = "Subscribing to characteristics...";
                        Debug.Log(9);
                        BluetoothLEHardwareInterface.SubscribeCharacteristicWithDeviceAddress(_deviceAddress, ServiceUUID, writeId, null, null);
                        Debug.Log(10);
                        //(notifyAddress, notifyCharacteristic) =>
                        //{
                        //    Debug.Log(10);
                        //    StatusMessage = "Waiting for user action (1)...";
                        //    _state = States.None;

                        //    // read the initial state of the button
                        //    //BluetoothLEHardwareInterface.ReadCharacteristic(_deviceAddress, ServiceUUID, notifyId, (characteristic, bytes) =>
                        //    //{
                        //    //    ProcessButton(bytes);
                        //    //});

                        //    SetState(States.ReadRSSI, 1f);

                        //}, 
                        //(address, characteristicUUID, bytes) =>
                        //{
                        //    if (_state != States.None)
                        //    {
                        //        // some devices do not properly send the notification state change which calls
                        //        // the lambda just above this one so in those cases we don't have a great way to
                        //        // set the state other than waiting until we actually got some data back.
                        //        // The esp32 sends the notification above, but if yuor device doesn't you would have
                        //        // to send data like pressing the button on the esp32 as the sketch for this demo
                        //        // would then send data to trigger this.
                        //        StatusMessage = "Waiting for user action (2)...";
                        //        Debug.Log(11);
                        //        SetState(States.ReadRSSI, 1f);
                        //    }

                        //    // we received some data from the device
                        //    ProcessButton(bytes);
                        //});
                        break;

                    case States.Unsubscribe:
                        BluetoothLEHardwareInterface.UnSubscribeCharacteristic(_deviceAddress, ServiceUUID, writeId, null);
                        SetState(States.Disconnect, 4f);
                        break;

                    case States.Disconnect:
                        StatusMessage = "Commanded disconnect.";

                        if (_connected)
                        {
                            BluetoothLEHardwareInterface.DisconnectPeripheral(_deviceAddress, (address) =>
                            {
                                StatusMessage = "Device disconnected";
                                BluetoothLEHardwareInterface.DeInitialize(() =>
                                {
                                    _connected = false;
                                    _state = States.None;
                                });
                            });
                        }
                        else
                        {
                            BluetoothLEHardwareInterface.DeInitialize(() =>
                            {
                                _state = States.None;
                            });
                        }
                        break;
                }
            }
        }
    }

    private bool ledON = false;
    public void OnLED()
    {
        ledON = !ledON;
        if (ledON)
        {
            //SendByte(0x01);
        }
        else
        {
            //SendByte(0x00);
        }
    }

    
    string FullUUID(string uuid)
    {
        string fullUUID = uuid;
        if (fullUUID.Length == 4)
            fullUUID = "0000" + uuid + "-0000-1000-8000-00805f9b34fb";

        return fullUUID;
    }

    bool IsEqual(string uuid1, string uuid2)
    {
        if (uuid1.Length == 4)
            uuid1 = FullUUID(uuid1);
        if (uuid2.Length == 4)
            uuid2 = FullUUID(uuid2);

        return (uuid1.ToUpper().Equals(uuid2.ToUpper()));
    }

    public void setPsw()
    {
        SendByte(new byte[] { 0xA0, 0x0F, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09 });
    }
    public void btnOpen()
    {
        SendByte(new byte[] { 0xA4, 0x09, 0xFF, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06 });
    }
    public void btnClose()
    {
        SendByte(new byte[] { 0xA4, 0x09, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06 });
    }
    public void btnClick()
    {
        Debug.Log(12);
        SendByte(new byte[] { 0xA7, 0x06, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06 });

    }
    void SendByte(byte[] data)
    {
        Debug.Log("總:"+ data.Length);
        for (int i = 0; i < data.Length; i++)
        {
            Debug.Log(i + " : " + data[i]);
        }

        BluetoothLEHardwareInterface.WriteCharacteristic(_deviceAddress, ServiceUUID, writeId, data, data.Length, false, (characteristicUUID) =>
        {
            Debug.Log(13);
            StatusMessage = "發(fā)送";
            BluetoothLEHardwareInterface.Log("Write Succeeded");
        });
    }
}


最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市尝盼,隨后出現(xiàn)的幾起案子吞滞,更是在濱河造成了極大的恐慌,老刑警劉巖盾沫,帶你破解...
    沈念sama閱讀 221,548評(píng)論 6 515
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件裁赠,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡赴精,警方通過(guò)查閱死者的電腦和手機(jī)佩捞,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 94,497評(píng)論 3 399
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)蕾哟,“玉大人一忱,你說(shuō)我怎么就攤上這事莲蜘。” “怎么了帘营?”我有些...
    開(kāi)封第一講書人閱讀 167,990評(píng)論 0 360
  • 文/不壞的土叔 我叫張陵票渠,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我芬迄,道長(zhǎng)问顷,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書人閱讀 59,618評(píng)論 1 296
  • 正文 為了忘掉前任禀梳,我火速辦了婚禮杜窄,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘出皇。我一直安慰自己羞芍,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 68,618評(píng)論 6 397
  • 文/花漫 我一把揭開(kāi)白布郊艘。 她就那樣靜靜地躺著荷科,像睡著了一般。 火紅的嫁衣襯著肌膚如雪纱注。 梳的紋絲不亂的頭發(fā)上畏浆,一...
    開(kāi)封第一講書人閱讀 52,246評(píng)論 1 308
  • 那天,我揣著相機(jī)與錄音狞贱,去河邊找鬼刻获。 笑死,一個(gè)胖子當(dāng)著我的面吹牛瞎嬉,可吹牛的內(nèi)容都是我干的蝎毡。 我是一名探鬼主播,決...
    沈念sama閱讀 40,819評(píng)論 3 421
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼氧枣,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼沐兵!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起便监,我...
    開(kāi)封第一講書人閱讀 39,725評(píng)論 0 276
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤扎谎,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后烧董,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體毁靶,經(jīng)...
    沈念sama閱讀 46,268評(píng)論 1 320
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 38,356評(píng)論 3 340
  • 正文 我和宋清朗相戀三年逊移,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了预吆。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 40,488評(píng)論 1 352
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡胳泉,死狀恐怖拐叉,靈堂內(nèi)的尸體忽然破棺而出觅够,到底是詐尸還是另有隱情,我是刑警寧澤巷嚣,帶...
    沈念sama閱讀 36,181評(píng)論 5 350
  • 正文 年R本政府宣布喘先,位于F島的核電站,受9級(jí)特大地震影響廷粒,放射性物質(zhì)發(fā)生泄漏窘拯。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,862評(píng)論 3 333
  • 文/蒙蒙 一坝茎、第九天 我趴在偏房一處隱蔽的房頂上張望涤姊。 院中可真熱鬧,春花似錦嗤放、人聲如沸思喊。這莊子的主人今日做“春日...
    開(kāi)封第一講書人閱讀 32,331評(píng)論 0 24
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)恨课。三九已至,卻和暖如春岳服,著一層夾襖步出監(jiān)牢的瞬間剂公,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書人閱讀 33,445評(píng)論 1 272
  • 我被黑心中介騙來(lái)泰國(guó)打工吊宋, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留纲辽,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 48,897評(píng)論 3 376
  • 正文 我出身青樓璃搜,卻偏偏與公主長(zhǎng)得像拖吼,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子这吻,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 45,500評(píng)論 2 359

推薦閱讀更多精彩內(nèi)容