When I try running javabluetooth from BluetoothServer in demo it gives me the following error please help.
Exception in thread "main" org.javabluetooth.stack.hci.HCIException: Port serial not
found. javax.comm.NoSuchPortException
at org.javabluetooth.stack.hci.UARTTransport.<init>(UARTTransport.java:7
2)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
When I try running javabluetooth from BluetoothServer in demo it gives me the following error please help.
Exception in thread "main" org.javabluetooth.stack.hci.HCIException: Port serial not
found. javax.comm.NoSuchPortException
at org.javabluetooth.stack.hci.UARTTransport.<init>(UARTTransport.java:7
2)
even i am getting the same problem can anyone help me out
That error is sent because in the default example the code says something like:
HCDriver.init(new UARTTransport("serial"));
Of course you do not have a port called serial insted you must have a por called COM9 or something like that.
So you take the example code and compile it with different port name.
I hope this helps.
Regards.