Increase font size of numbers on manual alarm panel keypad

This looks awesome. I’m looking forward to setting up a konnected.io system and running this on a Fire HD 10 mounted at my front entrance.

Thanks!

1 Like

Sorry for the delay- I have updated the card to work properly with auto_enter.
Still not in HACS- please just grab it from GitHub - jcooper-korg/AlarmPanel
-John

John-
I’m still using this and appreciate it just working. I just refreshed with your new source and finally integrated the timer. However, I’m a bit baffled with the yaml for:

auto_enter: (optional object). you must also specify code_length and arm_action.....

Might I suggest you update your example card with the right way use it?

Also - wrt HACS. Is there something I can assist you with on that? While I’ve not done the steps I could take a whack and share back to you if that helps. I’d like to see others get exposed to this… https://hacs.xyz/docs/publish/start

Hi Dave,
I added an AlarmLovelaceDashboardWithAutoEnter.yaml to my example configs. Tl;dir: do something like this in your card config:

auto_enter:
  code_length: 4
  arm_action: arm_away

That says that after entering 4 digits, it’ll auto disarm or arm away.

Thanks for offering to help with HACS. I have to rename my repo and the js files, and write some json. I’ll try to get to it soon and you can help me test it.

Cheers,
-John

Hello @johnplanetz I hope all is well with you.

I’ve been using your custom component for some time now. I’m not sure if its a recent problem or if it’s always been this way. I noticed when the alarm panel is collapsed, and the alarm is in a pending state (pre-triggered), I’m unable to expand the panel to type the code to disarm. Any idea’s what may cause this? I’ve tested on my fire tablet, phone and laptop, they all behave the same way. If the panel is already expanded when the alarm is pending, I’m able to enter the code to disarm before it triggers.

Any help is appreciated. Thank you in advance.

image

image

This is my lovelace:

type: custom:alarm_control_panel-card
entity: alarm_control_panel.home_alarm
show_countdown_timer: true
auto_hide: true
auto_enter:
  code_length: 4
  arm_action: disarm
confirm_entities:
  - binary_sensor.front_door
  - binary_sensor.patio_door
labels:
  ui.card.alarm_control_panel.arm_away: AWAY
  ui.card.alarm_control_panel.arm_home: HOME
  ui.card.alarm_control_panel.clear_code: CLEAR
  ui.card.alarm_control_panel.disarm: DISARM
scale: 14px
states:
  - arm_home
  - arm_away
style:
  .: |
    button {
        background-color: steelblue !important;
      }

E’ possibile rinominare la scritta all’interno del badge?

E’ possibile rinominare la scritta all’interno del badge?

I think you could modify the logic in _stateIconLabel(state), in alarm_control_panel-card.js to translate from the entity.state text to your own text.

-John