wearscript / wearscript-android

JavaScript with Batteries Included for Google Glass
wearscript.com
215 stars 55 forks source link

IBeacons #215

Closed kurtisnelson closed 10 years ago

kurtisnelson commented 10 years ago

IBeacons work.

  WS.sensorOn('ibeacon', 1000);

    WS.subscribe('ibeacon:2f234454-cf6d-4a0f-adf2-f4911ba9ffa6', function(chan, uuid, distance, major, minor) {
        if(major == "33" && minor == "2")
            WS.say(distance);
    });