I’m using a Smartthings Multipurpose Sensor on my garage door. I’ve seen old references in this forum to the “new” vs. “old” sensors - mine was purchased a week ago and has the coin battery in it.
I have configured it for use on a garage door, and oriented it correctly on the door (with the raised bar on the cover oriented vertically, on the right side of the sensor).
It works totally reliably when the door is opened, giving me both a vibration alert and showing “open”.
Roughly 25% of the time when I close the garage door, it subsequently shows status as still “open”. It does, however, give the vibration alert when closing. Tapping the sensor seems to make it unstick and report “closed”.
It is mounted on the top panel (of 5 panels I believe), to give the earliest possible indication that it is open. To my untrained eye that top panel looks just as vertical as the rest of the panels, so I don’t think the cause is that top panel being not quite vertical.
It is reporting temperature OK. So this means it’s not out of range, correct? I would expect if it was out of range it would report null for temperature (which maybe the GUI would report as -273 Celcius?). In case it might be a range issue - the sensor is located one floor down, and about 15’ horizontally from the hub.
Battery is at 100%.
Any suggestions on what I might be doing wrong? I’d like to improve reliability of it reporting “open” only when it is actually open.
Thanks … Mike
tgauchat
(ActionTiles.com co-founder Terry @ActionTiles; GitHub: @cosmicpuppy)
2
What does the Three-Axis value say in the Thing detail tiles?
How do I get that detail? I can’t see it from the ST app (My Home > Things > The sensor > Right Now) - I can just see Active/Inactive, temperature, battery, and a refresh logo.
1 Like
tgauchat
(ActionTiles.com co-founder Terry @ActionTiles; GitHub: @cosmicpuppy)
4
By gosh, you’re right! They removed it from the device detail view:
This used to contain an “x,y,z” value indicating the orientation!
I have opened/closed it three times and each time the sensor correctly identifies it as garage-closed. Murphy’s Law dictates that I can keep opening and closing and fail to reproduce the problem until after I am away from my PC.
1 Like
tgauchat
(ActionTiles.com co-founder Terry @ActionTiles; GitHub: @cosmicpuppy)
7
IF I understand the source code for the Device Type Handler correctly, then I believe it only responds to the “Z-Axis” to indicate open or closed. < +/-100 = open, > +/- 900 = closed.
I’ll check the Z-axis value next time it fails (with my luck it will be when I am leaving for work and I won’t be able to check until I get home, at which point I will open & close the garage door again and it will probably not fail that time).
I wonder what unit it is measuring? Clearly not whole degrees, since it needs to be at least 900 to register as closed. And there’s this whole range (from 100-900 where the state remains unchanged.
tgauchat
(ActionTiles.com co-founder Terry @ActionTiles; GitHub: @cosmicpuppy)
10
It measures G force (acceleration), where 1024 apparently ≈ 1g along the particular x, y, or z Axis.
Using trigonometry, you can combine the three vectors to determine the orientation and even the movement of the device in any 3D vector.
It definitely should not be failing like that. Get in touch with support@smartthings.com and they can replace it for you (feel free to link to this post).
I just received a new one of these today and had similar results as a garage door tilt sensor, very unreliable and it’s going back.
tgauchat
(ActionTiles.com co-founder Terry @ActionTiles; GitHub: @cosmicpuppy)
16
The Monoprice or… ummm… I forget the other white label brand… Z-Wave tilt sensor has been working fine for me as an alternative.
It contains a cylinder with a physical ball bearing inside. Never fails, and I have it tilted so that if the door is open even a couple inches it will detect.
Thanks. I’m actually using the temperature sensor feature of this sensor (as well as tilt), so I’ll give the replacement some time to see if it behaves.
If the replacement misbehaves also, I’ll look at the Monoprice one.
Update - the replacement behaves the same way - intermittently telling me it’s open. What’s odd is that I have a SHM rule that sends me a push notification when the door opens and when it closes. That notification does not trigger when the sensor decides it has gone from closed (correct value) to open (incorrect value).
So I think I’ll be sending the replacement back, and maybe look at Monoprice.
BTW, maybe this is a range issue. It’s only my second Zigbee device. But TBH if it was a range issue I would expect it to report “unknown” rather than “open”.
Did you have any further luck with this? I just installed a couple multipurpose sensors on my single panel/swing-tilt garage doors and they are intermittently reporting open as well in the open position. The doors, when open, are at a very slight downward angle so that might be throwing things off. I just wish they implemented offset variance in the device handler for this…ugh. I thought it might have been distance from the hub at first but I noticed it detects everything else fine like temps, and the accelerometer detects when the door is moving.
I have a similar issue as the OP; but the multipurpose sensor doesn’t report “open” about 50% of the time. (The “close” event is not reported during this bad sequence also, but I assume it’s getting filtered out because since it was never “opened”, why report the closure when it is already closed…)
Same configuration as OP:
“new” sensor (coin battery version)
one week old (100% battery life)
configured for garage door (mounted vertically, bar on right)
mounted on top garage door panel
Temperature reporting ok, accelerometer is active during door movement and goes inactive when not.
I did:
And then clicked on the threeAxis link to get the “threeAxis states” log.
I correlated the threeAxis values with the missing “open” and “close” states.
On the missing open events, the lowest abs(z) values range from 108-115.
On the missing “close” events, the highest abs(z) values range from 1053-1070
I also looked at the code and concur with:
So z-axis values are, at time, above the 100 threshold to be considered an “open” event. Hence no “open” event.
The z-axis values are appropriate for the “close” event and should cause a posting of a “close” event. But as stated earlier, I think it might be that since the door was originally "close"d, and it never got the missing “open” event, it would toss the “close” event to prevent redundant “close” events.
Any idea on why the accelerometer is reading too high (above 100) on “opens”? And ideas on fixing it?