惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
F
Fortinet All Blogs
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
The Cloudflare Blog
量子位
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog
MyScale Blog
MyScale Blog
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
D
DataBreaches.Net
V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
U
Unit 42
博客园 - 聂微东
有赞技术团队
有赞技术团队
A
About on SuperTechFans

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Smart Building Automation: HVAC, BMS, Lighting, Elevators...
Perch D · 2026-06-24 · via DEV Community

Smart buildings are integration-heavy systems.

A single facility can include HVAC units, CRAC systems, lighting controllers, elevators, escalators, meters, access control systems, occupancy sensors, PLCs, gateways, local controllers, vendor APIs, and building management software.

Each subsystem may work well on its own. The real engineering challenge is making them work together.

For developers and system integrators, smart building automation is not only about connecting devices. It is about building a reusable architecture for data modeling, event processing, monitoring, control, dashboards, alerts, and workflow integration.

Platforms such as Iotellect show how different building systems can be unified through one low-code IoT/IIoT architecture instead of many disconnected dashboards.

The integration problem

Most smart building projects start with fragmented systems.

HVAC data may come from BACnet controllers. Lighting data may come from a separate lighting control system. Elevator alarms may come from a vendor platform. Occupancy data may come from sensors, Wi-Fi analytics, access control, or meeting room systems.

This creates several problems:

  • Different naming conventions
  • Different protocols
  • Different alarm logic
  • Different dashboards
  • Different user roles
  • Different historical data stores
  • Limited cross-system automation

For example, a high-temperature alarm is more useful when the system also knows whether the zone is occupied, whether lighting is active, whether the AHU is running, and whether the area is comfort-critical.

That is why smart building automation needs a shared data model.

A basic smart building data model

A reusable building model usually starts with a hierarchy:

Site
 └── Building
      └── Floor
           └── Zone
                └── Asset
                     └── Point

Example:

{
  "site": "Business Center A",
  "building": "Tower 1",
  "floor": "Floor 08",
  "zone": "Open Office East",
  "asset": {
    "id": "AHU-08-EAST",
    "type": "air_handling_unit",
    "protocol": "BACnet/IP",
    "points": [
      "supply_air_temperature",
      "return_air_temperature",
      "fan_status",
      "damper_position",
      "alarm_state"
    ]
  }
}

The goal is to avoid one-off integrations. Once assets and points are normalized, dashboards, rules, alarms, reports, and APIs can be reused across buildings.

HVAC and CRAC monitoring

HVAC and CRAC systems are among the most important data sources in smart buildings. They affect comfort, air quality, cooling reliability, and energy consumption.

With Iotellect HVAC and CRAC monitoring, building teams can collect and structure data from air handling units, chillers, fans, compressors, cooling systems, sensors, and controllers.

Typical telemetry includes:

{
  "asset_id": "CRAC-DC-01",
  "asset_type": "crac_unit",
  "zone": "Data Room 1",
  "supply_temp_c": 18.9,
  "return_temp_c": 24.7,
  "humidity_percent": 46,
  "fan_status": "running",
  "cooling_stage": 2,
  "alarm": false
}

From an architecture perspective, HVAC automation usually needs:

  • Protocol adapters
  • Normalized point names
  • Real-time state detection
  • Alarm rules
  • Historical trend storage
  • Maintenance workflows
  • Integration with occupancy and energy data

The value is not only seeing HVAC data. The value is correlating HVAC data with how the building is actually being used.

BMS as the supervisory layer

A building management system is usually the central supervisory layer for facility automation.

A traditional BMS may focus on local monitoring, alarms, schedules, and operator screens. A modern BMS also needs to behave like an integration backend.

A building management system by Iotellect can connect field devices, controllers, dashboards, histories, alarms, reports, users, and external systems into one operational layer.

A practical BMS architecture looks like this:

Field devices
  ↓
Controllers and gateways
  ↓
Protocol adapters
  ↓
Normalized building model
  ↓
Rules, alarms, histories, dashboards, APIs
  ↓
Facility workflows and external systems

The important design question is where automation logic should run.

Some rules should run locally because they require low latency or resilience. Other rules can run centrally because they support portfolio analytics, reporting, optimization, and cross-site visibility.

A hybrid pattern is often the most practical:

Edge layer:
- local equipment monitoring
- safety-critical alarms
- offline fallback logic
- local control rules

Central layer:
- multi-site dashboards
- analytics
- reporting
- user management
- API integrations

Lighting management as event-driven automation

Lighting is often treated as a schedule-based system. In smart buildings, it should be event-driven.

With Iotellect lighting management, lighting controllers can be connected with occupancy data, daylight sensors, room booking systems, security modes, and energy rules.

Example rule:

rule: meeting_room_lighting
when:
  occupancy: detected
  booking_status: active
  daylight_lux: below_300
then:
  lighting_scene: meeting_mode
  brightness_percent: 75
else:
  delay_minutes: 10
  lighting_scene: energy_saving

Lighting automation can react to:

  • Occupancy
  • Daylight level
  • Time of day
  • Room bookings
  • Cleaning schedules
  • Security modes
  • Emergency events
  • Energy-saving policies

This makes lighting more efficient and reduces manual facility work.

Elevator and escalator management

Elevators and escalators are often managed separately, but they are important connected assets.

With Iotellect elevator and escalator management, facility teams can monitor operating status, trip counts, door cycles, downtime events, fault codes, and maintenance needs.

Example telemetry:

{
  "asset_id": "ELV-T1-04",
  "asset_type": "elevator",
  "status": "in_service",
  "current_floor": 12,
  "direction": "up",
  "door_state": "closed",
  "trip_count_today": 847,
  "fault_code": null,
  "maintenance_required": false
}

This data becomes more valuable when connected with the broader building model.

For example:

  • Occupancy data can show traffic peaks.
  • Fault events can trigger maintenance workflows.
  • Downtime can be correlated with tenant complaints.
  • Energy data can support efficiency analysis.
  • Emergency workflows can include elevator status.

In a smart building architecture, elevators and escalators should have telemetry, alarms, history, dashboards, and workflow integration like any other operational asset.

Occupancy monitoring as a control signal

Occupancy data is one of the most important signals in smart building automation.

With Iotellect occupancy monitoring, buildings can collect occupancy data from sensors, access systems, Wi-Fi analytics, smart cameras, meeting room tools, or other sources.

Example model:

{
  "zone_id": "F08-MEETING-03",
  "capacity": 12,
  "occupancy_count": 7,
  "occupancy_state": "occupied",
  "confidence": 0.92,
  "source": "mmwave_sensor",
  "timestamp": "2026-06-23T10:15:00Z"
}

Occupancy data can support:

  • HVAC optimization
  • Lighting automation
  • Cleaning schedules
  • Room booking analysis
  • Space utilization reporting
  • Security workflows
  • Energy reduction

The important detail is confidence.

Not every occupancy source has the same accuracy or latency. A strong occupancy model should include source, timestamp, confidence, and aggregation logic.

Example:

{
  "zone_occupied": true,
  "confidence": 0.86,
  "sources": ["mmwave_sensor", "booking_system", "wifi_analytics"]
}

This helps automation rules avoid depending blindly on one sensor.

Reference architecture

A practical smart building automation platform usually has seven layers:

1. Device layer
   HVAC, CRAC, lighting, elevators, meters, sensors, controllers

2. Connectivity layer
   BACnet, Modbus, OPC UA, MQTT, SNMP, REST APIs, vendor gateways

3. Normalization layer
   Asset types, point names, units, metadata, site hierarchy

4. Event layer
   Alarms, thresholds, derived states, rule triggers, notifications

5. Storage layer
   Time-series data, event logs, reports, audit trails

6. Application layer
   Dashboards, HMI screens, mobile views, reports

7. Integration layer
   APIs, ITSM, CAFM, ERP, BI, energy systems, security platforms

This architecture allows developers to create reusable templates:

Building template
 ├── Floor template
 ├── Zone template
 ├── AHU template
 ├── Lighting group template
 ├── Elevator template
 └── Occupancy sensor template

Templates are important because most buildings are different, but many automation patterns repeat.

Event processing example

Smart building automation is usually event-driven. A useful event object should include context, severity, duration, asset data, and recommended action.

{
  "event_type": "temperature_threshold_exceeded",
  "severity": "warning",
  "asset_id": "AHU-08-EAST",
  "zone_id": "F08-OFFICE-EAST",
  "value": 27.8,
  "threshold": 26.0,
  "duration_seconds": 900,
  "recommended_action": "Check cooling valve and occupancy schedule"
}

Rules should also reduce alert noise.

Example:

rule: suppress_comfort_alarm_when_unoccupied
when:
  asset_type: hvac
  alarm_type: comfort_temperature_high
  zone_occupancy: unoccupied
  severity: warning
then:
  suppress_notification: true
  log_event: true
  reevaluate_after_minutes: 30

Without correlation, smart buildings generate noise. With correlation, events become actionable.

Security and access control

Smart building platforms interact with physical infrastructure, so access control is critical.

A production-ready architecture should include:

  • Role-based access control
  • Audit logs
  • Secure API access
  • Network segmentation
  • Encrypted communication where supported
  • Controlled operator actions
  • Change history for dashboards and rules

Example access model:

Energy manager:
- view energy dashboards
- export reports
- view HVAC trends

Facility operator:
- acknowledge alarms
- adjust approved setpoints
- create maintenance actions

System integrator:
- configure devices
- update templates
- manage protocol adapters

Not every user should have the same level of control.

Conclusion

Smart building automation is not about adding another dashboard. It is about connecting building systems into a reusable operational architecture.

HVAC, BMS, lighting, elevators, and occupancy data all describe different parts of the same environment. When these systems share one data model, developers can build dashboards, alarms, reports, APIs, and automation rules that scale across buildings.

The strongest architectures are built around:

  • Normalized data
  • Reusable templates
  • Event processing
  • Secure access
  • API integration
  • Real facility workflows

For teams comparing smart building solution architectures, Iotellect provides useful reference examples across HVAC, building management, lighting, elevator management, and occupancy monitoring.