Skip to content

Software

882 Topics 8.5k Posts

Subcategories


  • 21 Topics
    204 Posts
    M
    @gwp1 I have no doubts that MSR is a great tool for sure when you use more than one platform. But sorry I repeat myself... my goal is to only use Home Assistant in the near future and I will migrate step by step from Vera. If I can not do all automations in HA I will most certainly seriously consider combining HA with MSR. In the meantime I have found the answers on my question myself. http luup request to get values of sensor data/variables from Vera. Example for a rain sensor: http://192.168.1.xxx:3480/data_request?id=variableget&DeviceNum=xx&serviceId=urn:upnp-org:serviceId:RainSensor1&Variable=CurrentRain Within Home Assistant I created RESTful sensors to get the data in. And it works great.
  • 785 Topics
    7k Posts
    toggledbitsT
    @tunnus said in Errors after updating to MQTTController build 25139: I understood correctly, in the latest MQTTController build it won’t define these kind of attributes automatically which it used to do earlier? No, that's incorrect. It never created those attributes automatically at startup before, and it still doesn't. Your extra attributes will be created, just not automatically at startup. They will be created when the event that writes them is received by MQTTController and processed with a valid result value, but not before. That's as it always has been. I suspect you think otherwise because when you first created the entity, there were no rules to tell you those attributes didn't exist, and by the time you got around to creating those rules, the events had been received and the attributes were added.
  • 41 Topics
    544 Posts
    akbooerA
    That’s a really interesting read – thanks!
  • Remote access of Zwave stick from Z-wave server

    3
    1
    0 Votes
    3 Posts
    410 Views
    CatmanV2C
    For anyone coming on this later, you can't specify ip / port in Z-way server. You need to run socat on the z-way server host as specced here: https://forum.z-wave.me/viewtopic.php?f=3417&t=32593&p=83558&hilit=socat#p83558 If you're using ser2net you shouldn't need to use socat on the host that's serving the stick C
  • Advice on Storing and Backing Up Bind Mounts - Docker

    5
    1 Votes
    5 Posts
    626 Views
    therealdbT
    @Pabla said in Advice on Storing and Backing Up Bind Mounts - Docker: Perfect thats exactly what I was thinking of doing! Since I am using Portainer their equivalent of Docker Compose is Stacks and Portainer has a handy built in GUI back up feature which backs all that up. Just need to figure out how to automate it and store it off the host for easy future retrieval. Portainer is just a nice GUI - I'm using it too to do basic stuff like restarting a container or see the logs, especially when I'm remote. But at the end of the day, it's just some GUI over docker/docker-compose CLI commands: cd /home/casa/containers/zwavejs/ && sudo docker compose pull && sudo docker compose up -d and you're good to go. Easier to run 5-6 times per container than clicking on some random web page, but I know it's personal. The only thing that matters is a disaster/recovery strategy that you'll be able to quickly follow.
  • AltUI sans internet connection

    7
    0 Votes
    7 Posts
    477 Views
    A
    Just on AltUI: The browser would be downloading any number of resources first time round from various servers. But I would have thought the majority of servers would be using some sort of cache control header combinations to the command the browser's caching. You don't need to be downloading jquery every time you hit a web page and I think it's unlikely that would be happening. So I would have thought that the browser (for AltUI) could have cached most of what AltUI needed? What resource is the browser calling up that it can't download with the internet connection down? Maybe AltUI could have functioned but in some sort of reduced capability mode? But yes the openLuup console, as I understand it, has been written to not rely overly on outside resources. Surprising akbooer could get it work!!
  • BlueIris

    2
    0 Votes
    2 Posts
    184 Views
    PablaP
    https://github.com/elad-bar/ha-blueiris
  • MyQ

    2
    0 Votes
    2 Posts
    236 Views
    PablaP
    MyQ has notoriously been crazy difficult to integrate with any platform unless its one that MyQ directly works with. Take a look at RatGDO its completely local and works WAY better than the original MyQ integration.
  • Pentair IntelliCenter (aka Pentair Home)

    1
    0 Votes
    1 Posts
    167 Views
    No one has replied
  • Switching between z-wave software controllers

    1
    0 Votes
    1 Posts
    224 Views
    No one has replied
  • zwave-js-ui: minimote and MQTT topic

    1
    0 Votes
    1 Posts
    216 Views
    No one has replied
  • Any interest in a Subcategory for Homebridge?

    14
    0 Votes
    14 Posts
    1k Views
    C
    Thank you for the post. I have been searching for the answer for the same question. Thank you so much
  • Light automation thoughts

    37
    0 Votes
    37 Posts
    7k Views
    CatmanV2C
    @akbooer cool ta. Certainly there are many options! C
  • Setting Aeotec Siren 6 volume and duration not working

    15
    1
    0 Votes
    15 Posts
    1k Views
    SnowmanS
    I did not have the latest version 23011. Updated the controller. Unknown nodes are no longer showing up. FYI - The %(#77bb41)[WARN]ings for node 25-x came from the Aeotec Siren 6. I unpaired it and repaired it and there are still showing in the log. in case that helps you. Thanks
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • DynamicGroupController Feedback

    15
    0 Votes
    15 Posts
    1k Views
    toggledbitsT
    @Snowman said in DynamicGroupController Feedback: Forgot to mention it requires double quotes. Actually, it's a good idea to surround the entire expression in quotes, since expressions often contain special characters that YAML doesn't want to digest. In this case, that means you'd have quotes in quotes, which is fine, as long as they are different. In the expression itself, the expression language doesn't care if you use single quotes or double. filter_expression: "entity.attributes.x_hass.state == 'on'" But I really think @Pabla 's form is the best... that's a special feature of YAML that works really well for expressions, so if you want to avoid headaches, write all your expressions the way he showed. filter_expression: > entity.attributes.x_hass.state == 'on' In this case, everything idented under filter_expression is taken as part of the expression, so you can write multi-line expressions easily, too... filter_expression: > entity.attributes.leak_detector.state && entity.attributes.temperature_sensor.value < 35
  • Temperature set point changes un-expectedly

    6
    0 Votes
    6 Posts
    577 Views
    akbooerA
    @toggledbits said in Temperature set point changes un-expectedly: but that log entry in openLuup's log doesn't look like an action to me, it looks like a response Exactly so. No evidence that anything in openLuup itself triggered that. Yhere's no HTTP request from an external source either. But anything could have changed the variable. Indeed odd.
  • Zigbee2MQTT

    5
    0 Votes
    5 Posts
    427 Views
    CatmanV2C
    Yeah, I'm keen to try microwave ones C
  • Owntracks / Mosquitto String updates unexepectedly.

    Solved
    24
    0 Votes
    24 Posts
    3k Views
    CatmanV2C
    @therealdb Dude you owe me nothing C
  • Mosquitto and Owntracks

    33
    0 Votes
    33 Posts
    4k Views
    CatmanV2C
    Thanks. All of the checkers I tried on initial setup claimed it was OK. Still wouldn't work though. Whatever you chose is fine with me. Just another skill I need to understand C

Recent Topics