Giter Site home page Giter Site logo

hubitat's People

Contributors

mfornander avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

hubitat's Issues

Please Add Inovelli Fan+Light Switch Notifications to Switch Dashboard

Would you please add the Inovelli Fan and Light (LZW36) Switch to this Dashboard? I believe for these you'll have to rely on the Start/Stop Notification (Nathan's Color Calculator with endpoint) commands vs. the Set Indicator commands. The one thing about using the Start/Stop Notifications is it appears that Inovelli has made command availability consistent across their entire product line :)

If you don't own one of these switches, I'd be happy to provide RM code, Event Logs, and beta testing.

Thank you!!!

Add valves to the sensor list

Water and gas valves would be great devices to monitor with the LED indicator lights. I do not know whether an irrigation system would show up as a valve but if so, I can imagine having some easily visible indicator that the water is on would be helpful. In my case, I have a gas valve that supports outdoor gas appliances.

Switch to disable the auto-off

Feature Request
Use a virtual switch to disable the auto-off. Ideally, once this virtual switch is off, then the auto-off timer would start back up keeping track of the times for each light.

Switch selector

It would be helpful to be able to select switches PER child -- I dont need all notifications to go to every switch.

@dan3 on HE forum

Inovelli Red Series Notification Settings - Feature Request

First, love the new feature that allows to control the Notification Setting for Inovelli switches directly in the app!

There are two settings in the Inovelli tool that are not in the new Notification settings. I have been using both, so would love if there were also included:

  1. Brightness Level
  2. Duration

Thanks!

Adding Metering on Switch Dashboard (Enhancement)

Would you be able to add a metering option to the Switch Dashboard?

Hubitat have implemented this functionality in their Group / Scene and it helps avoid congestion to the Z-Wave mesh - very useful when there are a lot of devices being updated at once, as is the case with the Switch Dashboard.

Thanks!

Priority not working between apps

When there are multiple instances of the app installed, the priority does not work. The last notification to turn on or off takes priority over the previous one.

Enhancement - Link to Inovelli Toolbox directly in settings

Currently, the user may need to navigate back to the instructions, or may not realize that they need to pull-up the Inovelli toolbox to get the Inovelli Configuration Value.

Recommending that the link be added directly in the configuration page. Also recommending that the description indicate that it provides support for the LED effects.

import Url needs to be on line 1 in order to work with apps

Not sure if this is an issue anymore... importUrl didn't work for me on version 1.0.0. It works now on version 1.1.0, so this may not be an issue...

Some apps have the following on line 1:
// IMPORT URL: https://raw.githubusercontent.com/MFornander/Hubitat/master/apps/SwitchDashboard/SwitchDashboard-parent.groovy

Separate Configuration Value for dimmers vs switches

Because I want some alerts to use the chase effect on my dimmers, I need to have 2 instances of the app installed.

Would it be possible to allow the children app to distinguish between the Inovelli switchs and dimmers, like it does between Inovelli and Homeseer device types, so that one child app could control both in this type of situation?

There could be an additional optional field that would be for dimmer configuration value which would be picked up by the dimmer only (when filled). When empty, the current field would be used. (Most codes are the same for both.)

Thanks!

Provide Garage Door Option for Switch Dashboard

Please provide the capability to use a garage door as a sensor, providing all states including open, closed, opening, and closing.

In a self modified version of the code I made the follow changing to facilitate this ability. My groovy abilities are almost non-existent, so I'm not sure this was the best way to do it, but it worked for my basic needs.

input name: "sensorType", type: "enum", title: "Sensor Type", required: true, submitOnChange: true,
                options: [
                    "switch": "Switch",
                    "contact": "Door/Window Sensor",
                    "lock": "Lock",
                    "motion": "Motion Sensor",
                    "water": "Water Sensor",
                    "door": "Garage Door",
                    "valve": "Valve"
                ]
private attributeValues(attributeName) {
    switch (attributeName) {
        case "switch":
            return ["on","off"]
        case "contact":
        case "valve":
            return ["open","closed"]
        case "motion":
            return ["active","inactive"]
        case "water":
            return ["wet","dry"]
        case "door":
            return ["unknown", "open", "closing", "closed", "opening"]
        case "lock":
            return ["unlocked", "unlocked with timeout", "unknown", "locked"]
        default:
            return ["UNDEFINED"]
    }
}
private capabilityName(attributeName) {
    switch (attributeName) {
        case ["switch", "lock", "valve"]:
            return attributeName
        case "door":
            return "garageDoorControl"
        default:
            return "${attributeName}Sensor"
    }
}

Bug - Some Inovelli drivers not supported

Older as well as the Hubitat version of the Inovelli drivers are not supported.

Recommending that a pop-up state that there is an issue with the driver and recommend updating. Documentation could also be updated to recommend a specific version.

Incorrect codes sent to some Inovelli switches

When the chase command is set as the Inovelli notification type, some switches receive:

Slow: 67046085
Fast: 50268869

Where the right code is:
Pulse: 83823301 (Some receive this code)

Logs sent as PM

Trigger events

I currently have a RM app that lights my LED notifications solid red normally when doors are opened. When doors open while HSM is armed, the LEDs flash red -- any way to add this logic for trigger events?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.