The boot code also provides some useful functions:
*`Bangle.messageResponse = function(msg,response)` - send a yes/no response to a message. `msg` is a message object, and `response` is a boolean.
*`Bangle.musicControl = function(cmd)` - control music, cmd = `play/pause/next/previous/volumeup/volumedown`
*`Bangle.http = function(url,options)` - make an HTTPS request to a URL and return a promise with the data. Requires the [internet enabled `Bangle.js Gadgetbridge` app](http://www.espruino.com/Gadgetbridge#http-requests). `options` can contain:
*`id` - a custom (string) ID
*`timeout` - a timeout for the request in milliseconds (default 30000ms)
*`xpath` an xPath query to run on the request (but right now the URL requested must be XML - HTML is rarely XML compliant)