Homekit Infused 5 (HKI) v2023.1.3

It is exactly the same, the one on my repo is just modified to work for @outlook, @live and @hotmail addresses as it didn’t work for me in the past. It might be possible that core works with them by now, however if it doesn’t just get mine from the repo. If you use gmail or something of that sorts then you can simply skip the custom-component as you don’t need it.

@jimz011 long time ago :slight_smile:
i need your help, i am finally moving over to HACS, in preparation of your next release, i am still on some older homekit release
there is one resource thats bugging me, since i didnt have HACS , i had a bunch of old resources, one resource card-tools , was still on 0.4.2 release, that one is i think also needed for the popup-card
i use that one also, to auto populate the light popup card, to see what lights are currently on

on 0.4.2 , screenshot 1 it works
on 2.0, screenshot 2, i get a strange notification card
on 2.3 , screenshot 3 , it gets even worse

any idea?
2 1 3

Thomas Lovens card tools is in HACS FWIW…

yes, card-tools is hacs, but seems latest version s bugging me
but already resolved, i also needed to updated the popup-card tool , now the red line is gone

Popup card is no longer needed if you have browser-mod installed. This was updated last week (after I had written the preparation docs). I will edit those before the actual release.

So you got it working now?

yeah, got it working, but still with thje popup-card
so i can just remove it and install browser-mod ? no code change needed?

That is correct, no code change required, browser mod supports “legacy” popup cards now.

ok, almost there,

seems if i remove markdown-mod; the “old” notification card doesnt work anymore, then i see the value of a sensor anymore, but something like sensor.xxx
i probably still need that one in old homekit 13.x

Markdown mod is now standard in Home Assistant, though it might be possible that the syntax has changed a bit as it supports jinja now while before it didn’t. Though I didn’t think that it wouldn’t work anymore. Do you have the latest home assistant?

103.6 here hmm, probaby i need to change something in the content template then

103.6 should be fine indeed. Could you share the template?

offcourse, here is card and view, it displays the text : sensor.calendar_fabio , instead of the value :slight_smile:

card:
  type: horizontal-stack
  cards:
    - !include ../includes/blank-card.yaml
    - type: markdown

      style: |
        ha-card {
          background: [[color]];
          border-radius: var(--border-radius);
          font-size: 13px;
          font-family: Helvetica;
          color: white;
        }
      content: >
        <ha-icon icon="mdi:[[icon]]"></ha-icon> [[content]]
    - !include ../includes/blank-card.yaml
#view

  - type: conditional
    conditions:
      - entity: sensor.calendar_fabio
        state_not: "off"
    card:        
      type: custom:decluttering-card
      template: notification-card
      variables:
        - color: rgba(0, 221, 255, 0.5)
        - icon: calendar
        - content: "[[ sensor.calendar_fabio ]]"

I don’t remember it well (and have no computer to check my code now). But try this at the place of content:

- content: {{ states.sensor.calendar_fabio.state }}

Edit: you might need to quote it. Though I am not sure it will work this way.

that seems to work! :slight_smile:

Annnd? Can we expect something today??? :yum:

@jimz011 Hi, I’ve seen in one of your videos that you have an RGB picker with the https://github.com/DBuit/light-popup-card. Can you point me to the direction to re-create this :slight_smile: I have actions setup with my most used colors, but I’d love to have the RGB picker as well.

2 Likes

I have it in a vertical-stack.
I use the light-popup-card and the rgb-card both in the stack and turned off (don’t use) scenes from the first card.

I have to mention though that I did modifications to the card so that it would work in that stack. You can download the modified .js file from my repo real soon.

2 Likes

Homekit Infused v.1.0 Alpha released!

Please check the links in the first post of this thread.

Users that did the preparation parts, please check the final documentation. There are some addons that have been removed and some added (only one or two) compare against your already installed components. If it is NOT in the list, you DON’T need it. (an example, in the preparation you had to install popup-card, this is no longer in that list and thus can be removed safely).

Enjoy

Because the video isn’t done yet, here are some screenshots:

11 Likes

Oh boy, now I wanna go home and test this immediately :joy:
It looks fantastic! Thank you for your great work!

1 Like

Thanks for sharing everything on GitHub as well! I will not be using your UI, since I’m building my own. But I am eager to learn more and dig through your codes to integrate/customize some stuff to my own UI. Thanks for all your hard work!

2 Likes