|
| |
"Wireless J2ME Applications with Java and Bluetooth"
Vol. 7, Issue 8, p. 66
Listing 1
import javax.bluetooth.*;
import javax.microedition.io.*;
import com.atinav.bcc.*;
public class WirelessDevice implements DiscoveryListener {
LocalDevice localDevice = null;
public WirelessDevice (){
//setting the port number using Atinav's BCC
BCC.setPortName("COM1");
//setting the baud rate using Atinav's BCC
BCC.setBaudRate(57600);
//connectable mode using Atinav's BCC
BCC.setConnectable(true);
//Set discoverable mode using Atinav's BCC
BCC.setDiscoverable(DiscoveryAgent.GIAC);
try{
localDevice = LocalDevice.getLocalDevice();
}
catch (BluetoothStateException exp) {
}
// implementation of methods in DiscoveryListenerclass
// of javax.bluetooth goes here
// now do some work
}
}
|
|
All Rights Reserved
Copyright © 2004 SYS-CON Media, Inc.
E-mail: info@sys-con.com
Java and Java-based marks are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries. SYS-CON Publications, Inc. is independent of Sun Microsystems, Inc.
|