Package zephyropen.port.bluetooth

Examples of zephyropen.port.bluetooth.SearchSPP


   * @param ame
   *            is the bluetooth name to search for
   */
  public BioharnessDevice(String name) {

    port = new SearchSPP(name);

    command = new Command(PrototypeFactory.bioharness);

    command.add(ZephyrOpen.deviceName, name);

View Full Code Here


   *
   * @param name is the blue tooth friendly name of the HXM
   */
  public HrmDevice(String name) {
   
    port = new SearchSPP(name);

    command = new Command(PrototypeFactory.hrm);
   
    command.add(ZephyrOpen.deviceName, getDeviceName());
   
View Full Code Here

   *
   * @param name is the blue tooth friendly name of the HXM
   */
  public HxmDevice(String deviceName) {
   
    port = new SearchSPP(deviceName);
   
    command = new Command(PrototypeFactory.hxm);
   
    command.add(ZephyrOpen.deviceName, getDeviceName());
  }
View Full Code Here

TOP

Related Classes of zephyropen.port.bluetooth.SearchSPP

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.