projects
/
openhab-process.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Избегаем "залипания" последнего сообщения в MQTT.
[openhab-process.git]
/
mqtt-bt
/
scan-beacons
diff --git
a/mqtt-bt/scan-beacons
b/mqtt-bt/scan-beacons
index d6d0d26f0006f64c68ca5a2afe6561c39a08b607..5512aa9a009aa3c03531ba19c217c41687e0e5a3 100644
(file)
--- a/
mqtt-bt/scan-beacons
+++ b/
mqtt-bt/scan-beacons
@@
-98,10
+98,7
@@
end
function printLog(str)
if logging=="yes" then
capture("logger -t beaconmon \""..str.."\"")
function printLog(str)
if logging=="yes" then
capture("logger -t beaconmon \""..str.."\"")
- print(str)
- elseif logging=="syslog" then
- capture("logger -t beaconmon \""..str.."\"")
- elseif logging=="stdout" then
+ else
print(str)
end
end
print(str)
end
end
@@
-138,7
+135,7
@@
local function starts_with(str, start)
end
function mqtt_pub(path,value)
end
function mqtt_pub(path,value)
- res=mqtt_client:publish(path,value)
+ res=mqtt_client:publish(path,value
,0,false
)
printLog("Pub "..path.." returned "..res);
return res
end
printLog("Pub "..path.." returned "..res);
return res
end
@@
-186,7
+183,7
@@
function process_packet(packet)
if not pcall(mqtt_pub,mqtt_path,dump(packet)) then
printLog('Reconnecting MQTT...')
if not pcall(mqtt_pub,mqtt_path,dump(packet)) then
printLog('Reconnecting MQTT...')
- mqtt_client:connect(mqtt_
id
)
+ mqtt_client:connect(mqtt_
host,mqtt_port
)
end
end
end
end