Hide the Hub

Hello,

I use this plugin for access to the Ring Video Doorbell. I do not have a Wink Hub. I noticed that the hub device does not have the parameter “onDashboard”. Is there a method to hide the Wink Hub device so I don’t see it as a failed device?

[quote=“tomtcom, post:1, topic:194919”]Hello,

I use this plugin for access to the Ring Video Doorbell. I do not have a Wink Hub. I noticed that the hub device does not have the parameter “onDashboard”. Is there a method to hide the Wink Hub device so I don’t see it as a failed device?[/quote]

Found the answer from another thread, this works >

luup.set_failure(false,83)
return true

(83 is my Wink device number)

+1 - hides my DVR plug-in error very nicely.

Where do you put that code? and what is the code to “un”- hide it?

Thanks in advance.

I put it in my startup LUA, specifically:

luup.set_failure(false,88) – DVR plug-in
luup.set_failure(false,73) – garage man-door
return true

That second one is for a door sensor. Does not work, it still shows “can’t detect device” from time to time although the device works fine.

[quote=“Don Phillips, post:5, topic:194919”]I put it in my startup LUA, specifically:

luup.set_failure(false,88) – DVR plug-in
luup.set_failure(false,73) – garage man-door
return true

That second one is for a door sensor. Does not work, it still shows “can’t detect device” from time to time although the device works fine.[/quote]

Thanks!