Connect to puck.js from BASIC

Posted on
  • My project (just completed) is to add support for the puck.js device into the BASIC interpreter of my "Best Calculator, IOT edition" app. The latest update was just published on the Windows app store.

    Hooking up the puck.js was pretty simple (which is good -- man, some devices are just a nightmare!). You jut send your program, 20 bytes at the time, to the TX Bluetooth characteristic and pull the resulting data back out from the RX characteristic.

    Here's some pretty simple BASIC code to turn on an LED...

    CLS BLUE
    PRINT "Turn puck.js LED1 on"
    
    device = ↲
        Bluetooth.PickDevicesName(“Puck.js*”)
    IF (device.IsError)
        PRINT "No device was picked"
    ELSE
        puck = device.As (“Puck.js”)
        status = puck.Tx ("LED1.set();\n")
        REM The puck will reply to the command,
        REM but this program won't pick it up.
    END IF
    
  • Nice, thanks for posting up! That could be really useful!

  • Post a reply
    • Bold
    • Italics
    • Link
    • Image
    • List
    • Quote
    • code
    • Preview
About

Connect to puck.js from BASIC

Posted by Avatar for ShipwreckSoftware @ShipwreckSoftware

Actions