Shop OBEX P1 Docs P2 Docs Learn Events
touble using the easyBT module — Parallax Forums

touble using the easyBT module

Kris CardoenKris Cardoen Posts: 46
edited 2011-12-11 10:56 in Accessories
Hi,

I have installed the easyBT module on my BoeBot.

I have detected and added de bluethoot device in windows.

When I try the test from the documentation it doesn't work.
:frown:
the test script is (see below)
After loading the code to the stamp I open a first debug window. that works. In the second window I can select two ports. port 1 and port 5
No succes
When I go to the properties in windows of the bluethoot device I can see that the port is COM22.
But in the stamp editor I can not select that port.
I'm using a windows 7 PC

Does anyone knows how to solve or troubleshoot this problem?

Thanks

' {$STAMP BS2}
' {$PBASIC 2.5}
RX CON 2 'Receive Pin
TX CON 0 'Transmit Pin
Baud CON 84 '9600 Baud
combyte VAR Byte 'Communication Byte
DEBUG "Use This Screen for Display",CR
DO
'Wait for a first byte indicating an active Bluetooth connection
SERIN RX, Baud, [combyte]
DEBUG combyte
LOOP
Sign In or Register to comment.