From: Roman Bazalevskiy Date: Wed, 17 Oct 2018 17:52:31 +0000 (+0300) Subject: Merge branch 'master' of rvb.name:openhab-process X-Git-Url: https://git.rvb.name/openhab-process.git/commitdiff_plain/fe0c9a90d38a6ca5a01707235cfbc8bbe951510e?hp=f814617cb418b1557408bdd97eb265618a45b712 Merge branch 'master' of rvb.name:openhab-process --- diff --git a/mqtt-bt/scan-beacons b/mqtt-bt/scan-beacons index fd50f9d..192539e 100644 --- a/mqtt-bt/scan-beacons +++ b/mqtt-bt/scan-beacons @@ -99,6 +99,10 @@ function trim(s) return (s:gsub("^%s*(.-)%s*$", "%1")) end +local function starts_with(str, start) + return str:sub(1, #start) == start +end + function mqtt_pub(path,value) res=mqtt_client:publish(path,value) printLog("Pub "..path.." returned "..res); @@ -114,11 +118,13 @@ function process_packet(packet) local name mac = packet['Address'] - uuid = packet['uuid'] + uuid = packet['UUID'] type = packet['Type'] name = packet['Name (complete)'] - if type=='iBeacon' then + print(dump(packet)) + + if type and starts_with(type,'iBeacon') then details=uuid elseif name then if not(type) then