Skip to main content

Async Python library to interface with iAlarm-MK alarm panels locally

Project description

🚨 Open iAlarm-MK Local API

Asynchronous Python library for iAlarm-MK alarm panels via the local Meian protocol

Python Version License Version Tests

FeaturesInstallationQuick StartDocumentationExamplesTesting


Features

Performance

  • Built with asyncio for non-blocking operations
  • Efficient TCP communication over the Meian binary protocol
  • TCP keep-alive to prevent idle connection drops

Reliability

  • Framed two-phase read: large MK7 responses (>1024 bytes) always received in full
  • Graceful error propagation with full detail preserved
  • Auto-close socket on connection failure
  • Auto-reconnect: each command retries once on connection drop
  • Concurrent-safe: internal asyncio.Lock serializes all commands (Home Assistant coordinator safe)
  • Application-level keepalive: polls status every 30 s to prevent panel idle timeouts

Developer Friendly

  • Type-safe dataclasses: AlarmStatusModel, ZoneModel, NetworkInfoModel
  • Async context manager support
  • Comprehensive logging at every step

Full Control

  • Arm Away, Arm Stay, Arm Partial, Disarm, Cancel Alarm
  • Read all zones with status (open, bypassed, low battery, signal loss)
  • Read network info (name, MAC, IP)

Installation

git clone https://github.com/VoidElle/open-ialarm-mk-local-api
cd open-ialarm-mk-local-api
pip install -e .

Quick Start

import asyncio
from open_ialarm_mk_local_api import IAlarmMkClient

async def main():
    async with IAlarmMkClient("192.168.1.100", 8000, "admin", "secret") as client:
        status = await client.get_status()
        print(f"Status: {status.status.name}")

        zones = await client.get_zones()
        for zone in zones:
            print(f"  [{zone.index:3d}] {zone.name} - {'OPEN' if zone.is_open else 'ok'}")

asyncio.run(main())

Panel Port

Model Default TCP port
iAlarm MK7 8000
iAlarm MK2 18034

Documentation


Configuration

Constructor Parameters: IAlarmMkClient

Parameter Type Default Description
host str required IP address of the panel
port int required TCP port (8000 for MK7, 18034 for MK2)
username str required Login username
password str required Login password
timeout float 10.0 Socket timeout in seconds
keepalive_interval int | None 30 Seconds between keepalive polls; None to disable

Connection Management

Connect / Disconnect

await client.connect()
await client.disconnect()

Context Manager (recommended)

async with IAlarmMkClient("192.168.1.100", 8000, "admin", "pass") as client:
    status = await client.get_status()

Alarm Control

await client.arm_away()      # Arm all zones
await client.arm_stay()      # Perimeter zones only
await client.arm_partial()   # Partial arm
await client.disarm()        # Disarm
await client.cancel_alarm()  # Cancel active alarm

Data Models

AlarmStatusModel

Field Type Description
status AlarmStatusEnum Current panel status

AlarmStatusEnum

Value Name Description
0 ARMED_AWAY Armed, all zones
1 DISARMED Disarmed
2 ARMED_STAY Armed, stay mode
3 CANCEL Alarm cancelled
4 TRIGGERED Alarm triggered
5 ALARM_ARMING Arming in progress
6 UNAVAILABLE Status unknown
8 ARMED_PARTIAL Armed, partial

ZoneModel

Field / Property Type Description
index int Zone index
name str Zone name
zone_type int Zone type code
status ZoneStatusEnum Raw status bitmask
is_open bool Zone is faulted / open
is_bypassed bool Zone is bypassed
low_battery bool Low battery detected
signal_loss bool Wireless signal lost

Note: is_open reflects the physical open/close state only when "Check magnets" (zone monitoring) is enabled for that zone in the iAlarm app. When disabled, the panel does not report fault status and is_open will always return False regardless of the physical state of the zone.

NetworkInfoModel

Field Type Description
name str Panel device name
mac str MAC address
ip str IP address

Error Handling

Exception When raised
IAlarmMkConnectionError TCP failure, timeout, or unexpected error during login
IAlarmMkLoginError Panel rejected credentials
IAlarmMkAlarmError Panel returned a non-zero error code for a command
from open_ialarm_mk_local_api import IAlarmMkConnectionError, IAlarmMkLoginError

try:
    async with IAlarmMkClient("192.168.1.100", 8000, "admin", "pass") as client:
        await client.arm_away()
except IAlarmMkLoginError:
    print("Wrong credentials")
except IAlarmMkConnectionError as e:
    print(f"Connection failed: {e}")

Examples

Run any example directly from the repo root (no install needed):

python3 examples/get_status.py --host 192.168.1.100 --user admin --password password
python3 examples/arm_away.py   --host 192.168.1.100 --user admin --password password arm-partial
python3 examples/subscribe_events.py --host 192.168.1.100 --user admin

Integration test against a real panel

python3 examples/integration_test.py --host 192.168.1.100 --user admin --password password
# skip arm/disarm on a live production panel:
python3 examples/integration_test.py --host 192.168.1.100 --user admin --password password --skip-arm

Testing

python -m pytest tests/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

open_ialarm_mk_local_api-1.0.3.tar.gz (27.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

open_ialarm_mk_local_api-1.0.3-py3-none-any.whl (23.8 kB view details)

Uploaded Python 3

File details

Details for the file open_ialarm_mk_local_api-1.0.3.tar.gz.

File metadata

  • Download URL: open_ialarm_mk_local_api-1.0.3.tar.gz
  • Upload date:
  • Size: 27.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for open_ialarm_mk_local_api-1.0.3.tar.gz
Algorithm Hash digest
SHA256 080fbf6a5a9bc277db214879829cda753af5ce7802058ab09b6d9e4e4abb18db
MD5 4b080b28185a1816d2f4802d94953865
BLAKE2b-256 4ee3ab24f01854b0aa2c60c965d79c0aa4638afe79f21dc0b4ffcd9a0c7a6a95

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_ialarm_mk_local_api-1.0.3.tar.gz:

Publisher: publish.yml on VoidElle/open-ialarm-mk-local-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_ialarm_mk_local_api-1.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for open_ialarm_mk_local_api-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 cc1cbc5e889f81457938df1ce8d7c0d14ff1153275c9c2815d0c50dca921517a
MD5 0e0c0080c2a87821ae378d4fb1a7f5e1
BLAKE2b-256 f8cde73279801183874228ebd4017d02a9dadec7d3f5631b39ed4d349325bf5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_ialarm_mk_local_api-1.0.3-py3-none-any.whl:

Publisher: publish.yml on VoidElle/open-ialarm-mk-local-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page