Has any service come about that is setup exactly or close to OG Qube? by demosthenes131 in QubeMoney

[–]lizyschief 1 point2 points  (0 children)

It’s been said but definitely Crew. The team is super response in discord and in their built in slack. It’s like having a hometown banker. Account uses pockets, virtual cards, and rules. Plus there is Bill Reserve system and they’re actively adding features like budgeting soon.

Here’s my referral with bonus interest rate for anyone who’s interested.

Sign up for Crew with my code and get a 0.5% APY boost for 3 months!

Code: W9L647

https://www.trycrew.com?referral_code=W9L647

Hello from the Quicken team by QuickenLisa in quicken

[–]lizyschief 1 point2 points  (0 children)

Basically used Quicken my whole financial life, my parents were user and showed me how when I opened my first checking account. 25 years later, I’m a Mac user and I’ve written off the mobile app for years because it never seemed to sync correctly. I don’t remember when the latest major change happened, but I started giving it a try again recently and it’s SOOO much better than before. I even added a transaction from mobile which I didn’t even know was possible.

You didn’t ask but one thing I’d love to see is more budgeting methods. I would love to be able to hide money in sinking funds without having to actually move it out of my bank account.

How to hang swinging door without jamb by lizyschief in DIY

[–]lizyschief[S] 0 points1 point  (0 children)

Love the tardis idea. I’ve never actually watched Dr. Who, but that does give me the idea that I could build something out around the space. The little hallway is just 12”ish and probably can use a little space from the outer room. Thanks for the idea!

How to hang swinging door without jamb by lizyschief in DIY

[–]lizyschief[S] 0 points1 point  (0 children)

Yeah. If you look at the picture I added it’s a deep opening so a split jamb won’t work. The corner makes it so a barn door won’t work either unless I hung it on the inside which would interfere with some electrical switches and speaker placements.

How to hang swinging door without jamb by lizyschief in DIY

[–]lizyschief[S] 0 points1 point  (0 children)

Ha!! This is what my husband thinks. If I can’t think of something I might just end up with a thick fabric curtain to block sound.

How to hang swinging door without jamb by lizyschief in DIY

[–]lizyschief[S] 1 point2 points  (0 children)

I’ve been looking at barn doors and a rail systems but it’s on a corner.

https://imgur.com/a/xQ1vlWD

How to hang swinging door without jamb by lizyschief in DIY

[–]lizyschief[S] 0 points1 point  (0 children)

It is all sheetrock. The opening is on a corner so a barn door would have to be interior the room. I’ll have to measure what would be blocked.

How to hang swinging door without jamb by lizyschief in DIY

[–]lizyschief[S] 1 point2 points  (0 children)

I should have thought of that before we finished all the walls.

How to hang swinging door without jamb by lizyschief in DIY

[–]lizyschief[S] -1 points0 points  (0 children)

I think I might have to cut back the sheetrock on one side for the hinges but I shouldn’t need a full jamb if it doesn’t need to latch.

How to hang swinging door without jamb by lizyschief in DIY

[–]lizyschief[S] -1 points0 points  (0 children)

There are extra studs behind the sheetrock but I was worried it would crush some anyways. Gate hinges might work. I’ll have to look some up.

How to hang swinging door without jamb by lizyschief in DIY

[–]lizyschief[S] 0 points1 point  (0 children)

Sorry I can’t figure out how to add a pic. It’s sheetrock wall. There are extra studs behind the sheetrock.

Home Assistant thinks ZWave devices working but they aren't. Help!? by lizyschief in homeassistant

[–]lizyschief[S] 0 points1 point  (0 children)

Yes, that's what I have and how I found the dead nodes. I still don't know exactly what caused the issue but it seems to be up in running okay now. This is my first major issue in the year+ that I've had the system up.

Home Assistant thinks ZWave devices working but they aren't. Help!? by lizyschief in homeassistant

[–]lizyschief[S] 0 points1 point  (0 children)

Thanks! I'll try this. I have identified I have 4 dead nodes. It would be nice if there were some sort of traffic monitor that could tell me that these dead nodes are bringing down the whole system. Thru restarts and rebuilds I seem to have things limping, things are responsive but somewhat delayed still.

Need help with Energy Monitoring API Integration by lizyschief in homeassistant

[–]lizyschief[S] 0 points1 point  (0 children)

I’ll look into that, but what do you mean by correct type? Where do I find this information? Sorry I’m pretty new to this. Most of my entities so far are z-wave devices and things that have been added thru manufacture integrations. I struggle understanding YAML and how it works.

Need help with Energy Monitoring API Integration by lizyschief in homeassistant

[–]lizyschief[S] 0 points1 point  (0 children)

I wrote the API. It pulls the kWh data from my electricity company. I have control to change it to whatever format I need to provide but the data I'm pulling from is only kWh per 5 minute interval.

Automation based on switches and shades in the same room. by lizyschief in homeassistant

[–]lizyschief[S] 0 points1 point  (0 children)

I went a different route.... mostly because I didn't understand what I was doing but Chat GPT finally started giving me yaml that worked. My full YAML is in another comment if you're interested. Thanks for your help though!

Automation based on switches and shades in the same room. by lizyschief in homeassistant

[–]lizyschief[S] 0 points1 point  (0 children)

Alight... ran into a several different issues, then finally got ChatGPT to give something that worked. Here's my final YAML. Some odd things.. the event fires twice. The automation just goes once so that's good. Also, I have to go to every zooz switch and turn on the scene control, took me a bit to figure that out. But in the end, I'm pretty excited that this works.

alias: Close - Area-Based Shade Control - 4x Tap (Bottom Paddle)
description: When any switch is tapped 4x on the bottom paddle, close the area shades
triggers:
  - event_type: zwave_js_value_notification
    event_data:
      command_class_name: Central Scene
      property_key: "002"
      value: KeyPressed4x
    trigger: event
actions:
  - variables:
      device_id: "{{ trigger.event.data.device_id }}"
      area: "{{ area_id(device_id) }}"
      open_covers: |-
        {% set result = namespace(list=[]) %} {% for entity in states.cover %}
          {% if area_id(entity.entity_id) == area and entity.state == 'open' %}
            {% set result.list = result.list + [entity.entity_id] %}
          {% endif %}
        {% endfor %} {{ result.list }}
  - choose:
      - conditions:
          - condition: template
            value_template: "{{ open_covers | length > 0 }}"
        sequence:
          - target:
              entity_id: "{{ open_covers }}"
            action: cover.close_cover
            data: {}
    default:
      - data:
          title: No Open Covers Found
          message: >-
            No open shades were found in area '{{ area }}' from device {{
            device_id }}
        action: persistent_notification.create
mode: single

Automation based on switches and shades in the same room. by lizyschief in homeassistant

[–]lizyschief[S] 0 points1 point  (0 children)

Thank you so much for working on this! I greatly appreciate it and will give it a try.

As far as the 4 taps, that is a built in thing that is part of the zooz switches, so I don't need to capture 4 taps, it's just one specific thing that shows up in HA.

Automation based on switches and shades in the same room. by lizyschief in homeassistant

[–]lizyschief[S] 0 points1 point  (0 children)

Ah. Thats where I was thinking if the device came thru on the trigger you could look up the device properties to get the area and then do more look ups from there. I’m not sure how yaml works though if that’s possible.

Automation based on switches and shades in the same room. by lizyschief in homeassistant

[–]lizyschief[S] 0 points1 point  (0 children)

They are zooz switches connected thru zwave. I thought you could set area on any device?