Posts: 1807 
	Threads: 7 
	Joined: Jul 2015
	
 Reputation: 
 121
	 
 
	
	
		Hi, 
 
No for HL you need a different image, i will PM you my mailadress so we can exchange it. 
 
BR, 
 
Erwin
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 57 
	Threads: 7 
	Joined: Jul 2016
	
 Reputation: 
 1
	 
 
	
	
		Hi Edgars, 
I was using your bluetooth script (using function ble.scan(callback)) for presence-detection - it worked fine. 
After upgrading to RC1 it stopped working: I did install the correct pkg again - no errors there and BLE-tab showing up in the GUI. The script runs fine with no errors but no bluetooth devices are found - no errors are showing up either. Tried rebooting and unplugging/plugging bluetooth stick (BL from Lairdtech).  
Any ideas? 
Thanks Bart
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 43 
	Threads: 2 
	Joined: Mar 2017
	
 Reputation: 
 3
	 
 
	
	
		Hi, 
after updateting spaceLYnk to firmware version 2.0.0. 
I don't have access to the bacnet settigns dialog any more.
     
At firmware version 1.2.1 I had access to the bacnet settings dialog.
     
    
	 
	
	
Best regards 
 
forsterm
 
	
		
	 
 
 
	
	
	
		
	Posts: 1807 
	Threads: 7 
	Joined: Jul 2015
	
 Reputation: 
 121
	 
 
	
	
		Hi, 
 
Try clearing browser cache. 
 
BR, 
 
Erwin
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 942 
	Threads: 161 
	Joined: Jul 2015
	
 Reputation: 
 33
	 
 
	
		
		
  
		05.05.2017, 13:25 
		
	 
	
		How about new firmware for Load Balancer? Maybe some good news for a finish of the week?   
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 8422 
	Threads: 45 
	Joined: Jun 2015
	
 Reputation: 
 481
	 
 
	
	
		RC2 is planned for next week, we'll prepare FW for LB as well.
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 942 
	Threads: 161 
	Joined: Jul 2015
	
 Reputation: 
 33
	 
 
	
	
		Great     Did you added something new then above list of changes(RC1)?
	  
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 8422 
	Threads: 45 
	Joined: Jun 2015
	
 Reputation: 
 481
	 
 
	
	
		Just a couple of minor bug fixes, any new features will go into next major release.
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 43 
	Threads: 2 
	Joined: Mar 2017
	
 Reputation: 
 3
	 
 
	
	
		 (05.05.2017, 10:29)Erwin van der Zwart Wrote:  Hi, 
 
Try clearing browser cache. 
 
BR, 
 
Erwin 
Hi,
 
clearing the browser cache solved the problem.
 
Thank you very much
	  
	
	
Best regards 
 
forsterm
 
	
		
	 
 
 
	
	
	
		
	Posts: 8422 
	Threads: 45 
	Joined: Jun 2015
	
 Reputation: 
 481
	 
 
	
	
		@bmodeco 
Have you tried using the universal profile?
 http://openrb.com/bluetooth-presence-detection-and-rssi
Can you post your presence script?
	  
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 477 
	Threads: 100 
	Joined: Jun 2015
	
 Reputation: 
 6
	 
 
	
	
		 (04.05.2017, 13:41)Erwin van der Zwart Wrote:  Hi, 
 
No for HL you need a different image, i will PM you my mailadress so we can exchange it. 
 
BR, 
 
Erwin 
I have the same problem with a HL 1.3.1
 
Upgrade isn't possible. 
New object is removed after restart. 
Logs are removed from 12-2016 after restart.
	  
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 57 
	Threads: 7 
	Joined: Jul 2016
	
 Reputation: 
 1
	 
 
	
	
		 (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)
  
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 79 
	Threads: 5 
	Joined: Sep 2016
	
 Reputation: 
 4
	 
 
	
		
		
		11.05.2017, 12:20 
(This post was last modified: 11.05.2017, 12:22 by Jørn.
 Edit Reason: additions
)
		
	 
	
		Unable to sort/filter any of the scenes in the scene tab. Could you add this in the next release? A real pain when trying to organize alot of them   
edit: The same really goes for trends/schedulers etc as well   
Have also noticed that in the other tabs, when filtering by category/tags, it only last for a couple of seconds, then all tags are showed again, haven't tried with another browser, but should work in Chrome i guess`?
	  
	
	
 
Best regards, Jørn.
 
	
		
	 
 
 
	
	
	
		
	Posts: 8422 
	Threads: 45 
	Joined: Jun 2015
	
 Reputation: 
 481
	 
 
	
	
		Scene filter is planned for the next version. Trends/schedulers are sorted by custom user-defined order. 
Can you explain the issues with tags that you're having in more detail?
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 79 
	Threads: 5 
	Joined: Sep 2016
	
 Reputation: 
 4
	 
 
	
	
		 (11.05.2017, 13:52)admin Wrote:  Scene filter is planned for the next version. Trends/schedulers are sorted by custom user-defined order. 
Can you explain the issues with tags that you're having in more detail? 
When trying to filter scripts by category, it works for about a second or two, and then shows all of them again.
	  
	
	
 
Best regards, Jørn.
 
	
		
	 
 
 
	
	
	
		
	Posts: 136 
	Threads: 18 
	Joined: Apr 2017
	
 Reputation: 
 1
	 
 
	
	
		 (11.05.2017, 14:39)joskilb Wrote:   (11.05.2017, 13:52)admin Wrote:  Scene filter is planned for the next version. Trends/schedulers are sorted by custom user-defined order. 
Can you explain the issues with tags that you're having in more detail?  
When trying to filter scripts by category, it works for about a second or two, and then shows all of them again. 
Hi,
 
I am seeing the exact same thing. 
 
BR, 
Mr.D
	  
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 8422 
	Threads: 45 
	Joined: Jun 2015
	
 Reputation: 
 481
	 
 
	
	
		Thanks, will have a look at this issue
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 411 
	Threads: 103 
	Joined: Oct 2016
	
 Reputation: 
 9
	 
 
	
	
		Hi, 
I've got a message "Cannot upgrade, firmware file is invalid" 
Actual firmware 2017/04/07
	 
	
	
LM5Lp, firmware: 2018.08.22 and  2021.12.15, FlashSYS v2, ARMv7 Processor rev 5 (v7l), kernel 4.4.151 and 4.4.259
 
	
		
	 
 
 
	
	
	
		
	Posts: 8422 
	Threads: 45 
	Joined: Jun 2015
	
 Reputation: 
 481
	 
 
	
	
		Are you sure you are selecting the correct firmware for your platform? 
If is still does not work, run this script once and try installing again:
 https://gist.github.com/jsopenrb/4ba040d...dbc6b74447
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 411 
	Threads: 103 
	Joined: Oct 2016
	
 Reputation: 
 9
	 
 
	
		
		
		18.05.2017, 12:04 
(This post was last modified: 18.05.2017, 12:10 by Thomas.)
		
	 
	
		 (18.05.2017, 11:27)admin Wrote:  Are you sure you are selecting the correct firmware for your platform? 
If is still does not work, run this script once and try installing again: 
https://gist.github.com/jsopenrb/4ba040d...dbc6b74447 
I use this firmware. Is it correct? 
LM5 lite:  https://dl.openrb.com/lm-17/lm5m3-20170424.img
I run your script once. Then I tried to upgrade my firmware.  But the situation didn't change. Still the same message. Cannot upgrade firmware. Firmware image is invalid.
 
 
I'm sory, my mistake. 
The correct file is LM5 lite:  https://dl.openrb.com/lm-17-imx6/lm5m3-20170424.img
The file has the same name but is placed in a different directory.
	  
	
	
LM5Lp, firmware: 2018.08.22 and  2021.12.15, FlashSYS v2, ARMv7 Processor rev 5 (v7l), kernel 4.4.151 and 4.4.259
 
	
		
	 
 
 
	 
 |