Project Icon

alarmo

为Home Assistant打造的多功能自定义报警系统 支持多区域和自动化

Alarmo是一个专为Home Assistant开发的自定义报警系统集成。通过浏览器界面,用户可以轻松配置个性化报警系统。它支持4种警戒模式,可设置延迟和安全区域,并可将Home Assistant中的实体用作安全传感器。系统还具备多用户管理、内置自动化动作和多区域独立警戒等功能,为DIY爱好者提供了全面的家庭安防解决方案。

Alarmo

hacs_badge

This is an alarm system integration for Home Assistant. It provides a user interface for setting up your own alarm system completely from the browser.

Introduction

This is an integration for the alarm_control_panel domain in HA. It allows to combine existing sensors for creating a security system for your house. The integration is comparable with the Manual Alarm in HA, but also has some additional features that makes it easier to use.

Alarmo consists of 3 parts:

  • Alarmo component: a custom component for HA that controls the states of the alarm panel entities in HA.
  • Alarmo panel: a GUI for configuring the settings of your alarm (sensors, delays, actions etc.)
  • Alarmo card: a custom card for arming / disarming the alarm.

Features

  • Fully compatible with Home Assistant and the Alarm Panel Card.
  • Has an integrated panel for complete management via UI (no YAML required).
  • No restarts required when making changes.
  • Can set up to 4 arm modes (armed_away, armed_home, armed_night, armed_custom_bypass), each with configurable delays and security perimeter.
  • Supports configuring your existing HA entities as security sensors. These sensors will be watched automatically.
  • Allows setting up multiple users with individual pincode and permission levels.
  • Will restore its previous state after restart of HA.
  • Built-in actions: receive push notifications when anything changes in the alarm, activate a siren when the alarm is triggered, etc.
  • Supports splitting up your house security system into multiple areas which can be armed independently.

Preview

Installation

Open your Home Assistant instance and open a repository inside the Home Assistant Community Store.

Click to show installation instructions
  1. Install files:
    • Using HACS:
      In the HACS panel, go to integrations and click the big orange '+' button. Search for 'Alarmo' and click 'Install this repository in HACS'.
    • Manually:
      Download the latest release as a zip file and extract it into the `custom_components` folder in your HA installation.
  2. Restart HA to load the integration into HA.
  3. Go to Configuration -> Integrations and click the big orange '+' button. Look for Alarmo and click to add it.
  4. The Alarmo integration is ready for use. You can find the configuration panel in the menu on the left.

Updating

Click to show updating instructions
  1. Update the files:
    • Using HACS:
      In the HACS panel, there should be an notification when a new version is available. Follow the instructions within HACS to update the installation files.
    • Manually:
      Download the latest release as a zip file and extract it into the custom_components folder in your HA installation, overwriting the previous installation.
  2. Restart HA to load the changes.
  3. (Optional) Verify the version number.
    • Verify version of the backend:
      In HA, go to Configuration -> Integrations. In the Alarmo card, you should see a link with '1 device', click it. In the table click the 'Alarmo' device, and you should see the Device info. The 'firmware version' represents the installed version number.
    • Verify version of the frontend:
      In the Alarmo configuration panel, the version number is displayed in the top right. If the version does not match with the backend version, your browser has an outdated version stored in the cache.
      To clear the cache, you should do a force refresh of your browser.

Uninstalling

Click to show uninstall instructions
  1. Remove Alarmo from HA:
    In HA go to Configuration -> Integrations. In the Alarmo card, click the button with the 3 dots, and click 'Delete'.
  2. Remove the files:
    • When installed with HACS:
      In the HACS panel go to integrations and look for Alarmo. Click the button with the 3 dots and click 'Uninstall'.
    • When installed manually:
      In the custom_components directory, remove the 'alarmo' folder.
  3. Restart HA to make all traces of the component dissapear.

Usage

Alarm functionality

The following diagram describes the operational states of the alarm and provides a simplified overview of the functionality.

Arm modes

The alarm can be activated (armed) in a certain mode. This mode defines a certain set of sensors and represents the security zone (or perimeter).

The following modes are supported:

  • Armed away
  • Armed night
  • Armed home
  • Armed vacation
  • Armed custom bypass (let's just call it armed custom from now on)

In the tab general you can find the settings for each mode. There are flip switches to enable/disable modes.

Alarmo entity

After installing Alarmo the entity alarm_control_panel.alarmo shall be added to HA. You can use this entity together with the Alarm panel card, or in conjuction with automations to automatically arm/disarm the alarm.

States

The Alarmo entity follows the state definitions as defined by HA:

StateDescription
disarmedThe alarm is disabled/off.
armingThe alarm is arming.
After the leave delay has expired, the alarm will be armed.
armed_awayThe alarm is armed in away mode.
armed_homeThe alarm is armed in home mode.
armed_nightThe alarm is armed in night mode.
armed_vacationThe alarm is armed in vacation mode.
armed_custom_bypassThe alarm is armed in custom mode.
pendingThe alarm is pending.
After the entry delay has expired, the alarm will be triggered.
triggeredThe alarm is triggered.
unavailable
unknown
Something is wrong.
Check the logs for more information.

Attributes

The Alarmo entity defines the following attributes:

AttributeDefault valueExample value when setDescription
arm_modenullarmed_awayThe current active arm mode.
Defined in all states except disarmed.
next_state(same as current state)armed_awayWhen alarm is in state arming: next_state is equal to the arm_mode.
When alarm is in state pending: next_state is triggered.
When alarm is in state triggered: next_state is triggered (if no trigger time is configured), disarmed (if 'disarm after triggering' setting is enabled) or equal to the arm_mode (otherwise).
In other cases, the next_state will be equal to the current state.
changed_bynullNielsUser who last armed or disarmed the alarm.
Detected from the entered code.
Cleared when alarm is armed or disarmed without a code.
open_sensorsnull{binary_sensor.backdoor: on}Dictionary of sensors with their entity-ID + state, that caused the alarm to change state.
Set when arming attempt failed (due to one or more sensors).
Set when alarm is triggered (only first sensor that caused the triggering is stored).
bypassed_sensorsnull[binary_sensor.backdoor]List of sensors that are temporarily excluded from the alarm, due to arming in force.
delaynull30Duration of the exit or entry delay. Only set in the arming and pending states, null otherwise.

Commands

The Alarmo entities support the following commands:

CommandDescriptionConditions
ARM_AWAYArm the alarm in mode armed_away.- The entity has the mode away enabled.
- The current alarm state is disarmed, armed_home, armed_night, armed_vacation or armed_custom_bypass.
ARM_HOMEArm the alarm in mode armed_home.- The entity has the mode home enabled.
- The current alarm state is disarmed, armed_away, armed_night, armed_vacation or armed_custom_bypass.
ARM_NIGHTArm the alarm in mode armed_night.- The entity has the mode night enabled.
- The current alarm state is disarmed, armed_away, armed_home, armed_vacation or armed_custom_bypass.
ARM_VACATIONArm the alarm in mode armed_vacation.- The entity has the mode vacation enabled.
- The current alarm state is disarmed, armed_away, armed_home, armed_night or armed_custom_bypass.
ARM_CUSTOM_BYPASSArm the alarm in mode armed_custom_bypass.- The entity has the mode custom enabled.
- The current alarm state is disarmed, armed_away, armed_home, armed_vacation or armed_night.
DISARMDisarm the alarm.- The current alarm state is not disarmed

Areas

An area is a physical compartment of your house, such as a garage, 1st floor of the house, garden, etc. Alarmo will create an alarm_control_panel entity for each area which can be armed and disarmed independently. An area has its own set of sensors and can have dedicated configuration for arm modes, exit/entry times and automations.

In the general tab of the Alarmo configuration UI, there is a card showing the areas in your setup. You can add additional areas, as well as rename or remove existing areas. Alarmo requires at least 1 area to be set up to be functional.

The name of an area defines the entity ID as well. The entity will be instantly renamed after saving.

Warning: renaming an area changes the entity ID, which might break your Lovelace cards and automations outside of Alarmo, so treat it with care.

Alarm Master

Alarmo has the option for enabling an alarm master. The option appears in the general tab in general settings if you have multiple areas defined.

The alarm master is meant for operating your areas synchronously. An extra alarm_control_panel entity is created for the master, which watches the state of the areas for and mirrors its own state with that.

States

The Alarm Master will watch the states of the area entities and updates its own state accordingly.

The following table shows the rules which are implemented to determine the the master alarm state (in order of priority):

ConditionMaster Alarm state
One or more areas have state triggeredtriggered
One or more areas have state pendingpending
One or more areas have state arming, others have state armed_away, armed_home, armed_night, armed_vacation or armed_custom_bypassarming
All areas have state armed_awayarmed_away
All areas have state armed_homearmed_home
All areas have state armed_nightarmed_night
All areas have state armed_vacationarmed_vacation
All areas have state armed_custom_bypassarmed_custom_bypass
All areas have state disarmeddisarmed
Otherwise(previous state is kept)

Notes:

  • The Alarm Master cannot determine its state if some are disarmed while others are armed. If the Alarm Master is used for arming/disarming the alarm, this condition should not occur.
  • If the areas are independently operated, the user is reponsible to maintain synchronism between the areas. If independent operation is desired, usage of the Master Alarm is not recommended.
Commands

Arming / disarming the master will cause the action to be propagated to all areas.

If the arming of an area fails (due to blocking sensors), the arming procedure will be aborted and all areas are disarmed.

The available arm modes for the Master Alarm are determined from the areas. Only arm modes which are in common for all areas are available for the Master Alarm.

Sensor configuration

Currently Alarmo supports sensors of type binary_sensor. Alarmo will check the device class of each sensor, and only supports sensors that are related to security.

Available sensors should show up automatically in the sensors tab in the Add sensors card. Simply check the sensors that you wish to include in the alarm, and click 'add to alarm'. Review the configuration for each sensor in the sensors card.

Sensor types

The sensor configuration in the Alarmo panel allows defining a type for each sensor entity.

Setting a type for a sensor has the benefit that the appropriate configuration is automatically set. HA defines device classes for binary sensors. When assigning sensors to Alarmo, the type of the sensor is automatically determined based on this property (if it is defined).

Note that assigning a sensor type is not mandatory, and all configuration settings can also be set manually. It is also possible to deviate from the predefined configuration after setting a type.

The following table defines the sensor types and the predefined configuration:

TypeDevice classesArm modesEnabled configuration options
Doordoor
garage_door
lock
opening
Armed Away
Armed Home
Armed Night
Armed Vacation
`Arm
项目侧边栏1项目侧边栏2
推荐项目
Project Cover

豆包MarsCode

豆包 MarsCode 是一款革命性的编程助手,通过AI技术提供代码补全、单测生成、代码解释和智能问答等功能,支持100+编程语言,与主流编辑器无缝集成,显著提升开发效率和代码质量。

Project Cover

AI写歌

Suno AI是一个革命性的AI音乐创作平台,能在短短30秒内帮助用户创作出一首完整的歌曲。无论是寻找创作灵感还是需要快速制作音乐,Suno AI都是音乐爱好者和专业人士的理想选择。

Project Cover

有言AI

有言平台提供一站式AIGC视频创作解决方案,通过智能技术简化视频制作流程。无论是企业宣传还是个人分享,有言都能帮助用户快速、轻松地制作出专业级别的视频内容。

Project Cover

Kimi

Kimi AI助手提供多语言对话支持,能够阅读和理解用户上传的文件内容,解析网页信息,并结合搜索结果为用户提供详尽的答案。无论是日常咨询还是专业问题,Kimi都能以友好、专业的方式提供帮助。

Project Cover

阿里绘蛙

绘蛙是阿里巴巴集团推出的革命性AI电商营销平台。利用尖端人工智能技术,为商家提供一键生成商品图和营销文案的服务,显著提升内容创作效率和营销效果。适用于淘宝、天猫等电商平台,让商品第一时间被种草。

Project Cover

吐司

探索Tensor.Art平台的独特AI模型,免费访问各种图像生成与AI训练工具,从Stable Diffusion等基础模型开始,轻松实现创新图像生成。体验前沿的AI技术,推动个人和企业的创新发展。

Project Cover

SubCat字幕猫

SubCat字幕猫APP是一款创新的视频播放器,它将改变您观看视频的方式!SubCat结合了先进的人工智能技术,为您提供即时视频字幕翻译,无论是本地视频还是网络流媒体,让您轻松享受各种语言的内容。

Project Cover

美间AI

美间AI创意设计平台,利用前沿AI技术,为设计师和营销人员提供一站式设计解决方案。从智能海报到3D效果图,再到文案生成,美间让创意设计更简单、更高效。

Project Cover

AIWritePaper论文写作

AIWritePaper论文写作是一站式AI论文写作辅助工具,简化了选题、文献检索至论文撰写的整个过程。通过简单设定,平台可快速生成高质量论文大纲和全文,配合图表、参考文献等一应俱全,同时提供开题报告和答辩PPT等增值服务,保障数据安全,有效提升写作效率和论文质量。

投诉举报邮箱: service@vectorlightyear.com
@2024 懂AI·鲁ICP备2024100362号-6·鲁公网安备37021002001498号