Skip to content

Software

852 Topics 8.2k 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.

  • 758 Topics
    7k Posts
    CrilleC

    After upgrade from 24366 to 25016 toggle on Vera (openLuup) lock entity doesn't seem to work.

    VeraController log level 5
    24366:

    [latest-24366]2025-01-20T20:26:49.724Z <VeraController:INFO> VeraController#vera perform action toggle.toggle on Lock#vera>device_10016 with [Object]{ } [latest-24366]2025-01-20T20:26:49.725Z <VeraController:5:VeraController.js:514> [VeraController:verarequest] requesting http://127.0.0.1:3480/data_request?id=action&serviceId=urn%3Amicasaverde-com%3AserviceId%3ADoorLock1&action=SetTarget&newTargetValue=0&DeviceNum=10016&output_format=json&_r=1737404809725 ([Object]{ })

    25016:

    [latest-25016]2025-01-20T20:30:25.457Z <VeraController:INFO> VeraController#vera perform action toggle.toggle on Lock#vera>device_10016 with [Object]{ } [latest-25016]2025-01-20T20:30:25.458Z <VeraController:5:VeraController.js:1210> VeraController#vera no configured implementation for toggle.toggle on Lock#vera>device_10016; calling super [latest-25016]2025-01-20T20:30:25.458Z <VeraController:INFO> VeraController#vera perform action lock.set on Lock#vera>device_10016 with [Object]{ "state": false } [latest-25016]2025-01-20T20:30:25.461Z <VeraController:5:VeraController.js:1255> VeraController#vera sending action request [Object]{ "newTargetValue": "0", "DeviceNum": 10016, "id": "action", "serviceId": "urn:upnp-org:serviceId:DoorLock1", "action": "SetTarget" } [latest-25016]2025-01-20T20:30:25.461Z <VeraController:5:VeraController.js:515> [VeraController:verarequest] requesting http://127.0.0.1:3480/data_request?newTargetValue=0&DeviceNum=10016&id=action&serviceId=urn%3Aupnp-org%3AserviceId%3ADoorLock1&action=SetTarget&output_format=json&_r=1737405025461 ([Object]{ }) [latest-25016]2025-01-20T20:30:25.463Z <VeraController:NOTICE> VeraController#vera action lock.set([Object]{ "state": false }) on Lock#vera>device_10016 succeeded

    I tried to log an issue in Mantis Bug Tracker but I can't log in anymore?

  • 41 Topics
    544 Posts
    akbooerA

    That’s a really interesting read – thanks!

  • BlueIris

    2
    0 Votes
    2 Posts
    85 Views
    PablaP
    GitHub - elad-bar/ha-blueiris: Integration with Blue Iris Video Security Software GitHub - elad-bar/ha-blueiris: Integration with Blue Iris Video Security Software

    Integration with Blue Iris Video Security Software - elad-bar/ha-blueiris

  • MyQ

    2
    0 Votes
    2 Posts
    122 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
    78 Views
    No one has replied
  • Switching between z-wave software controllers

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

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

    14
    0 Votes
    14 Posts
    568 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
    2k Views
    CatmanV2C

    @akbooer cool ta. Certainly there are many options!

    C

  • Setting Aeotec Siren 6 volume and duration not working

    15
    0 Votes
    15 Posts
    887 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
    516 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
    281 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
    216 Views
    CatmanV2C

    Yeah, I'm keen to try microwave ones

    C

  • Owntracks / Mosquitto String updates unexepectedly.

    Solved
    24
    0 Votes
    24 Posts
    1k Views
    CatmanV2C

    @therealdb Dude you owe me nothing

    C

  • Mosquitto and Owntracks

    33
    0 Votes
    33 Posts
    2k 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

  • Device that comes on on Openluup restart

    5
    0 Votes
    5 Posts
    210 Views
    CatmanV2C

    @akbooer Isn't that a toggle request though, and the next line saying the Target is zero(i.e. off)

    C

  • Hypothetical file system monitoring question

    5
    0 Votes
    5 Posts
    182 Views
    CatmanV2C

    Thanks. I'll start there!

    C

  • Any HomeSeer users here?

    2
    0 Votes
    2 Posts
    172 Views
    Black CatB

    Yes, using both HS3 & HS4. Not an expert but then again it easy to use as it is without tweaking.

Recent Topics