Air Quality Monitoring via Mobile IoT 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
Air Quality Monitoring via Mobile IoT App
Simple
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 Air Quality Monitoring via Mobile IoT Applications

Air quality sensors are among the most accessible IoT entry points. Sensirion SEN55 measures PM1.0/PM2.5/PM4/PM10, VOC index, NOx index, temperature and humidity via I²C. Bosch BSEC library for BME688 provides IAQ (Indoor Air Quality) index 0–500. Data from these sensors goes to ESP32 or Raspberry Pi, then — MQTT or HTTP to API, from which the app retrieves it.

Display: Indices and Scales

Raw numbers are useless without context. PM2.5 = 35 μg/m³ — is that much or normal? WHO standard: up to 15 μg/m³ daily norm, up to 25 μg/m³ acceptable. EPA AQI converts raw values into 0–500 index with categories.

AirQualityLevel classifyPm25(double ugm3) {
  if (ugm3 <= 12.0)  return AirQualityLevel.good;
  if (ugm3 <= 35.4)  return AirQualityLevel.moderate;
  if (ugm3 <= 55.4)  return AirQualityLevel.sensitiveGroups;
  if (ugm3 <= 150.4) return AirQualityLevel.unhealthy;
  if (ugm3 <= 250.4) return AirQualityLevel.veryUnhealthy;
  return AirQualityLevel.hazardous;
}

Dashboard: circular indicators (Gauge) for each parameter, color coding by levels, mini-trend for last hour. CO2 above 1500 ppm in closed meeting room — recommendation to ventilate, useful feature not just a number.

Data Retrieval and History

Poll every 30 seconds via Retrofit/Dio for current readings. Day/week history — aggregated data from server (avg by 15-minute intervals). Local cache of latest values in SharedPreferences — no empty screen when opening app.

Push alert when CO2 > 1000 ppm or PM2.5 > 35 μg/m³ — configurable by user.

Developing air quality monitoring app with dashboard, historical trends and configurable alerts: 2–3 weeks. Cost calculated individually.