熊晨

13360 ワード

WeChatウィジェットBluetooth接続2.0の説明:
1、本バージョンはANDROIDとIOSシステムのブルートゥース接続の異なる方式を区別した.2、より多くの場合に対応するリンクは以下のとおりです.
(1)デバイスのBluetoothがオンになっていない場合、Bluetoothがオンになっていると自動的に接続を開始します.(2)Bluetoothの初期化に失敗した後、3000 msごとにBluetoothアダプタを自動的に再初期化します.(3)アンドロイドがBluetoothアダプタのスキャンに失敗し、3000 msごとに自動的に再起動します.(4)IOS側取得接続されたBluetoothデバイスが空であり、3000 msごとに自動的に再取得される.(5)Android Bluetoothがリンクを開始するとスキャンが中断し,接続に失敗し,スキャンを再開する.(6)IOS側がデバイスの接続を開始した後、接続済みデバイスの取得を停止し、接続に失敗して自動的に取得を再開する.(7)接続に成功したら、システムのBluetoothをオフにし、Bluetoothアダプタをリセットします.(8)接続に成功したら、システムのBluetoothをオフにし、再びBluetoothをオンにし、自動的に接続を再開します.(9)接続に成功したら、対象のBluetoothデバイスをオフにし、自動的にスキャン(取得)を再開します.(10)接続が成功した後、ウィジェット(接続が中断されていない)を最小化し、ウィジェットを開いて接続されたことを表示します.(11)接続に成功すると,ウィジェットプロセスを殺し,接続を閉じて自動的にスキャンを再開する(取得).
3、思い出して更新して….4、フローチャート、明日か明後日か...だれか暇があったら描いてくれませんか.
私の接続はAppです.jsでやりました.AppでjsのonLaunchトリガはinit()メソッドを呼び出す.
initコード:
init: function (n) {
    this.list = [];
    this.serviceId = "6E400001-B5A3-F393-E0A9-E50E24DCCA9E";
    this.serviceId_2 = "00001803-0000-1000-8000-00805F9B34FB";
    this.serviceId_3 = "00001814-0000-1000-8000-00805F9B34FB";
    this.serviceId_4 = "00001802-0000-1000-8000-00805F9B34FB";
    this.serviceId_5 = "00001804-0000-1000-8000-00805F9B34FB";
    this.serviceId_6 = "00001535-1212-EFDE-1523-785FEABCD123";
    this.characterId_write = "6E400042-B5A3-F393-E0A9-E50E24DCCA9E";
    this.characterId_read = "6E400012-B5A3-F393-E0A9-E50E24DCCA9E";
    this.connectDeviceIndex = 0;
    this.isGettingConnected = false;
    this.isDiscovering = false;
    this.isConnecting = false;
    this.connectedDevice = {};
    console.log('init state', this.connectedDevice.state);
    if (!this.connectedDevice.state || n == 200) {
      this.connectedDevice.state = false;
      this.connectedDevice.deviceId = '';
      this.adapterHasInit = false
    }
    this.startConnect();
  }

説明:
1、 serviceId_2~6は私が知っている接続したいBluetoothデバイスのサービスIdは1つだけ書くことができます.2、characterId_writeは、接続したいBluetoothデバイスがデータを書き込む既知の特徴値です.3、characterId_readは、接続したいBluetoothデバイスがデータを読み出す既知の特徴値です.(以上の3つはいずれも比較のためであり,実際の操作は取得したsericeid,characteridに準ずる).4、connectedDeviceは接続されたデバイス情報オブジェクトです.
Init完了後、接続startConnect()の呼び出しを開始します.
startConnectコード:
startConnect: function () {
    var that = this;
    if (that.connectedDevice.state) return;
    that.connectedDevice.deviceId = "";
    that.connectedDevice.state = false;
    //                  (        )
    if (this.adapterHasInit == undefined || this.adapterHasInit) return;
    wx.showLoading({
      title: '     ',
      duration: 2000
    });
    //            
    this.listenAdapterStateChange();
    //           (    ,             )
    wx.openBluetoothAdapter({
      success: function (res) {
        console.log("          ");
        that.getBluetoothAdapterState();
        that.adapterHasInit = true;
      },
      fail: function (err) {
        console.log(err);
        wx.showLoading({
          title: '    ',
          icon: 'loading',
          duration: 2000
        })
      }
    });
  }

説明:この段落に注釈があれば、あまり言わないで、簡単です.
Bluetoothアダプタの状態の初期化に成功したら、getBluetoothAdapterState()メソッドを呼び出します.
getBluetoothAdapterStateコード:
getBluetoothAdapterState: function () {
    var that = this;
    wx.getBluetoothAdapterState({
      success: function (res) {
        console.log(res);
        var available = res.available;
        that.isDiscovering = res.discovering;
        if (!available) {
          wx.showLoading({
            title: '    ',
            icon: 'loading',
            duration: 2000
          })
        } else {
          if (!that.connectedDevice['state']) {
            that.judegIfDiscovering(res.discovering);
          }
        }
      },
      fail: function (err) {
        console.log(err);
      }
    })
  }

説明:この方法は、現在のBluetoothステータスを取得するために使用されます.
Bluetoothが使用可能であることが検出された場合は、judegIfDiscoveringメソッドを呼び出します.
judegIfDiscoveringコード:
judegIfDiscovering: function (discovering) {
    var that = this;
    if (this.isConnectinng) return;
    wx.getConnectedBluetoothDevices({
      services: [that.serviceId],
      success: function (res) {
        console.log("           ", res);
        var devices = res['devices'];
        if (devices[0]) {
          if (that.isAndroidPlatform) {
            wx.showToast({
              title: '      ',
              icon: 'success',
              duration: 2000
            });
          } else {
            that.getConnectedBluetoothDevices(256);
          }
        } else {
          if (discovering) {
            wx.showLoading({
              title: '     '
            })
          } else {
            if (that.isAndroidPlatform) {
              that.startBluetoothDevicesDiscovery();
            } else {
              that.getConnectedBluetoothDevices(267);
            }
          }
        }
      },
      fail: function (err) {
        console.log('getConnectedBluetoothDevices err 264', err);
        if (that.isAndroidPlatform) {
          that.startBluetoothDevicesDiscovery();
        } else {
          that.getConnectedBluetoothDevices(277);
        }
      }
    });
  }

説明:1、この方法はスキャン中かどうかを判断するために使用されます.2、isAndroidプラットフォームは、ウィジェットのgetSystemInfoで取得したアンドロイドデバイスかIOSデバイスかを判断します.
AndroidデバイスがstartBluetoothDevicesDiscovery()を呼び出してスキャンを開始する場合、IOSデバイスがgetConnectedBluetoothDevices()を呼び出してペアリングされたBluetoothデバイスを取得する場合.
startBluetoothDevicesDiscoveryコード:
startBluetoothDevicesDiscovery: function () {
    var that = this;
    if (!this.isAndroidPlatform) return;
    if (!this.connectedDevice['state']) {
      wx.getBluetoothAdapterState({
        success: function (res) {
          console.log(res);
          var available = res.available;
          that.isDiscovering = res.discovering;
          if (!available) {
            wx.showLoading({
              title: '    ',
              icon: 'loading',
              duration: 2000
            })
          } else {
            if (res.discovering) {
              wx.showLoading({
                title: '     '
              })
            } else {
              wx.startBluetoothDevicesDiscovery({
                services: [],
                allowDuplicatesKey: true,
                success: function (res) {
                  that.onBluetoothDeviceFound();
                  wx.showLoading({
                    title: '     '
                  })
                },
                fail: function (err) {
                  if (err.isDiscovering) {
                    wx.showLoading({
                      title: '     '
                    })
                  } else {
                    that.startDiscoveryTimer = setTimeout(function () {
                      if (!that.connectedDevice.state) {
                        that.startBluetoothDevicesDiscovery();
                      }
                    }, 5000)
                  }
                }
              });
            }
          }
        },
        fail: function (err) {
          console.log(err);
        }
      })
    }

説明:
1、スキャン付近のBluetoothデバイスのみをAndroidデバイス上でオンにします.
2、オープンに成功したコールバックで、新しいBluetoothデバイスを発見したイベントリスニングonBluetoothDeviceFound()をオンにする.
onBluetoothDeviceFoundコード:
[mw_shl_code=javascript,true]onBluetoothDeviceFound: function () {
    var that = this;
    wx.onBluetoothDeviceFound(function (res) {
      console.log('new device list has founded');
      if (res.devices[0]) {
        var name = res.devices[0]['name'];
        if (name.indexOf('FeiZhi') != -1) {
          var deviceId = res.devices[0]['deviceId'];
          console.log(deviceId);
          that.deviceId = deviceId;
          if (!that.isConnecting) {
            that.startConnectDevices();
          }
        }
      }
    })
  }

説明:1、ここで発見されたBluetoothデバイスをnameプロパティに従ってフィルタしました.2、接続が必要なデバイスのname属性を含むデバイスをフィルタリングしてdeviceIdを取得すると、接続呼び出しstartConnectDevices()メソッドが開始される.
startConnectDevicesコード:
startConnectDevices: function (ltype, array) {
    var that = this;
    clearTimeout(this.getConnectedTimer);
    clearTimeout(this.startDiscoveryTimer);
    this.getConnectedTimer = null;
    this.startDiscoveryTimer = null;
    this.isConnectinng = true;
    wx.showLoading({
      title: '    '
    });
    that.stopBluetoothDevicesDiscovery();
    wx.createBLEConnection({
      deviceId: that.deviceId,
      success: function (res) {
        console.log('    ', res);
        wx.showLoading({
          title: '    '
        });
        that.connectedDevice.state = true;
        that.connectedDevice.deviceId = that.deviceId;
        if (res.errCode == 0) {
          setTimeout(function () {
            that.getService(that.deviceId);
          }, 5000)
        }
        wx.onBLEConnectionStateChange(function (res) {
          console.log('    ', res);
          that.connectedDevice.state = res.connected;
          that.connectedDevice.deviceId = res.deviceId;
          if (!res.connected) {
            that.init('200');
          }
        });
      },
      fail: function (err) {
        console.log('    :', err);
        wx.hideLoading();
        if (ltype == 'loop') {
          array = array.splice(0, 1);
          console.log(array);
          that.loopConnect(array);
        } else {
          if (that.isAndroidPlatform) {
            that.startBluetoothDevicesDiscovery();
          } else {
            that.getConnectedBluetoothDevices(488);
          }
        }
      },
      complete: function () {
        that.isConnectinng = false;
      }
    });
  }

説明:1、接続をオンにしてスキャンを終了(ペアリングを取得)する方法.2、deviceIdに基づいて低消費電力のBluetooth接続を作成する.接続に成功したら、後続の読み書き操作を続行します.3、接続に失敗した場合、デバイスシステムに従ってstartBluetoothDevicesDiscovery()またはgetConnectedBluetoothDevices()をそれぞれ呼び出す.
getConnectedBluetoothDevicesコード:
getConnectedBluetoothDevices: function (n) {
    var that = this;
    that.isGettingConnected = true;
    wx.showLoading({
      title: '     '
    });
    wx.getConnectedBluetoothDevices({
      services: [that.serviceId],
      success: function (res) {
        console.log("           ", res);
        var devices = res['devices'],
          flag = false,
          index = 0,
          conDevList = [];
        devices.forEach(function (value, index, array) {
          if (value['name'].indexOf('FeiZhi') != -1) {
            //       FeiZhi     
            flag = true;
            index += 1;
            conDevList.push(value['deviceId']);
            that.deviceId = value['deviceId'];
          }
        });
        if (flag) {
          that.connectDeviceIndex = 0;
          that.loopConnect(conDevList);
        } else {
          that.failToGetConnected();
        }
      },
      fail: function (err) {
        that.failToGetConnected();
      },
      complete: function () {
        that.isGettingConnected = false;
      }
    });
  }

説明:BluetoothペアのBluetoothデバイスの取得に失敗した場合、または取得したリストがエアコン用failToGetConnected()である場合.
failToGetConnectedコード:
failToGetConnected: function () {
    var that = this;
    if (!that.getConnectedTimer) {
      clearTimeout(that.getConnectedTimer);
      that.getConnectedTimer = null;
    }
    that.getConnectedTimer = setTimeout(function () {
      wx.getBluetoothAdapterState({
        success: function (res) {
          console.log(res);
          var available = res.available;
          if (!available) {
            wx.showLoading({
              title: '    ',
              icon: 'loading',
              duration: 2000
            })
          } else {
            if (!that.connectedDevice['state']) {
              that.getConnectedBluetoothDevices();
            }
          }
        },
        fail: function (err) {
          console.log(err);
        }
      })
    }, 5000);
  }

説明:1、このメソッドの呼び出しに成功した後に返されるdevicesは、複数のシステムペアを含むBluetoothデバイスの配列である.2.デバイスリストがloopConnect()メソッドの呼び出しを取得した場合、接続Bluetoothデバイスの再帰呼び出しを開始します.
loopConnectコード:
loopConnect: function (array) {
    var that = this;
    var listLen = array.length;
    if (array[0]) {
      that.deviceId = array[0];
      if (!that.isConnecting) {
        that.startConnectDevices('loop', array);
      }
    } else {
      console.log('               ');
      if (!that.isAndroidPlatform) {
        that.getConnectedBluetoothDevices(431);
      }
    }
  }

説明:looConnectは、接続を作成するメソッドの接続に失敗した後、配列の最初の値を削除し、すべてのデバイスが接続されるまでメソッドを呼び出し続けます.もう少しで漏れそうになりました:app.jsのonShowでinit()メソッドを呼び出します.
詳細:
1、アンドロイドとIOSのBluetooth接続は、現在のバージョンでは異なる方法を推奨しています.Androidデバイスは、ウィジェットのBluetooth接続を直接使用し、システムのペアリングを解除します.IOSデバイスのシステムペアは、ウィジェットを開くと時効秒で接続に成功します.2、このバージョンの接続はまだ完全で、接続は自動的に終了しない(必要なものは自分で追加することができる)、成功するまで無限にスキャンして再接続します.3、リンク成功後の操作データの書き込みとnotifyのオープンを同時に行う必要がある場合は、先に書き込み、notifyのオープンを推奨します.(原因は不明です.そうしないと10008エラーが発生します).
本文はブロガー熊晨