Merge branch 'master' of rvb.name:openhab-process
[openhab-process.git] / mqtt-bt / scan-beacons
index 4f2a01cd31ed4ddb90ee4919a6ec3538cd3fd8a1..17e553308c15a067544f4b337a62603469215b39 100644 (file)
@@ -55,7 +55,9 @@ end
 function mqtt_encode(str)
   if (str) then
     str = string.gsub (str, "\n", "")
+    str = string.gsub (str, ":", "-")
     str = string.gsub (str, "/", "-")
+    str = string.gsub (str, " ", "_")
   end
   return str   
 end
@@ -119,10 +121,14 @@ function process_packet(packet)
   if type=='iBeacon' then
     details=uuid
   elseif name then
-    type="name"
+    if not(type) then
+      type="name"
+    end  
     details=name
   else
-    type='unknown'
+    if not type then 
+      type='unknown'
+    end  
     details=mac
   end
 
@@ -185,15 +191,21 @@ function read_loop()
             value=split(value)[1]
           end
           packet[name]=value
+        elseif #t==1 and name then
+          if not(packet[name..'.list']) then
+            packet[name..'.list']={}
+          end  
+          table.insert(packet[name..'.list'],(trim(t[1])))
         end  
       end  
 
       if starts(str,'> HCI Event: LE Meta Event (0x3e)') then
         inbound=true
+        name=nil
       elseif starts(str,'RSSI:') then
         inbound=false
         process_packet(packet)
-        packet={}  
+        packet={}
       end
       
     end