2N Helios IP Video Intercom — KNX Integration Guide
From apartment building entry panels to villa gate stations and hotel room doors — how to connect 2N Helios IP to KNX via the native KNX module, REST API bridge, and SIP for audio/video calling.
2N Helios IP product line — which model for which project
2N manufactures three main outdoor IP door station families. Choosing correctly saves integration hours — the Verso supports hardware modules including the KNX add-on card, while Base and Force rely on API or SIP-only integration.
| Model | Form factor | KNX module slot | Best for |
|---|---|---|---|
| Helios IP Verso | Modular surface mount, up to 4 modules | Yes — 9137331 KNX module | Apartment buildings, offices — up to 3 call buttons + RFID + camera in one unit |
| Helios IP Base | Compact fixed unit, 1 button | No — API/SIP only | Single-family villa gate, small office entry with one button |
| Helios IP Force | Vandal-resistant, flush mount | No — API/SIP only | Exposed public locations, multi-tenant buildings requiring vandal resistance |
| Helios IP Solo | Ultra-slim surface mount | No — API/SIP only | Villa intercom at gate pillar, minimal footprint, 1-button |
| Access Unit 2.0 | RFID reader only, no camera | Yes — KNX module compatible | Inner doors, lift lobbies — RFID card only, no video |
The Helios IP Verso accepts up to two hardware add-on modules. Common combinations: KNX module + RFID module, or KNX module + fingerprint module.
SIP configuration — local server vs direct SIP
2N Helios IP stations act as SIP clients. For audio/video calls to indoor stations or smartphones, you need either a local SIP PBX or direct SIP peering between the door station and indoor panels.
Option A: Local Asterisk / FreePBX
- • Raspberry Pi or small server runs Asterisk (open source PBX)
- • 2N registers as SIP extension (e.g. 1001)
- • Indoor SIP phones / Gira X1 panels register as extensions
- • Dial plan routes door station calls to correct apartment
- • Supports call groups — ring all indoor stations simultaneously
- • Video: H.264 SIP video requires compatible indoor station (Gira X1, 2N Indoor Compact)
Option B: Direct SIP peering (small installs)
- • 2N configured with IP address of indoor station directly
- • No PBX server required — peer-to-peer SIP
- • Suitable for villa with one indoor station
- • No call routing flexibility — single destination only
- • Works with Gira G1 tablet, Mobotix MxDisplay, any SIP phone
- • Configure under 2N web UI → Services → Phone → Calls
2N SIP registration — key parameters
# 2N Helios IP → Services → Phone → SIP SIP Proxy: 192.168.1.50 (Asterisk server IP) SIP Port: 5060 Registration: Enabled Username: 1001 (door station extension) Password: [your SIP password] Authentication: 1001 Display name: Front Door # Video codec order (for Gira X1 / indoor panels) Codec priority: H.264 > G.711 > G.722 # DTMF relay (for door opening via keypad) DTMF mode: RFC 2833 Open door code: # (or configure digit sequence)
For multi-tenant apartment buildings, each apartment has its own SIP extension. The 2N button module has programmable button-to-extension mapping — button 1 rings apartment 101 (extension 1101), button 2 rings 102, and so on. This mapping is configured in the 2N web interface under Directory.
2N KNX module (9137331) — native KNX integration
The 2N KNX module is an optional hardware add-on card that fits inside the Helios IP Verso and Access Unit 2.0 chassis. It connects the 2N station directly to the KNX TP bus — no gateway server required.
The KNX module exposes the following communication objects in ETS:
Relay 1 / 2 control (IN)
DPT 1.001KNX telegram opens the door relay — trigger from any KNX actuator, scene or logic block
Call active (OUT)
DPT 1.001Set to 1 when a call is active at the door station — can trigger KNX scene (e.g. pause music, switch lights to 100%)
Door open feedback (OUT)
DPT 1.001Feedback when door relay was activated — for KNX visualization or audit logic
Motion detected (OUT)
DPT 1.0012N PIR/motion zone output — trigger KNX lighting or camera recording scene
Card authenticated (OUT)
DPT 1.001RFID or keycode accepted — can disarm alarm zone via KNX simultaneously with door open
Alternative: 2N REST API + Home Assistant KNX bridge
If you are using a Helios IP Base, Force, or Solo (which have no hardware module slot), or want to avoid the extra cost of the KNX module, you can bridge 2N to KNX via Home Assistant. This path also unlocks more complex automation logic than the native KNX module allows.
Home Assistant — 2N REST API to KNX bridge
# configuration.yaml — REST sensor polling 2N relay state
sensor:
- platform: rest
name: 2N Front Door Bell
resource: http://192.168.1.80/api/switch/status
username: admin
password: !secret twoN_password
value_template: "{{ value_json.result[0].active }}"
scan_interval: 2
# automations.yaml — doorbell → KNX group address
automation:
- alias: "2N Doorbell → KNX scene"
trigger:
platform: state
entity_id: sensor.2n_front_door_bell
to: "true"
action:
- service: knx.send
data:
address: "5/1/1" # doorbell notification GA
payload: [1]
type: "binary"
- alias: "KNX relay trigger → 2N door open"
trigger:
platform: state
entity_id: binary_sensor.knx_door_open_command
to: "on"
action:
- service: rest_command.2n_open_relay
data:
relay: 1
rest_command:
2n_open_relay:
url: "http://192.168.1.80/api/switch/ctrl?switch=1&action=trigger"
method: GET
username: admin
password: !secret twoN_passwordThe REST API approach requires enabling HTTP API access in 2N web interface under Services → HTTP API. The 2N also supports webhooks — it can POST to a Home Assistant webhook URL on events like doorbell press, card authentication, or motion detection, removing the need for polling.
Door relay wiring — electric strikes and magnetic locks
The 2N Helios IP has a built-in door relay (NO/NC, max 2A / 30V DC). For most residential and light commercial doors this relay can drive the electric lock directly. For heavy-duty applications, use the relay to trigger a dedicated door power supply with relay output.
12V DC electric strike (fail-secure)
- • Door locked when power is OFF (fail-secure = secure on power loss)
- • Power applied → strike retracts → door opens
- • 2N relay: COM→12V+, NO→strike, GND→12V–
- • Relay activates for programmed duration (e.g. 5s)
- • Common: Abloy EA series, CISA electric strikes
- • Typical current: 300–500 mA at 12V
24V DC magnetic lock (fail-safe)
- • Door locked when power is ON (fail-safe = unlocks on power loss)
- • Power cut → maglock releases → door opens
- • 2N relay: COM→24V+, NC→maglock (cuts power to open)
- • Fire alarm must cut power to maglock independently
- • Back-EMF suppression diode required across maglock coil
- • Typical current: 500 mA–1.2A at 24V
Fail-safe vs fail-secure — fire regulation requirement
Fire escape routes (emergency exits, stairwell doors) must use fail-safe locks — they unlock automatically on power loss or fire alarm signal. Interior office doors and entrance doors may use fail-secure electric strikes. Consult local fire code before specifying lock type. The 2N relay output should be connected to a dedicated door PSU (e.g. Pulsar, Elmdene) for mains-isolated, fused 24V supply — never power locks from the 2N internal electronics supply.
Face recognition — on-device and Axis Camera Station
2N Helios IP Verso and Force models with the camera module (2MP wide-angle, optional IR illumination) support face recognition as an access method — alongside RFID and keycode.
On-device face recognition (2N FR license)
Face database stored on the 2N unit itself. License required (9137922 — 500 faces, or 9137932 — 2000 faces). Enrollment via 2N Access Commander or web interface. No external server needed. Typical recognition time: 0.5–1s. Works offline.
Axis Camera Station integration
2N integrates with Axis Camera Station via ONVIF/RTSP. Axis Camera Station handles face recognition using Axis ARTPEC chip processing. Richer database management, analytics, and multi-camera FR. Suitable for large commercial installations.
2N Access Commander
Central management software (Windows server). Manages multiple 2N units, user database, face enrollment, access logs, and time schedules from one interface. Free for up to 50 users, licensed for larger deployments.
For GDPR compliance in EU installations, face recognition data must be stored only on systems within the facility. On-device FR (2N license) stores templates locally in encrypted form. Axis Camera Station with local server also meets this requirement. Cloud-based FR services are generally not permissible under GDPR Article 9 without explicit user consent in most EU jurisdictions.
OSDP — Open Supervised Device Protocol
Select 2N models (Helios IP Verso, Access Unit 2.0) support OSDP v2 on the RS-485 port. OSDP is a serial access control protocol that allows the 2N to act as a reader connected to a third-party access control panel (Lenel, Genetec, AEOS, Paxton Net2).
Use case examples
Apartment building — one 2N to many apartments
Helios IP Verso at building entrance with 4-button module. Each button calls the apartment's SIP indoor station via local Asterisk PBX. Resident presses door open on indoor station → DTMF '#' command → 2N relay opens entrance door. KNX module: doorbell press triggers KNX telegram to each apartment for lighting scene (hallway on) and visualization.
Villa — gate station with Gira X1 indoor panel
2N Helios IP Solo at gate pillar (IP65, direct SIP to Gira X1). Gira X1 shows video stream and allows door open from indoor panel UI. KNX: gate open triggers KNX input → outdoor lighting scene, driveway lights on for 5 minutes. No 2N KNX module needed — REST API bridge via HA handles KNX link.
Hotel — RFID + video at room door
2N Access Unit 2.0 with KNX module and RFID module at each guest room door. Card swipe → KNX telegram → room welcome scene (lights on, HVAC setpoint to 21°C, TV on). Door open feedback on KNX → front desk visualization confirms room entry. FR license used for VIP recognition (no card needed for platinum guests).
Access control integration in your KNX panel
We pre-wire door controller outputs, RFID reader bus, and video intercom relay contacts into CE-certified panels ready for on-site connection.
Request a quote →