18.05.2017, 14:23
(09.05.2017, 10:05)bmodeco Wrote:(08.05.2017, 08:53)admin Wrote: @bmodeco
Have you tried using the universal profile?
http://openrb.com/bluetooth-presence-detection-and-rssi
Can you post your presence script?
Hi admin,
I am using the script on thread : http://forum.logicmachine.net/showthread...t=presence
It worked fine before RC1. Tried rebooting, unplugging and so on - no difference.
Thanks Bart
Code:require('ble')
-- enable ble
ble.up()
list = {}
-- mac -> group address mapping
known = {
['88:0F:10:10:F2:8A'] = '1/1/1',
['88:0F:10:4A:2C:36'] = '1/1/2',
}
ctime = os.time()
function callback(addr)
local now, delta
now = os.time()
delta = now - ctime
if addr then
if not list[ addr ] then
log('BLE found ' .. addr)
if known[ addr ] then
grp.write(known[ addr ], true, dt.bool)
end
end
list[ addr ] = now
end
-- check for missing devices each 5 seconds
if delta < 0 or delta > 5 then
for addr, time in pairs(list) do
delta = now - time
if delta < 0 or delta > 60 then
log('BLE missing ' .. addr)
list[ addr ] = nil
if known[ addr ] then
grp.write(known[ addr ], false, dt.bool)
end
end
end
ctime = now
end
end
ble.scan(callback)
Hi admin,
Any idea what is causing this and if this will be fixed in RC2?
Thansk,
Bart