Shop OBEX P1 Docs P2 Docs Learn Events
eb 500 confusion — Parallax Forums

eb 500 confusion

CarbsCarbs Posts: 4
edited 2007-02-04 01:09 in BASIC Stamp
How can i send pbasic commands from one BOE to another using the eb 500?

Comments

  • FranklinFranklin Posts: 4,747
    edited 2007-02-02 02:49
    This is explained starting on page 23 of the manual.

    ▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
    - Stephen
  • CarbsCarbs Posts: 4
    edited 2007-02-02 19:32
    Okay, i have already accomplished page 23 of the manual.· I have established connections between my two eb 500's using the appropriate mac addresses.· I would like to isolate one of the boards with say an LED on it, and then from·the other·eb500 (that's connected to the computer), I would like to send commands to that board via the bluetooth connection.· Ex. A HIGH command to turn on an Led on the isolated board.· How do i send the commands from one eb 500 to aonother?
  • FranklinFranklin Posts: 4,747
    edited 2007-02-03 18:50
    You won't be able to send pbasic commands but you can send and receive ascii that the receiving stamp will interperet as commands.
    send "led2 on"
    receive string if string = 'led2 on" high led2

    ▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
    - Stephen
  • CarbsCarbs Posts: 4
    edited 2007-02-04 01:09
    ohhh i see, so use the ascii as variables. Then on the receiving board, the ascii are recognized and matched up to the appropriate commands using variables on the recieving board. Thank youu
Sign In or Register to comment.