[OBSOLETE] MIMOlite Garage Door Sensor with Position Indicator

Hi, I am using your device handler and my MimoLite for my driveway gate. I have a wired magnet contact sensor also attached to the Mimolite. When I use your handler I get periodic false indications that the gate is opening and or closing when it is physically closed. I also use big talker to announce that the gate is opening or is now closed via the wired sensor. When I use the jscgs350 handler I don’t have this issue at all.

Are there some settings that I can adjust to try and resolve? I like your version of the handler.

Thanks in advance

I wasn’t having this issue, but after a recent power outage at home I had to remove my device and readd it as the controller continued after coming back up to report power outage. Now I am having it happen about 15 times a day. Here is the output of the smarthings api log during a recent event.

fb04478c-9826-416e-ac9d-b6c181cd04a2 3:24:53 PM: debug Unhandled command: zw device: 12, command: 3105, payload: 02 0A 00 02
4d5480ef-a4e1-4944-b0ac-f7beba48280e 3:24:48 PM: debug 'zw device: 0F, command: 9881, payload: 00 20 03 FF FF 00 ’ parsed to [name:switch, value:on, isStateChange:false, displayed:false, linkText:Garage UBNT Switch, descriptionText:Garage UBNT Switch switch is on]
fb04478c-9826-416e-ac9d-b6c181cd04a2 3:24:43 PM: debug Unhandled command: zw device: 12, command: 3105, payload: 02 0A 00 02
fb04478c-9826-416e-ac9d-b6c181cd04a2 3:24:33 PM: debug Unhandled command: zw device: 12, command: 3105, payload: 02 0A 00 03
b1f057fd-982a-495a-b31a-c077a0e521e2 3:23:10 PM: info postEventToEndpoint: event successfully posted.
b1f057fd-982a-495a-b31a-c077a0e521e2 3:23:10 PM: debug Property Change Event switch: off (source: DEVICE)
fb04478c-9826-416e-ac9d-b6c181cd04a2 3:23:03 PM: debug Unhandled command: zw device: 12, command: 3105, payload: 02 0A 00 03
12ec6e86-220b-4bac-84b5-30639692eb9b 3:23:02 PM: debug sending push
12ec6e86-220b-4bac-84b5-30639692eb9b 3:23:02 PM: trace oncePerDayOk = true
12ec6e86-220b-4bac-84b5-30639692eb9b 3:23:02 PM: debug HH autoExecute(), newMode: null
c8fa02dc-4085-4d5c-9959-d34159b3e623 3:23:02 PM: debug HH auto execute Garage Door Closes Something Opens or Closes
c8fa02dc-4085-4d5c-9959-d34159b3e623 3:23:02 PM: trace daysOk = true
c8fa02dc-4085-4d5c-9959-d34159b3e623 3:23:02 PM: debug evt.name: closed
6752de9c-e6d0-4755-8698-9a62fb0e6099 3:23:02 PM: trace daysOk = true
6752de9c-e6d0-4755-8698-9a62fb0e6099 3:23:02 PM: debug evt.name: closed
fb04478c-9826-416e-ac9d-b6c181cd04a2 3:23:02 PM: debug Parsed command: Garage Door door is closed raw: zw device: 12, command: 3105, payload: 02 0A 00 03
fb04478c-9826-416e-ac9d-b6c181cd04a2 3:22:53 PM: debug Unhandled command: zw device: 12, command: 3105, payload: 02 0A 40 02
b1f057fd-982a-495a-b31a-c077a0e521e2 3:22:04 PM: info postEventToEndpoint: event successfully posted.
b1f057fd-982a-495a-b31a-c077a0e521e2 3:22:04 PM: debug Property Change Event switch: on (source: DEVICE)
3251d338-9e9c-4ccc-afe8-eb81cd8cd889 3:22:02 PM: debug sending push
3251d338-9e9c-4ccc-afe8-eb81cd8cd889 3:22:02 PM: trace oncePerDayOk = true
3251d338-9e9c-4ccc-afe8-eb81cd8cd889 3:22:02 PM: debug HH autoExecute(), newMode: null
6752de9c-e6d0-4755-8698-9a62fb0e6099 3:22:02 PM: debug HH auto execute Garage Door Opened Something Opens or Closes
6752de9c-e6d0-4755-8698-9a62fb0e6099 3:22:02 PM: trace daysOk = true
6752de9c-e6d0-4755-8698-9a62fb0e6099 3:22:02 PM: debug evt.name: open
c8fa02dc-4085-4d5c-9959-d34159b3e623 3:22:02 PM: trace daysOk = true
c8fa02dc-4085-4d5c-9959-d34159b3e623 3:22:02 PM: debug evt.name: open
fb04478c-9826-416e-ac9d-b6c181cd04a2 3:22:02 PM: debug Parsed command: Garage Door door is open raw: zw device: 12, command: 3105, payload: 02 0A 20 03

Hi
Is there a way to change the icon from a garage door to a sliding gate??? Thanks

Yup. In the DTH code, change where “icon:” references the image to where you’re hosting/sourcing the image. Here’s an example of an image hosted in github that I use:

“icon: https://raw.githubusercontent.com/constjs/jcdevhandlers/master/img/heat@2x.png

Hi

Thank you for the reply. I click on the link you sent but nothing opens up.

Actually there should be a png image with a transparent background; BUT, that wasn’t the intent of my reply.

Use whatever DTH code you have, host your image anywhere you want (in my example above it’s in github), look for “icon:” in your code, replace that code with yours - which should look like “icon: https://i.host.my.icon.here.com”.

More code examples:

    standardTile("modeheat", "device.thermostatMode", width: 3, height: 1, inactiveLabel: false, decoration: "flat") {
        state "heat", label:'Heat Mode', action:"heat", icon:"https://raw.githubusercontent.com/jsconstantelos/SmartThings/master/img/heat@2x.png"
    }
    standardTile("modecool", "device.thermostatMode", width: 3, height: 1, inactiveLabel: false, decoration: "flat") {
        state "cool", label:'Cool Mode', action:"cool", icon:"https://raw.githubusercontent.com/jsconstantelos/SmartThings/master/img/cool@2x.png"
    }
    standardTile("modeauto", "device.thermostatMode", width: 3, height: 1, inactiveLabel: false, decoration: "flat") {
        state "auto", label:'Auto Mode', action:"auto", icon:"https://raw.githubusercontent.com/jsconstantelos/SmartThings/master/img/auto@2x.png"
    }