Fire Sensor Monitoring via Mobile App

NOVASOLUTIONS.TECHNOLOGY is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.
Development and support of all types of mobile applications:
Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1 servicesAll 1735 services
Fire Sensor Monitoring via Mobile App
Medium
from 4 hours to 2 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    756
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    624
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1052
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    947
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    862
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    445

Implementing Fire Alarm Monitoring via Mobile Applications

Fire alarm monitoring is a domain where the cost of a software error is incomparably higher than in regular IoT. The panel receiver-controller ("Bolid S2000-KDL", Honeywell NOTIFIER, Siemens Sinteso) always remains primary: mobile app reads its state but never replaces local automation. No "Reset Alarm" button in the phone should work without confirmation on the physical panel.

Integration with Panel via OPC DA/UA and RS-232

Old panels (S2000-KDL, Bolid) use RS-232 with proprietary protocol — documentation by request from manufacturer. Modern systems provide OPC UA server or MODBUS TCP. For Honeywell NOTIFIER — REST API via LifeSafety Power Manager.

Typical scheme: gateway on Linux mini-server in server room reads panel via RS-232/OPC and publishes normalized events to MQTT. Mobile client subscribes to MQTT over TLS.

Topic structure:

fire/{buildingId}/panel/{panelId}/zone/{zoneId}/state
fire/{buildingId}/panel/{panelId}/alarm
fire/{buildingId}/panel/{panelId}/fault

Zone state — enumeration: normal, alarm, fault, disabled, test.

Priorities and Display

In app, events are ranked strictly by priority:

enum FireEventPriority { alarm, fault, warning, normal }

Color getZoneColor(ZoneState state) => switch (state) {
  ZoneState.alarm    => const Color(0xFFD32F2F),  // red
  ZoneState.fault    => const Color(0xFFFF6F00),  // orange
  ZoneState.disabled => const Color(0xFF757575),  // grey
  ZoneState.test     => const Color(0xFF1976D2),  // blue
  ZoneState.normal   => const Color(0xFF388E3C),  // green
};

Alarm must be immediately visible: FCM priority: high + notification.android.channel_id with IMPORTANCE_HIGH and sound. Without notification_priority: PRIORITY_MAX on some Xiaomi/Huawei, notification gets lost in background.

Event Log and Responsible Officer

Every alarm event is logged with timestamp, zone ID, sensor type, and user who acknowledged receipt. "Acknowledgement" in app is only additional information layer, not replacement for physical reset on panel.

Developing fire alarm monitoring app with zone map, live state and alarm push notifications: 3–5 weeks. Cost calculated individually after analyzing panel type and integration requirements.