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
}
}