Search results

  1. 123

    Premise Amazon Down

      I'm still using Premise as well but together with Home Assistant which now handles most of the automation chores as well as the frontend. The two communicate via MQTT.   I use Premise to control two "legacy" devices via native drivers and custom modules that I created a long time ago:  ...
  2. 123

    Premise MQTT for Premise.

    ???   It publishes (sends) and subscribes (receives).   Example:   If KitchenLight's PowerState changes from true to false, a payload of 0 is published to: premise/home/kitchenlight/powerstate   It is also subscribed to: premise/command/kitchenlight/powerstate   So if I publish a payload...
  3. 123

    Hubitat Black Friday Price

      FWIW, the standard model is a subset of the Pro model. They basically do the same thing with the key difference being the Pro version provides a Telnet interface. That's what allows third-party software to access it locally.  ...
  4. 123

    Best home automation controller for wifi and IoT

      Quite the avid endorsement. How many ELK integrations did you research to arrive at this glowing conclusion?     ELK integrations have been around for over ten years. I can state that with confidence because I developed one for Premise a decade ago. It supports: Areas Zones Outputs PLC...
  5. 123

    Premise MQTT for Premise.

      Sorry but I don't know.    You want to write code for MiniBroker that subscribes to an MQTT topic. Effectively, you want to use an MQTT Client service but Premise doesn't have one.   Even SyseventBroker isn't an MQTT Client. It farms out that function to Node-Red. The two communicate via a TCP...
  6. 123

    Premise MQTT for Premise.

      I'm using Home Assistant to generate a UI.   For example, I have the following light in Premise: Home.House.First.Foyer.FoyerLight   In Home Assistant, I define an MQTT Light:   - platform: mqtt     name: "Foyer"         state_topic: "premise/home/house/first/foyer/foyerlight/powerstate"    ...
  7. 123

    OmniLinkBridge to integrate Home Assistant, SmartThings, Node-RED

    @pete_c   In state_topic you have a leading slash: state_topic: "/GarageDoor1/SENSOR"   whereas later you show the topic used in MQTT Explorer does not have a leading slash:  
  8. 123

    Premise MQTT for Premise.

    Go to Devices > CustomDevices > Syseventbroker, scroll to the very bottom of the Properties pane, and there you'll find a section called ExportOpenHAB. Click Reset first and then check the contents of the section above called ExportParameters. This is where it identifies the host name of your...
  9. 123

    Best home automation controller for wifi and IoT

      Whatever I said that gave you that impression, it wasn't my intention. It's entirely possible to create an attractive UI with openHAB's HABpanel (see examples here). Mapping a widget's elements in HABpanel is no more onerous than in Home Remote. Both lack complex abstractions so you'll be...
  10. 123

    Best home automation controller for wifi and IoT

      Yes, I used it for awhile almost a year ago (discussed its use here: A fresh new face for Premise).   Based on my experiences at the time, the developer provided excellent support and frequent product updates. The reason why I abandoned it is because even creating a basic UI requires a fair...
  11. 123

    Best home automation controller for wifi and IoT

      I checked out the docs for ELK M1 integration. Without a doubt, Hubitat rules supreme … in installation complexity; that's a lot of individual copy/paste steps to get full ELK M1 functionality. I think that aspect could use some streamlining.    Where's the list of supported devices and...
  12. 123

    How Do Folks Get By Using Only A Mobile At Home With No Land line?

    Our household has been using VOIP service for about 8 years now. We use voip.ms and have no complaints; service is top-notch. We use the cheapest plan (pay as you go) and, based on our rather limited usage of it, it ends up costing about $11/month. VOIP interface is an Obihai Obi110 and we have...
  13. 123

    Smart light bulbs may be used to hack personal info

    The article about Lifx is dated February 2019 and, at its very end, it states the security flaw was corrected. The other article mentions bulbs that can be controlled via IR. I'm not aware of any IR control for Lifx bulbs (nor Philips Hue). It uses Wi-Fi (and the other uses ZigBee). FWIW, I...
  14. 123

    Premise MQTT for Premise.

    You're welcome!     A few thoughts: Home Assistant's scripts provide more flexibility than its scenes. The same is true for Premise. A scene is strictly 'set this thing to on, this other thing to 50%, yet another to off, etc' whereas a script also allows you to do some conditional logic (if this...
  15. 123

    Premise MQTT for Premise.

    Pete,   With all due respect, this thread is about using MQTT with Premise. Your question is about Omnistat/Omnilink/climate integration is off-topic (and there's a dedicated thread for it elsewhere … where you are currently participating). I don't own an Omni panel nor use the Omnilink...
  16. 123

    Premise MQTT for Premise.

    Do you want to:   Turn your Premise scenes on/off from Home Assistant?   OR   Convert your Premise scenes to Home Assistant scenes?     If it's the first, then create an MQTT Switch in Home Assistant and follow this example (the scene's name in Premise is EveningExterior):   - platform: mqtt...
  17. 123

    Why Are All Automation Engines These Days Trigger Based?

      http://drzzs.com/homeassistant-101/
  18. 123

    Why Are All Automation Engines These Days Trigger Based?

      In the big picture, there are external devices being monitored/controlled (either via some wireless or wired protocol). The logic engine's "internal registers" get populated through some kind of process, most efficiently by an event-based one.   Once the "internal registers" are populated...
  19. 123

    Why Are All Automation Engines These Days Trigger Based?

    Event-based I assign a task for you to complete and when it's done you report back to me.   Polling I assign a task for you to complete and then repeatedly ask you if it's done.   Clearly the event-based technique involves far less communication (polling: is it done? is it done? is it done?). In...
  20. 123

    Why Are All Automation Engines These Days Trigger Based?

    In Home Assistant you can specify multiple triggers and the default behavior is to logically OR them.   Pseudo-code (implicit logical OR):   trigger:  - kitchen light is on  - bedroom light is on  - hallway motion is on   If you want to logically AND them then you must create an expression.  ...
Back
Top