projects
/
openhab-process.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Добавлены варианты протоколирования.
[openhab-process.git]
/
mqtt-bt
/
scan-beacons
diff --git
a/mqtt-bt/scan-beacons
b/mqtt-bt/scan-beacons
index 17e553308c15a067544f4b337a62603469215b39..fcd3c207ebe7242050927fb280d95c088b93e077 100644
(file)
--- a/
mqtt-bt/scan-beacons
+++ b/
mqtt-bt/scan-beacons
@@
-64,8
+64,11
@@
end
function printLog(str)
if logging=="yes" then
function printLog(str)
if logging=="yes" then
- capture("logger -t beaconmon "..str)
- else
+ capture("logger -t beaconmon \""..str.."\"")
+ print(str)
+ elseif logging=="syslog" then
+ capture("logger -t beaconmon \""..str.."\"")
+ elseif logging=="stdout" then
print(str)
end
end
print(str)
end
end
@@
-99,9
+102,13
@@
function trim(s)
return (s:gsub("^%s*(.-)%s*$", "%1"))
end
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)
function mqtt_pub(path,value)
res=mqtt_client:publish(path,value)
- printLog("Pub "..path.."
"..value.."
returned "..res);
+ printLog("Pub "..path.." returned "..res);
return res
end
return res
end
@@
-114,11
+121,13
@@
function process_packet(packet)
local name
mac = packet['Address']
local name
mac = packet['Address']
- uuid = packet['
uuid
']
+ uuid = packet['
UUID
']
type = packet['Type']
name = packet['Name (complete)']
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
details=uuid
elseif name then
if not(type) then