当前位置: 首页>>代码示例>>Java>>正文


Java ConnectionState类代码示例

本文整理汇总了Java中com.choosemuse.libmuse.ConnectionState的典型用法代码示例。如果您正苦于以下问题:Java ConnectionState类的具体用法?Java ConnectionState怎么用?Java ConnectionState使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


ConnectionState类属于com.choosemuse.libmuse包,在下文中一共展示了ConnectionState类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: registerDataListenerWhenConnected

import com.choosemuse.libmuse.ConnectionState; //导入依赖的package包/类
/**
 * Register a data listener to the device.
 *  - If already connected, registers it directly.
 *  - Otherwise, sets it up to register when conncted, and tries to connect if possible.
 */
public void registerDataListenerWhenConnected(
    final MuseDataListener listener, final MuseDataPacketType type) {
  Log.i(Constants.TAG, "Connecting to " + type.name() + " in state " + connectionState.name());
  if (this.connectionState == ConnectionState.CONNECTED) {
    // Already connected, go for launch.
    this.muse.registerDataListener(listener, type);
  } else {
    Log.i(Constants.TAG, "Adding connection callback...");
    this.connectionCallbacks.add(new Runnable() {
      @Override
      public void run() {
        Log.i(Constants.TAG, "Connected! running callback...");
        StreamingDeviceViewModel.this.muse.registerDataListener(listener, type);
      }
    });
    if (this.muse != null && this.connectionState == ConnectionState.DISCONNECTED) {
      // We want a connection, we have a device, may as well connect.
      this.connectToMuse();
    }
  }
}
 
开发者ID:padster,项目名称:Muse-EEG-Toolkit,代码行数:27,代码来源:StreamingDeviceViewModel.java

示例2: handleConnection

import com.choosemuse.libmuse.ConnectionState; //导入依赖的package包/类
/** Handle connection change to the muse device. */
private void handleConnection() {
  Log.i(Constants.TAG, "Connected!");
  this.connectionState = ConnectionState.CONNECTED;
  // Connected, update everything that was waiting for this...
  for(Runnable callback : this.connectionCallbacks) {
    callback.run();
  }
  this.connectionCallbacks.clear();
  notifyChange();
}
 
开发者ID:padster,项目名称:Muse-EEG-Toolkit,代码行数:12,代码来源:StreamingDeviceViewModel.java

示例3: canRecord

import com.choosemuse.libmuse.ConnectionState; //导入依赖的package包/类
/** @return if recording is possible: requires a connected device, and something to record. */
public boolean canRecord() {
  boolean somethingSelected = (useRaw || useAlpha);
  boolean recordingStopped = recorder != null && !recorder.isRunning();
  return somethingSelected && !recordingStopped
      && device.getConnectionState() == ConnectionState.CONNECTED;
}
 
开发者ID:padster,项目名称:Muse-EEG-Toolkit,代码行数:8,代码来源:RecordVM.java

示例4: receiveMuseConnectionPacket

import com.choosemuse.libmuse.ConnectionState; //导入依赖的package包/类
/**
 * Receive callback to this method each time there is a change to the
 * connection state of one of the headbands.
 *
 * @param packet A packet containing the current and prior connection states
 * @param muse   The headband whose state changed.
 */
private void receiveMuseConnectionPacket(final MuseConnectionPacket packet, final Muse muse) {
    final ConnectionState currentState = packet.getCurrentConnectionState();
    Log.d(TAG, packet.getPreviousConnectionState() + " -> " + currentState);

    MuseVersion museVersion = muse.getMuseVersion();

    if (museVersion != null) {
        Log.d(TAG, "Muse version --- firmware type: " + museVersion.getFirmwareType() +
                "\nfirmware version: " + museVersion.getFirmwareVersion() +
                "\nprotocol version: " + museVersion.getProtocolVersion());
    }

    if (currentState == ConnectionState.CONNECTED) {
        Log.d(TAG, "Muse connected: " + muse.getName());
        sendConnected();
    }

    //if (currentState == ConnectionState.)

    if (currentState == ConnectionState.DISCONNECTED) {
        Log.d(TAG, "Muse disconnected: " + muse.getName());
        // We have disconnected from the headband, so set our cached copy to null.
        this.mMuse = null;
        sendDisconnected();
    }
}
 
开发者ID:gradlman,项目名称:SensorLib,代码行数:34,代码来源:MuseSensor.java

示例5: getConnectionState

import com.choosemuse.libmuse.ConnectionState; //导入依赖的package包/类
@Bindable
public ConnectionState getConnectionState() {
  return this.connectionState;
}
 
开发者ID:padster,项目名称:Muse-EEG-Toolkit,代码行数:5,代码来源:StreamingDeviceViewModel.java


注:本文中的com.choosemuse.libmuse.ConnectionState类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。