{"id":7629,"date":"2025-11-14T07:24:32","date_gmt":"2025-11-14T12:24:32","guid":{"rendered":"https:\/\/news.ftcpublications.com\/core\/?p=7629"},"modified":"2025-11-14T07:24:35","modified_gmt":"2025-11-14T12:24:35","slug":"build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors","status":"publish","type":"post","link":"https:\/\/news.ftcpublications.com\/core\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\/","title":{"rendered":"Build a pocket-sized CO2 and particulate air quality monitor using an ESP32 and off-the-shelf sensors"},"content":{"rendered":"\n<p>Portable air quality monitors empower you to measure what you breathe anywhere. This compact project tracks CO2 and particulate matter with reliable sensors. An ESP32 handles data, display, logging, and wireless connectivity. The design uses off-the-shelf parts and simple wiring. You can assemble it on a bench in a weekend. Let\u2019s walk through the hardware, firmware, and calibration steps.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Bill of Materials<\/h2>\n\n\n\n<p>Choose parts that balance accuracy, size, and power. You can swap sensors based on budget and availability.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>ESP32 development board (ESP32-WROOM DevKitC or equivalent)<\/li>\n\n\n\n<li>NDIR CO2 sensor (Sensirion SCD30 or SCD41, or Senseair S8, or MH\u2011Z19C)<\/li>\n\n\n\n<li>Particulate sensor (Sensirion SPS30, Plantower PMS5003, or PMSA003I)<\/li>\n\n\n\n<li>Environmental sensor (BME280 or SHT31 for temperature and humidity)<\/li>\n\n\n\n<li>0.96\u2011inch OLED display (SSD1306, I2C)<\/li>\n\n\n\n<li>LiPo battery (500\u20131200 mAh, flat pouch)<\/li>\n\n\n\n<li>LiPo charger module (TP4056 with protection, USB\u2011C preferred)<\/li>\n\n\n\n<li>3.3 V buck regulator if needed, or use onboard regulator<\/li>\n\n\n\n<li>Power switch and JST\u2011PH battery connector<\/li>\n\n\n\n<li>MicroSD module and card (optional, for logging)<\/li>\n\n\n\n<li>Slide-on particulate sensor cable or JST\u2011GH leads<\/li>\n\n\n\n<li>Wires, headers, heat shrink, and small screws<\/li>\n\n\n\n<li>3D printed or laser\u2011cut enclosure with vents<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Design Overview and Sensor Selection<\/h2>\n\n\n\n<p>A pocket monitor must stay small without sacrificing key measurements. CO2 indicates ventilation effectiveness and occupancy. Particulate matter reflects combustion and dust exposure. Temperature and humidity contextualize readings and improve compensation. A tiny screen provides local feedback without a phone.<\/p>\n\n\n\n<p>Select an NDIR CO2 sensor for accuracy. SCD41 offers tiny size and low power. SCD30 provides proven performance with simple I2C control. Senseair S8 balances value and robustness. Avoid non\u2011NDIR eCO2 sensors for serious ventilation decisions.<\/p>\n\n\n\n<p>Pick a particulate sensor that fits your enclosure depth. SPS30 resists contamination and supports I2C. PMSA003I is compact and commonly available. Ensure the sensor has a clear air inlet and outlet. Orient fans and ducts to prevent recirculation.<\/p>\n\n\n\n<p>Use a BME280 or SHT31 for temperature and humidity. These sensors help compensate CO2 readings for humidity effects. They also stabilize particulate measurements through dew monitoring. An SSD1306 OLED keeps current draw low yet readable.<\/p>\n\n\n\n<p>An ESP32 provides Wi\u2011Fi, BLE, and ample processing headroom. It supports OTA updates and secure MQTT publishing. You also get deep sleep for better battery life. The ecosystem offers mature libraries for all listed sensors.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Electrical Architecture and Power<\/h2>\n\n\n\n<p>Plan a clean power path before placing parts. The LiPo connects to the charger module and then the switch. The switch feeds the ESP32 and sensors through the 3.3 V regulator. Keep sensor grounds star\u2011connected near the ESP32 ground.<\/p>\n\n\n\n<p>Check the current draw for safe battery sizing. Many NDIR sensors draw 19\u2013120 mA during measurement. Particulate sensors can draw 80\u2013120 mA with the fan running. Size the battery to last a typical day. Use thicker traces for power lines.<\/p>\n\n\n\n<p>Link I2C devices to ESP32 pins 21 and 22 by default. Use level\u2011appropriate logic at 3.3 V. Give UART particulate sensors dedicated RX and TX pins. Keep I2C pullups modest, around 4.7 k\u03a9.<\/p>\n\n\n\n<p>Route the fan\u2019s airflow away from the CO2 sensor. Turbulence can bias readings, especially with drafts. Add foam baffles if space allows. Keep the OLED near the case window to improve visibility.<\/p>\n\n\n\n<p>Test power rails under load using a USB power meter. Watch for brownouts when the fan starts. Add a 100 \u00b5F capacitor near the fan connector. This simple fix reduces voltage dips.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Assembly Steps<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Prepare the ESP32 and Power Subsystem<\/h3>\n\n\n\n<p>Solder header pins to the ESP32 for stable connections. Mount the charger module near the USB opening. Wire the battery to the charger\u2019s B+ and B\u2212 pads. Connect the charger OUT to the switch and regulator input.<\/p>\n\n\n\n<p>Verify the 3.3 V rail before attaching sensors. Measure voltage during a simulated load with a resistor. Confirm the switch cleanly disconnects the system. Secure the battery with tape or a printed cradle.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Wire the CO2 Sensor<\/h3>\n\n\n\n<p>Connect SCD30 or SCD41 using I2C to the ESP32. Tie VIN to 3.3 V or 5 V per datasheet. Connect GND, SDA, and SCL with short twisted leads. Keep the sensor away from heat sources and regulators.<\/p>\n\n\n\n<p>Mount the sensor with vents facing ambient air. Leave a few millimeters for airflow clearance. Add standoffs to avoid case conduction. Label the connector for easy servicing.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Wire the Particulate Sensor<\/h3>\n\n\n\n<p>Use the provided JST cable for secure connections. Connect 5 V or 3.3 V according to the module\u2019s rating. Assign UART pins and confirm logic levels. Orient the inlet toward a slotted vent.<\/p>\n\n\n\n<p>Prevent fan vibration from reaching the PCB. Add a thin foam pad under the sensor. Keep the exhaust path clear for steady airflow. Avoid sharp bends near the vent slots.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Wire the Environmental Sensor and Display<\/h3>\n\n\n\n<p>Place the BME280 or SHT31 near a vent hole. Connect it to the I2C bus with short leads. Mount the OLED behind a clear window. Route its I2C lines alongside the environmental sensor wires.<\/p>\n\n\n\n<p>Bundle wires with heat shrink to reduce strain. Add a small right\u2011angle header for serviceability. Confirm the display and sensors share pullups. Secure everything before closing the case.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Firmware Setup<\/h2>\n\n\n\n<p>Use Arduino IDE or PlatformIO for quick development. Install the ESP32 board support package. Add libraries for SCD30 or SCD4x and your particulate sensor. Include Adafruit SSD1306 and BME280 or SHT31 libraries.<\/p>\n\n\n\n<p>Initialize I2C and UART ports in setup. Probe sensors and report failures on the display. Read CO2, PM1.0, PM2.5, and PM10 at one\u2011second intervals. Combine temperature and humidity for compensation tasks.<\/p>\n\n\n\n<p>Display key values with clear units and icons. Update the screen sparingly to save power. Publish data over MQTT if Wi\u2011Fi is available. Provide a status line for the connectivity state.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Data Processing and Calibration<\/h3>\n\n\n\n<p>Apply median filtering to reduce spikes from fan turbulence. Use an exponential moving average for smooth trends. Clamp unrealistic jumps to prevent display flicker. Log raw values alongside filtered numbers.<\/p>\n\n\n\n<p>Enable ABC for NDIR sensors if usage supports outdoor exposure. ABC assumes periodic access to fresh air baselines. For indoor\u2011only devices, disable ABC and calibrate manually outdoors. Record baseline offsets in nonvolatile storage.<\/p>\n\n\n\n<p>Compensate CO2 readings with temperature and humidity data. Update compensation coefficients during initialization. Validate updated readings against reference values. Adjust filters to match your user experience goals.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">User Interface and Indicators<\/h3>\n\n\n\n<p>Use color cues on the OLED by drawing icons and labels. Show CO2, PM2.5, temperature, and humidity clearly. Add a battery icon and Wi\u2011Fi status indicator. Provide a button press to toggle detailed screens.<\/p>\n\n\n\n<p>Show warnings when values exceed set thresholds. Offer concise guidance like \u201cOpen a window.\u201d Keep the interface readable in bright light. Update values at a steady cadence.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Connectivity and Logging<\/h2>\n\n\n\n<p>Add Wi\u2011Fi configuration using a captive portal library. Store credentials securely in preferences. Publish JSON payloads to an MQTT broker. Include timestamps and device identifiers in each message.<\/p>\n\n\n\n<p>Offer BLE advertising for quick values without pairing. Implement OTA updates for future enhancements. Use microSD logging if you need offline records. Sync time with NTP on boot and daily.<\/p>\n\n\n\n<p>Compress logs by reducing precision where acceptable. Rotate files daily to manage card wear. Include error events and reboot reasons. This data helps diagnose field issues quickly.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Enclosure and Thermal Management<\/h2>\n\n\n\n<p>Design the enclosure with separate airflow paths. Keep the CO2 and particulate inlets apart. Add louvers to reduce light leaks. Provide finger access to the power switch.<\/p>\n\n\n\n<p>Use PETG or ABS for better heat resistance. Avoid placing the battery near the fan exhaust. Vent heat from the ESP32 and regulator upward. Add a wrist strap slot for portability.<\/p>\n\n\n\n<p>Seal light paths that might affect optical sensors. Use matte black interiors to minimize reflections. Add labels for ports and vents. Confirm pocket comfort during daily carry tests.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Validation and Troubleshooting<\/h2>\n\n\n\n<p>Test CO2 outdoors for a baseline near 420 ppm. Confirm indoor readings respond to occupancy changes. Breathe near the inlet to check the dynamic response. Observe a gradual decay when you step away.<\/p>\n\n\n\n<p>Validate particulate response using incense or a match. Expect PM2.5 to spike quickly during smoke exposure. Watch it decay as air clears. Compare results against a reference monitor if available.<\/p>\n\n\n\n<p>Check power stability under peak fan loads. Fix brownouts using larger bulk capacitors. Verify UART framing and baud rates for particulate sensors. Use serial logs to isolate communication issues.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Power Optimization<\/h2>\n\n\n\n<p>Duty cycle the particulate fan when real\u2011time data is not required. Reduce the OLED refresh rate to save energy. Lower Wi\u2011Fi transmit power where possible. Use deep sleep between measurements when logging slowly.<\/p>\n\n\n\n<p>Enable light sleep during idle loops with careful timing. Cache calibration values to avoid extra sensor work. Profile the current draw in different modes. Choose a battery that meets your runtime goals.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Maintenance and Safety<\/h2>\n\n\n\n<p>Replace dust filters or screens when visibly dirty. Keep vents free from lint and debris. Update firmware to improve accuracy and features. Store the device away from high heat or direct sunlight.<\/p>\n\n\n\n<p>Do not rely on the device for life\u2011critical decisions. Consumer parts carry tolerances and drift. Cross\u2011check suspicious readings with another instrument. Calibrate outdoors monthly to maintain confidence.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Cost, Upgrades, and Next Steps<\/h2>\n\n\n\n<p>Expect a parts cost between $70 and $160. Prices vary with sensor selection and availability. SCD41 and SPS30 raise costs but shrink size. MH\u2011Z19C and PMSA003I lower costs at some tradeoffs.<\/p>\n\n\n\n<p>Consider a small e\u2011paper display for sunlight readability. Add a vibration motor for silent alerts. Integrate a USB\u2011C PD trigger for faster charging. Explore a custom PCB to reduce wiring bulk.<\/p>\n\n\n\n<p>Publish your data to a home dashboard with MQTT. Use Home Assistant or Grafana for visualization. Share your enclosure files and firmware online. Community feedback will help refine the design.<\/p>\n\n\n\n<p>This compact monitor brings actionable air insights to your pocket. With careful assembly and calibration, it performs reliably. The ESP32 platform enables fast iteration and updates. You can now measure and improve the air around you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Portable air quality monitors empower you to measure what you breathe anywhere. This compact project tracks CO2 and particulate matter with reliable sensors. An ESP32 handles data, display, logging, and wireless connectivity. The design uses off-the-shelf parts and simple wiring. You can assemble it on a bench in a weekend. Let\u2019s walk through the hardware, [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":7630,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"apple_news_api_created_at":"2025-11-14T12:24:39Z","apple_news_api_id":"eef48d06-fa6f-4dcf-b2ee-6bab570b8c3e","apple_news_api_modified_at":"2025-11-14T12:24:39Z","apple_news_api_revision":"AAAAAAAAAAD\/\/\/\/\/\/\/\/\/\/w==","apple_news_api_share_url":"https:\/\/apple.news\/A7vSNBvpvTc-y7murVwuMPg","apple_news_cover_media_provider":"image","apple_news_coverimage":0,"apple_news_coverimage_caption":"","apple_news_cover_video_id":0,"apple_news_cover_video_url":"","apple_news_cover_embedwebvideo_url":"","apple_news_is_hidden":"","apple_news_is_paid":"","apple_news_is_preview":"","apple_news_is_sponsored":"","apple_news_maturity_rating":"","apple_news_metadata":"\"\"","apple_news_pullquote":"","apple_news_pullquote_position":"","apple_news_slug":"","apple_news_sections":[],"apple_news_suppress_video_url":false,"apple_news_use_image_component":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"ppma_author":[356],"class_list":["post-7629","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-news"],"apple_news_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Build a pocket-sized CO2 and particulate air quality monitor using an ESP32 and off-the-shelf sensors<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/news.ftcpublications.com\/core\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Build a pocket-sized CO2 and particulate air quality monitor using an ESP32 and off-the-shelf sensors\" \/>\n<meta property=\"og:description\" content=\"Portable air quality monitors empower you to measure what you breathe anywhere. This compact project tracks CO2 and particulate matter with reliable sensors. An ESP32 handles data, display, logging, and wireless connectivity. The design uses off-the-shelf parts and simple wiring. You can assemble it on a bench in a weekend. Let\u2019s walk through the hardware, [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/news.ftcpublications.com\/core\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\/\" \/>\n<meta property=\"og:site_name\" content=\"FTC Publications Newswire\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/ftcpublications\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-14T12:24:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-14T12:24:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/news.ftcpublications.com\/core\/wp-content\/uploads\/BQGDIdTReq-yFqg_hiA8x_35949e27d94b4adbafd9ca4f8aa86862.jpg-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1429\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"FTC Publications\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"FTC Publications\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"NewsArticle\",\"@id\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\\\/\"},\"author\":{\"name\":\"FTC Publications\",\"@id\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/#\\\/schema\\\/person\\\/7a8664b6153a734ceddf3151bd941270\"},\"headline\":\"Build a pocket-sized CO2 and particulate air quality monitor using an ESP32 and off-the-shelf sensors\",\"datePublished\":\"2025-11-14T12:24:32+00:00\",\"dateModified\":\"2025-11-14T12:24:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\\\/\"},\"wordCount\":1657,\"publisher\":{\"@id\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/wp-content\\\/uploads\\\/BQGDIdTReq-yFqg_hiA8x_35949e27d94b4adbafd9ca4f8aa86862.jpg-scaled.jpg\",\"articleSection\":[\"News\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\\\/\",\"url\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\\\/\",\"name\":\"Build a pocket-sized CO2 and particulate air quality monitor using an ESP32 and off-the-shelf sensors\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/wp-content\\\/uploads\\\/BQGDIdTReq-yFqg_hiA8x_35949e27d94b4adbafd9ca4f8aa86862.jpg-scaled.jpg\",\"datePublished\":\"2025-11-14T12:24:32+00:00\",\"dateModified\":\"2025-11-14T12:24:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\\\/#primaryimage\",\"url\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/wp-content\\\/uploads\\\/BQGDIdTReq-yFqg_hiA8x_35949e27d94b4adbafd9ca4f8aa86862.jpg-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/wp-content\\\/uploads\\\/BQGDIdTReq-yFqg_hiA8x_35949e27d94b4adbafd9ca4f8aa86862.jpg-scaled.jpg\",\"width\":2560,\"height\":1429},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Build a pocket-sized CO2 and particulate air quality monitor using an ESP32 and off-the-shelf sensors\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/#website\",\"url\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/\",\"name\":\"FTC Publications Newswire\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/#organization\",\"name\":\"FTC Publications News\",\"url\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/wp-content\\\/uploads\\\/2016\\\/09\\\/2014-FTC-TextOnly-Logo-Square.png\",\"contentUrl\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/wp-content\\\/uploads\\\/2016\\\/09\\\/2014-FTC-TextOnly-Logo-Square.png\",\"width\":460,\"height\":460,\"caption\":\"FTC Publications News\"},\"image\":{\"@id\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/ftcpublications\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/ftc-publications-inc-\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/#\\\/schema\\\/person\\\/7a8664b6153a734ceddf3151bd941270\",\"name\":\"FTC Publications\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7442f1cf75aa91d0ffc9e9862fd31ab173bfeece2402296357881bfebd0d627e?s=96&d=mm&r=gb1739aeddd6a3f95081b6cb498d90525\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7442f1cf75aa91d0ffc9e9862fd31ab173bfeece2402296357881bfebd0d627e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7442f1cf75aa91d0ffc9e9862fd31ab173bfeece2402296357881bfebd0d627e?s=96&d=mm&r=g\",\"caption\":\"FTC Publications\"},\"description\":\"Bylines from \\\"FTC Publications\\\" are created typically via a collection of writers from the agency in general.\",\"url\":\"https:\\\/\\\/news.ftcpublications.com\\\/core\\\/author\\\/ftcpublications\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Build a pocket-sized CO2 and particulate air quality monitor using an ESP32 and off-the-shelf sensors","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/news.ftcpublications.com\/core\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\/","og_locale":"en_US","og_type":"article","og_title":"Build a pocket-sized CO2 and particulate air quality monitor using an ESP32 and off-the-shelf sensors","og_description":"Portable air quality monitors empower you to measure what you breathe anywhere. This compact project tracks CO2 and particulate matter with reliable sensors. An ESP32 handles data, display, logging, and wireless connectivity. The design uses off-the-shelf parts and simple wiring. You can assemble it on a bench in a weekend. Let\u2019s walk through the hardware, [&hellip;]","og_url":"https:\/\/news.ftcpublications.com\/core\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\/","og_site_name":"FTC Publications Newswire","article_publisher":"https:\/\/www.facebook.com\/ftcpublications","article_published_time":"2025-11-14T12:24:32+00:00","article_modified_time":"2025-11-14T12:24:35+00:00","og_image":[{"width":2560,"height":1429,"url":"https:\/\/news.ftcpublications.com\/core\/wp-content\/uploads\/BQGDIdTReq-yFqg_hiA8x_35949e27d94b4adbafd9ca4f8aa86862.jpg-scaled.jpg","type":"image\/jpeg"}],"author":"FTC Publications","twitter_card":"summary_large_image","twitter_misc":{"Written by":"FTC Publications","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"NewsArticle","@id":"https:\/\/news.ftcpublications.com\/core\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\/#article","isPartOf":{"@id":"https:\/\/news.ftcpublications.com\/core\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\/"},"author":{"name":"FTC Publications","@id":"https:\/\/news.ftcpublications.com\/core\/#\/schema\/person\/7a8664b6153a734ceddf3151bd941270"},"headline":"Build a pocket-sized CO2 and particulate air quality monitor using an ESP32 and off-the-shelf sensors","datePublished":"2025-11-14T12:24:32+00:00","dateModified":"2025-11-14T12:24:35+00:00","mainEntityOfPage":{"@id":"https:\/\/news.ftcpublications.com\/core\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\/"},"wordCount":1657,"publisher":{"@id":"https:\/\/news.ftcpublications.com\/core\/#organization"},"image":{"@id":"https:\/\/news.ftcpublications.com\/core\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\/#primaryimage"},"thumbnailUrl":"https:\/\/news.ftcpublications.com\/core\/wp-content\/uploads\/BQGDIdTReq-yFqg_hiA8x_35949e27d94b4adbafd9ca4f8aa86862.jpg-scaled.jpg","articleSection":["News"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/news.ftcpublications.com\/core\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\/","url":"https:\/\/news.ftcpublications.com\/core\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\/","name":"Build a pocket-sized CO2 and particulate air quality monitor using an ESP32 and off-the-shelf sensors","isPartOf":{"@id":"https:\/\/news.ftcpublications.com\/core\/#website"},"primaryImageOfPage":{"@id":"https:\/\/news.ftcpublications.com\/core\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\/#primaryimage"},"image":{"@id":"https:\/\/news.ftcpublications.com\/core\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\/#primaryimage"},"thumbnailUrl":"https:\/\/news.ftcpublications.com\/core\/wp-content\/uploads\/BQGDIdTReq-yFqg_hiA8x_35949e27d94b4adbafd9ca4f8aa86862.jpg-scaled.jpg","datePublished":"2025-11-14T12:24:32+00:00","dateModified":"2025-11-14T12:24:35+00:00","breadcrumb":{"@id":"https:\/\/news.ftcpublications.com\/core\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/news.ftcpublications.com\/core\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/news.ftcpublications.com\/core\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\/#primaryimage","url":"https:\/\/news.ftcpublications.com\/core\/wp-content\/uploads\/BQGDIdTReq-yFqg_hiA8x_35949e27d94b4adbafd9ca4f8aa86862.jpg-scaled.jpg","contentUrl":"https:\/\/news.ftcpublications.com\/core\/wp-content\/uploads\/BQGDIdTReq-yFqg_hiA8x_35949e27d94b4adbafd9ca4f8aa86862.jpg-scaled.jpg","width":2560,"height":1429},{"@type":"BreadcrumbList","@id":"https:\/\/news.ftcpublications.com\/core\/build-a-pocket-sized-co2-and-particulate-air-quality-monitor-using-an-esp32-and-off-the-shelf-sensors\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/news.ftcpublications.com\/core\/"},{"@type":"ListItem","position":2,"name":"Build a pocket-sized CO2 and particulate air quality monitor using an ESP32 and off-the-shelf sensors"}]},{"@type":"WebSite","@id":"https:\/\/news.ftcpublications.com\/core\/#website","url":"https:\/\/news.ftcpublications.com\/core\/","name":"FTC Publications Newswire","description":"","publisher":{"@id":"https:\/\/news.ftcpublications.com\/core\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/news.ftcpublications.com\/core\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/news.ftcpublications.com\/core\/#organization","name":"FTC Publications News","url":"https:\/\/news.ftcpublications.com\/core\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/news.ftcpublications.com\/core\/#\/schema\/logo\/image\/","url":"https:\/\/news.ftcpublications.com\/core\/wp-content\/uploads\/2016\/09\/2014-FTC-TextOnly-Logo-Square.png","contentUrl":"https:\/\/news.ftcpublications.com\/core\/wp-content\/uploads\/2016\/09\/2014-FTC-TextOnly-Logo-Square.png","width":460,"height":460,"caption":"FTC Publications News"},"image":{"@id":"https:\/\/news.ftcpublications.com\/core\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/ftcpublications","https:\/\/www.linkedin.com\/company\/ftc-publications-inc-\/"]},{"@type":"Person","@id":"https:\/\/news.ftcpublications.com\/core\/#\/schema\/person\/7a8664b6153a734ceddf3151bd941270","name":"FTC Publications","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/7442f1cf75aa91d0ffc9e9862fd31ab173bfeece2402296357881bfebd0d627e?s=96&d=mm&r=gb1739aeddd6a3f95081b6cb498d90525","url":"https:\/\/secure.gravatar.com\/avatar\/7442f1cf75aa91d0ffc9e9862fd31ab173bfeece2402296357881bfebd0d627e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7442f1cf75aa91d0ffc9e9862fd31ab173bfeece2402296357881bfebd0d627e?s=96&d=mm&r=g","caption":"FTC Publications"},"description":"Bylines from \"FTC Publications\" are created typically via a collection of writers from the agency in general.","url":"https:\/\/news.ftcpublications.com\/core\/author\/ftcpublications\/"}]}},"jetpack_featured_media_url":"https:\/\/news.ftcpublications.com\/core\/wp-content\/uploads\/BQGDIdTReq-yFqg_hiA8x_35949e27d94b4adbafd9ca4f8aa86862.jpg-scaled.jpg","jetpack_shortlink":"https:\/\/wp.me\/paaAgn-1Z3","jetpack-related-posts":[{"id":7970,"url":"https:\/\/news.ftcpublications.com\/core\/biodegradable-semiconductor-inks-enable-printable-compostable-sensors-for-real-time-food-freshness-tracking\/","url_meta":{"origin":7629,"position":0},"title":"Biodegradable semiconductor inks enable printable, compostable sensors for real-time food freshness tracking","author":"FTC Publications","date":"December 13, 2025","format":false,"excerpt":"Food waste remains a costly climate and nutrition problem across supply chains. Grocers, distributors, and consumers often rely on static dates. Those dates rarely reflect actual product condition. Real-time indicators can bridge that gap and improve decisions. New biodegradable semiconductor inks now bring that possibility to compostable packaging. These inks\u2026","rel":"","context":"In &quot;News&quot;","block_context":{"text":"News","link":"https:\/\/news.ftcpublications.com\/core\/category\/news\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/oEjE0rqepruuHrUDExY9q_05dee4f08c8d474b84213d58109cba35.jpg-scaled.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/oEjE0rqepruuHrUDExY9q_05dee4f08c8d474b84213d58109cba35.jpg-scaled.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/oEjE0rqepruuHrUDExY9q_05dee4f08c8d474b84213d58109cba35.jpg-scaled.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/oEjE0rqepruuHrUDExY9q_05dee4f08c8d474b84213d58109cba35.jpg-scaled.jpg?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/oEjE0rqepruuHrUDExY9q_05dee4f08c8d474b84213d58109cba35.jpg-scaled.jpg?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/oEjE0rqepruuHrUDExY9q_05dee4f08c8d474b84213d58109cba35.jpg-scaled.jpg?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":7818,"url":"https:\/\/news.ftcpublications.com\/core\/cities-pilot-ai-managed-traffic-lights-that-cut-congestion-and-emissions-in-real-world-trials\/","url_meta":{"origin":7629,"position":1},"title":"Cities pilot AI-managed traffic lights that cut congestion and emissions in real-world trials","author":"FTC Publications","date":"November 29, 2025","format":false,"excerpt":"Urban streets face mounting pressure from population growth, delivery traffic, and rising travel demand. Traditional timing plans struggle to keep pace. Engineers now deploy artificial intelligence to manage traffic signals with real-time awareness. These pilots aim to reduce delays, improve safety, and lower emissions from idling vehicles. City transportation agencies\u2026","rel":"","context":"In &quot;News&quot;","block_context":{"text":"News","link":"https:\/\/news.ftcpublications.com\/core\/category\/news\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/U0MfOA6_FulPRJZ5YYskl_1c8bb5debec0480c867134e9e797eb30.jpg-scaled.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/U0MfOA6_FulPRJZ5YYskl_1c8bb5debec0480c867134e9e797eb30.jpg-scaled.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/U0MfOA6_FulPRJZ5YYskl_1c8bb5debec0480c867134e9e797eb30.jpg-scaled.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/U0MfOA6_FulPRJZ5YYskl_1c8bb5debec0480c867134e9e797eb30.jpg-scaled.jpg?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/U0MfOA6_FulPRJZ5YYskl_1c8bb5debec0480c867134e9e797eb30.jpg-scaled.jpg?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/U0MfOA6_FulPRJZ5YYskl_1c8bb5debec0480c867134e9e797eb30.jpg-scaled.jpg?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":7517,"url":"https:\/\/news.ftcpublications.com\/core\/major-port-deploys-autonomous-electric-trucks-to-speed-cargo-flow-and-curb-pollution\/","url_meta":{"origin":7629,"position":2},"title":"Major port deploys autonomous electric trucks to speed cargo flow and curb pollution","author":"FTC Publications","date":"November 2, 2025","format":false,"excerpt":"Major seaports around the world constantly seek innovative solutions to enhance efficiency and reduce environmental impacts. One leading port recently made headlines by introducing a fleet of autonomous electric trucks. These advanced vehicles are transforming both logistics and sustainability at one of the busiest cargo hubs on the planet. How\u2026","rel":"","context":"In &quot;News&quot;","block_context":{"text":"News","link":"https:\/\/news.ftcpublications.com\/core\/category\/news\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/qZG2ub9CsgpK7ojV7_zoZ_11c593c41a1940a981bba8a085e351ab.jpg-scaled.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/qZG2ub9CsgpK7ojV7_zoZ_11c593c41a1940a981bba8a085e351ab.jpg-scaled.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/qZG2ub9CsgpK7ojV7_zoZ_11c593c41a1940a981bba8a085e351ab.jpg-scaled.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/qZG2ub9CsgpK7ojV7_zoZ_11c593c41a1940a981bba8a085e351ab.jpg-scaled.jpg?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/qZG2ub9CsgpK7ojV7_zoZ_11c593c41a1940a981bba8a085e351ab.jpg-scaled.jpg?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/qZG2ub9CsgpK7ojV7_zoZ_11c593c41a1940a981bba8a085e351ab.jpg-scaled.jpg?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":7982,"url":"https:\/\/news.ftcpublications.com\/core\/biodegradable-microchip-prototypes-for-disposable-medical-sensors-promise-a-new-path-to-cut-e-waste\/","url_meta":{"origin":7629,"position":3},"title":"Biodegradable microchip prototypes for disposable medical sensors promise a new path to cut e-waste","author":"FTC Publications","date":"December 13, 2025","format":false,"excerpt":"Healthcare relies on growing numbers of disposable sensors, patches, and test cartridges. Each device contains circuitry that traditionally persists for decades. Those persistent fragments contribute to a mounting e\u2011waste challenge after a single short use. Biodegradable microchip prototypes offer a fundamentally different path. These transient electronics perform, then safely disappear\u2026","rel":"","context":"In &quot;News&quot;","block_context":{"text":"News","link":"https:\/\/news.ftcpublications.com\/core\/category\/news\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/aXS7uV460fr2-MhWf1OH_8859ccc43e6044f4aabe534dd9032e70.jpg-scaled.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/aXS7uV460fr2-MhWf1OH_8859ccc43e6044f4aabe534dd9032e70.jpg-scaled.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/aXS7uV460fr2-MhWf1OH_8859ccc43e6044f4aabe534dd9032e70.jpg-scaled.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/aXS7uV460fr2-MhWf1OH_8859ccc43e6044f4aabe534dd9032e70.jpg-scaled.jpg?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/aXS7uV460fr2-MhWf1OH_8859ccc43e6044f4aabe534dd9032e70.jpg-scaled.jpg?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/aXS7uV460fr2-MhWf1OH_8859ccc43e6044f4aabe534dd9032e70.jpg-scaled.jpg?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":8273,"url":"https:\/\/news.ftcpublications.com\/core\/quantum-sensors-move-from-lab-to-smartphone-what-the-shift-means-for-privacy-and-navigation\/","url_meta":{"origin":7629,"position":4},"title":"Quantum sensors move from lab to smartphone: what the shift means for privacy and navigation","author":"FTC Publications","date":"January 8, 2026","format":false,"excerpt":"Quantum sensors are leaving physics labs and entering consumer product roadmaps. This shift could transform everyday navigation, timing, and environmental awareness. It also raises fresh questions about privacy, consent, and security. Understanding the technology helps you anticipate both benefits and tradeoffs. What makes a sensor \u201cquantum\u201d? Quantum sensors exploit quantum\u2026","rel":"","context":"In &quot;News&quot;","block_context":{"text":"News","link":"https:\/\/news.ftcpublications.com\/core\/category\/news\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/xgQ-Blefb-xJ2-lozvsA2_ea6ed26a9dcd4a3d8987f9bbbbbad35e.jpg-scaled.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/xgQ-Blefb-xJ2-lozvsA2_ea6ed26a9dcd4a3d8987f9bbbbbad35e.jpg-scaled.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/xgQ-Blefb-xJ2-lozvsA2_ea6ed26a9dcd4a3d8987f9bbbbbad35e.jpg-scaled.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/xgQ-Blefb-xJ2-lozvsA2_ea6ed26a9dcd4a3d8987f9bbbbbad35e.jpg-scaled.jpg?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/xgQ-Blefb-xJ2-lozvsA2_ea6ed26a9dcd4a3d8987f9bbbbbad35e.jpg-scaled.jpg?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/xgQ-Blefb-xJ2-lozvsA2_ea6ed26a9dcd4a3d8987f9bbbbbad35e.jpg-scaled.jpg?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":8255,"url":"https:\/\/news.ftcpublications.com\/core\/new-room-temperature-quantum-sensor-hits-nanotesla-precision-on-a-chip-paving-the-way-for-portable-mri-and-field-diagnostics\/","url_meta":{"origin":7629,"position":5},"title":"New room-temperature quantum sensor hits nanotesla precision on a chip, paving the way for portable MRI and field diagnostics","author":"FTC Publications","date":"January 7, 2026","format":false,"excerpt":"A new generation of room\u2011temperature quantum sensors is moving from lab benches onto tiny chips. Engineers have demonstrated nanotesla precision in a compact device that integrates light, control electronics, and sensing elements. The advance removes the need for cryogenics or bulky enclosures, which have limited quantum sensing adoption. It also\u2026","rel":"","context":"In &quot;News&quot;","block_context":{"text":"News","link":"https:\/\/news.ftcpublications.com\/core\/category\/news\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/adTu2aqNa8N8Yg1AIsMNM_6b5d1795b2914225b7e056750d8df7c6.jpg-scaled.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/adTu2aqNa8N8Yg1AIsMNM_6b5d1795b2914225b7e056750d8df7c6.jpg-scaled.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/adTu2aqNa8N8Yg1AIsMNM_6b5d1795b2914225b7e056750d8df7c6.jpg-scaled.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/adTu2aqNa8N8Yg1AIsMNM_6b5d1795b2914225b7e056750d8df7c6.jpg-scaled.jpg?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/adTu2aqNa8N8Yg1AIsMNM_6b5d1795b2914225b7e056750d8df7c6.jpg-scaled.jpg?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/news.ftcpublications.com\/core\/wp-content\/uploads\/adTu2aqNa8N8Yg1AIsMNM_6b5d1795b2914225b7e056750d8df7c6.jpg-scaled.jpg?resize=1400%2C800&ssl=1 4x"},"classes":[]}],"jetpack_sharing_enabled":true,"authors":[{"term_id":356,"user_id":2,"is_guest":0,"slug":"ftcpublications","display_name":"FTC Publications","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/7442f1cf75aa91d0ffc9e9862fd31ab173bfeece2402296357881bfebd0d627e?s=96&d=mm&r=g","0":null,"1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":""}],"_links":{"self":[{"href":"https:\/\/news.ftcpublications.com\/core\/wp-json\/wp\/v2\/posts\/7629","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/news.ftcpublications.com\/core\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/news.ftcpublications.com\/core\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/news.ftcpublications.com\/core\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/news.ftcpublications.com\/core\/wp-json\/wp\/v2\/comments?post=7629"}],"version-history":[{"count":2,"href":"https:\/\/news.ftcpublications.com\/core\/wp-json\/wp\/v2\/posts\/7629\/revisions"}],"predecessor-version":[{"id":7684,"href":"https:\/\/news.ftcpublications.com\/core\/wp-json\/wp\/v2\/posts\/7629\/revisions\/7684"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/news.ftcpublications.com\/core\/wp-json\/wp\/v2\/media\/7630"}],"wp:attachment":[{"href":"https:\/\/news.ftcpublications.com\/core\/wp-json\/wp\/v2\/media?parent=7629"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/news.ftcpublications.com\/core\/wp-json\/wp\/v2\/categories?post=7629"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/news.ftcpublications.com\/core\/wp-json\/wp\/v2\/tags?post=7629"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/news.ftcpublications.com\/core\/wp-json\/wp\/v2\/ppma_author?post=7629"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}