{"id":3914,"date":"2026-03-31T01:57:24","date_gmt":"2026-03-31T05:57:24","guid":{"rendered":"https:\/\/pirhome.com\/?p=3912"},"modified":"2026-03-31T01:57:24","modified_gmt":"2026-03-31T05:57:24","slug":"pir-baby-monitor-alert","status":"publish","type":"post","link":"https:\/\/www.pirhome.com\/?p=3914","title":{"rendered":"PIR Sensor Baby Monitor with Mobile Alert System"},"content":{"rendered":"<h2>Project Overview<\/h2>\n<p>This project creates a smart baby monitor that detects when your baby wakes up and sends an alert to your phone. Unlike traditional audio or video monitors, this system uses a PIR sensor to detect movement in the crib without intrusive cameras or microphones, preserving privacy while still alerting you when the baby is awake.<\/p>\n<p><strong>Difficulty:<\/strong> Intermediate<br \/>\n<strong>Estimated time:<\/strong> 2 hours<br \/>\n<strong>Estimated cost:<\/strong> $20-30<\/p>\n<h2>How It Works<\/h2>\n<p>A PIR sensor is positioned above or near the crib to detect motion. When the baby moves (wakes up), the ESP32 detects the motion and sends a notification to your phone via Blynk or Telegram. A sensitivity adjustment ensures small movements (like breathing) don&#8217;t trigger false alerts while larger movements (waking up) do.<\/p>\n<p>Optional features include: a temperature sensor to monitor room temperature, a night light that turns on when motion is detected, and an audio playback module for lullabies.<\/p>\n<h2>Materials Needed<\/h2>\n<ul>\n<li><strong>ESP32<\/strong> or <strong>ESP8266<\/strong> (1)<\/li>\n<li><strong>HC-SR501 PIR sensor<\/strong> (1) or <strong>AM312<\/strong> for lower profile<\/li>\n<li><strong>DHT22 temperature\/humidity sensor<\/strong> (optional)<\/li>\n<li><strong>RGB LED or WS2812B LED strip<\/strong> (for night light, optional)<\/li>\n<li><strong>Buzzer<\/strong> (for local audible alert, optional)<\/li>\n<li><strong>Jumper wires<\/strong><\/li>\n<li><strong>Power supply<\/strong> (5V 1A)<\/li>\n<li><strong>Project enclosure<\/strong><\/li>\n<li><strong>Mounting bracket or adhesive tape<\/strong><\/li>\n<\/ul>\n<h2>Blynk Setup<\/h2>\n<ol>\n<li>Download Blynk IoT app and create an account.<\/li>\n<li>Create a new template for your baby monitor.<\/li>\n<li>Add a <strong>Notification<\/strong> widget.<\/li>\n<li>Add a <strong>Button<\/strong> widget for night light control.<\/li>\n<li>Add a <strong>Gauge<\/strong> widget for temperature display (if using DHT22).<\/li>\n<li>Note your <strong>BLYNK_TEMPLATE_ID<\/strong> and <strong>BLYNK_AUTH_TOKEN<\/strong>.<\/li>\n<\/ol>\n<h2>Circuit Diagram<\/h2>\n<h3>Connection Table<\/h3>\n<table border=\"1\">\n<thead>\n<th>Component<\/th>\n<th>Pin<\/th>\n<th>ESP32 Pin<\/th>\n<\/thead>\n<tbody>\n<th>PIR Sensor<\/th>\n<td>VCC<\/td>\n<td>3.3V<\/td>\n<\/tr>\n<th>PIR Sensor<\/th>\n<td>GND<\/td>\n<td>GND<\/td>\n<\/tr>\n<th>PIR Sensor<\/th>\n<td>OUT<\/td>\n<td>GPIO 4<\/td>\n<\/tr>\n<th>DHT22<\/th>\n<td>VCC<\/td>\n<td>3.3V<\/td>\n<\/tr>\n<th>DHT22<\/th>\n<td>GND<\/td>\n<td>GND<\/td>\n<\/tr>\n<th>DHT22<\/th>\n<td>DATA<\/td>\n<td>GPIO 5<\/td>\n<\/tr>\n<th>WS2812B LED<\/th>\n<td>VCC<\/td>\n<td>5V<\/td>\n<\/tr>\n<th>WS2812B LED<\/th>\n<td>GND<\/td>\n<td>GND<\/td>\n<\/tr>\n<th>WS2812B LED<\/th>\n<td>DATA<\/td>\n<td>GPIO 6<\/td>\n<\/tr>\n<th>Buzzer<\/th>\n<td>Positive<\/td>\n<td>GPIO 7<\/td>\n<\/tr>\n<th>Buzzer<\/th>\n<td>Negative<\/td>\n<td>GND<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Arduino Code (Blynk IoT Platform)<\/h2>\n<pre><code>\/\/ PIR Baby Monitor with Blynk\n#include &lt;WiFi.h&gt;\n#include &lt;BlynkSimpleEsp32.h&gt;\n#include &lt;DHT.h&gt;\n#include &lt;FastLED.h&gt;\n\n\/\/ Blynk credentials\n#define BLYNK_TEMPLATE_ID \"YourTemplateID\"\n#define BLYNK_TEMPLATE_NAME \"Baby Monitor\"\n#define BLYNK_AUTH_TOKEN \"YourAuthToken\"\n\n\/\/ Wi-Fi credentials\nchar ssid[] = \"YourWiFiSSID\";\nchar pass[] = \"YourWiFiPassword\";\n\n\/\/ Pin definitions\nconst int pirPin = 4;\nconst int dhtPin = 5;\nconst int ledPin = 6;\nconst int buzzerPin = 7;\n\n\/\/ DHT sensor\n#define DHTTYPE DHT22\nDHT dht(dhtPin, DHTTYPE);\n\n\/\/ LED strip\n#define NUM_LEDS 8\nCRGB leds[NUM_LEDS];\nbool nightLightOn = false;\n\n\/\/ Timing\nunsigned long lastAlertTime = 0;\nconst unsigned long alertCooldown = 300000; \/\/ 5 minutes between alerts\nbool motionDetectedFlag = false;\n\nvoid setup() {\n  Serial.begin(115200);\n  \n  pinMode(pirPin, INPUT);\n  pinMode(buzzerPin, OUTPUT);\n  digitalWrite(buzzerPin, LOW);\n  \n  \/\/ Initialize LED strip\n  FastLED.addLeds&lt;WS2812B, ledPin, GRB&gt;(leds, NUM_LEDS);\n  FastLED.setBrightness(64);\n  FastLED.clear();\n  \n  \/\/ Initialize DHT\n  dht.begin();\n  \n  \/\/ Connect to Blynk\n  Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass);\n  \n  Serial.println(\"Baby Monitor Ready\");\n  Serial.println(\"Waiting 60 seconds for PIR warm-up...\");\n  delay(60000);\n}\n\n\/\/ Night light control from Blynk app\nBLYNK_WRITE(V0) {\n  nightLightOn = param.asInt();\n  if (nightLightOn) {\n    \/\/ Soft warm light\n    for (int i = 0; i < NUM_LEDS; i++) {\n      leds[i] = CRGB(255, 180, 100);\n    }\n    FastLED.show();\n  } else {\n    FastLED.clear();\n    FastLED.show();\n  }\n}\n\nvoid sendAlert() {\n  if (millis() - lastAlertTime > alertCooldown) {\n    Serial.println(\"Baby waking up! Sending alert...\");\n    Blynk.logEvent(\"baby_wakeup\", \"Baby is waking up!\");\n    lastAlertTime = millis();\n    \n    \/\/ Local buzzer alert (soft beep)\n    tone(buzzerPin, 1000, 200);\n    delay(200);\n    tone(buzzerPin, 1500, 200);\n    \n    \/\/ Turn on night light temporarily\n    if (!nightLightOn) {\n      for (int i = 0; i < NUM_LEDS; i++) {\n        leds[i] = CRGB(255, 180, 100);\n      }\n      FastLED.show();\n      delay(10000); \/\/ 10 seconds\n      if (!nightLightOn) {\n        FastLED.clear();\n        FastLED.show();\n      }\n    }\n  }\n}\n\nvoid readAndSendTemperature() {\n  float temp = dht.readTemperature();\n  float humidity = dht.readHumidity();\n  \n  if (!isnan(temp)) {\n    Blynk.virtualWrite(V1, temp);\n    Blynk.virtualWrite(V2, humidity);\n  }\n}\n\nvoid loop() {\n  Blynk.run();\n  \n  bool motion = digitalRead(pirPin) == HIGH;\n  \n  if (motion &#038;&#038; !motionDetectedFlag) {\n    motionDetectedFlag = true;\n    sendAlert();\n  }\n  \n  if (!motion) {\n    motionDetectedFlag = false;\n  }\n  \n  \/\/ Send temperature every 30 seconds\n  static unsigned long lastTempRead = 0;\n  if (millis() - lastTempRead > 30000) {\n    readAndSendTemperature();\n    lastTempRead = millis();\n  }\n  \n  delay(100);\n}\n<\/code><\/pre>\n<h2>Alternative: Telegram Bot Version (No Blynk Account Needed)<\/h2>\n<pre><code>\/\/ Telegram Bot Version\n#include &lt;WiFi.h&gt;\n#include &lt;UniversalTelegramBot.h&gt;\n#include &lt;WiFiClientSecure.h&gt;\n\nconst char* ssid = \"YourWiFiSSID\";\nconst char* password = \"YourWiFiPassword\";\nconst char* botToken = \"YourTelegramBotToken\";\nconst char* chatID = \"YourChatID\";\n\nWiFiClientSecure client;\nUniversalTelegramBot bot(botToken, client);\n\nconst int pirPin = 4;\nunsigned long lastAlertTime = 0;\nconst unsigned long alertCooldown = 300000;\n\nvoid setup() {\n  Serial.begin(115200);\n  pinMode(pirPin, INPUT);\n  \n  WiFi.begin(ssid, password);\n  while (WiFi.status() != WL_CONNECTED) {\n    delay(500);\n  }\n  Serial.println(\"WiFi connected\");\n  \n  client.setCACert(TELEGRAM_CERTIFICATE_ROOT);\n  delay(60000); \/\/ PIR warm-up\n}\n\nvoid sendTelegramAlert() {\n  if (millis() - lastAlertTime > alertCooldown) {\n    String message = \"Baby is waking up! \ud83d\udc76\";\n    bot.sendMessage(chatID, message, \"\");\n    lastAlertTime = millis();\n  }\n}\n\nvoid loop() {\n  bool motion = digitalRead(pirPin) == HIGH;\n  if (motion) {\n    sendTelegramAlert();\n    delay(10000); \/\/ Debounce\n  }\n  delay(100);\n}\n<\/code><\/pre>\n<h2>Sensor Placement<\/h2>\n<h3>Crib Placement<\/h3>\n<p>Mount the PIR sensor above the crib, angled downward to cover only the crib area. For a standard crib, mounting at 1-1.5m height, angled at 45\u00b0, provides coverage of the entire crib.<\/p>\n<h3>Adjusting Sensitivity<\/h3>\n<p>Adjust the sensitivity potentiometer so that small movements (breathing, turning head) do not trigger, but larger movements (sitting up, standing) do. This may take some trial and error.<\/p>\n<h2>Installation Steps<\/h2>\n<ol>\n<li><strong>Assemble circuit:<\/strong> Build on breadboard and test.<\/li>\n<li><strong>Configure Blynk\/Telegram:<\/strong> Set up notifications.<\/li>\n<li><strong>Test motion detection:<\/strong> Wave hand to verify alerts.<\/li>\n<li><strong>Mount sensor:<\/strong> Position above crib securely.<\/li>\n<li><strong>Adjust sensitivity:<\/strong> Fine-tune to detect baby movement only.<\/li>\n<li><strong>Test with baby:<\/strong> Observe for a few nights to ensure alerts are reliable but not excessive.<\/li>\n<\/ol>\n<h2>Project Extensions<\/h2>\n<ul>\n<li><strong>Temperature alerts:<\/strong> Send alert if room temperature is too hot or cold.<\/li>\n<li><strong>Cry detection:<\/strong> Add sound sensor to detect crying.<\/li>\n<li><strong>Lullaby player:<\/strong> Add DFPlayer Mini to play lullabies when motion detected.<\/li>\n<li><strong>Night vision:<\/strong> Add infrared LEDs for low-light detection (PIR doesn&#8217;t need light).<\/li>\n<li><strong>Data logging:<\/strong> Track sleep\/wake patterns over time.<\/li>\n<li><strong>Google Assistant integration:<\/strong> Ask &#8220;Is the baby awake?&#8221; and get response.<\/li>\n<\/ul>\n<h2>Troubleshooting<\/h2>\n<ul>\n<li><strong>Too many alerts:<\/strong> Reduce sensitivity or increase <code>alertCooldown<\/code>. Adjust PIR sensitivity potentiometer.<\/li>\n<li><strong>No alerts:<\/strong> Check PIR sensor detects hand movement. Ensure Wi-Fi connection is stable.<\/li>\n<li><strong>False alerts from airflow:<\/strong> Reposition sensor away from windows or vents.<\/li>\n<li><strong>Temperature sensor not reading:<\/strong> Check wiring; DHT22 needs a 4.7k-10k pull-up resistor.<\/li>\n<\/ul>\n<h2>Safety Considerations<\/h2>\n<ul>\n<li>Mount sensor securely out of baby&#8217;s reach.<\/li>\n<li>Use low-voltage components only (3.3V-5V).<\/li>\n<li>Ensure no cords are within reach of the crib.<\/li>\n<li>Test all components before placing near baby.<\/li>\n<li>This system is a supplement to, not a replacement for, attentive parenting.<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>This PIR-based baby monitor provides peace of mind without intrusive cameras or constant audio monitoring. You&#8217;ll know exactly when your baby wakes up, allowing you to respond promptly while preserving privacy.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Project Overview This project creates a smart baby monitor that detects when your baby wakes up and sends an alert to your phone. Unlike traditional audio or video monitors, this system uses a PIR sensor to detect movement in the crib without intrusive cameras or microphones, preserving privacy while still alerting you when the baby [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9],"tags":[],"class_list":["post-3914","post","type-post","status-publish","format-standard","hentry","category-projects"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\r\n<title>PIR Sensor Baby Monitor with Mobile Alert System - PIRHOME<\/title>\r\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\r\n<link rel=\"canonical\" href=\"http:\/\/www.pirhome.com\/?p=3914\" \/>\r\n<meta property=\"og:locale\" content=\"en_US\" \/>\r\n<meta property=\"og:type\" content=\"article\" \/>\r\n<meta property=\"og:title\" content=\"PIR Sensor Baby Monitor with Mobile Alert System - PIRHOME\" \/>\r\n<meta property=\"og:description\" content=\"Project Overview This project creates a smart baby monitor that detects when your baby wakes up and sends an alert to your phone. Unlike traditional audio or video monitors, this system uses a PIR sensor to detect movement in the crib without intrusive cameras or microphones, preserving privacy while still alerting you when the baby [&hellip;]\" \/>\r\n<meta property=\"og:url\" content=\"http:\/\/www.pirhome.com\/?p=3914\" \/>\r\n<meta property=\"og:site_name\" content=\"PIRHOME\" \/>\r\n<meta property=\"article:published_time\" content=\"2026-03-31T05:57:24+00:00\" \/>\r\n<meta name=\"author\" content=\"nic@nicsky.com\" \/>\r\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\r\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"nic@nicsky.com\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\r\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3914#article\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3914\"},\"author\":{\"name\":\"nic@nicsky.com\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#\\\/schema\\\/person\\\/41049b5236f9c77c9314997d070db3e3\"},\"headline\":\"PIR Sensor Baby Monitor with Mobile Alert System\",\"datePublished\":\"2026-03-31T05:57:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3914\"},\"wordCount\":623,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#organization\"},\"articleSection\":[\"Projects\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\\\/\\\/www.pirhome.com\\\/?p=3914#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3914\",\"url\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3914\",\"name\":\"PIR Sensor Baby Monitor with Mobile Alert System - PIRHOME\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#website\"},\"datePublished\":\"2026-03-31T05:57:24+00:00\",\"breadcrumb\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3914#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\\\/\\\/www.pirhome.com\\\/?p=3914\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3914#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/www.pirhome.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PIR Sensor Baby Monitor with Mobile Alert System\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#website\",\"url\":\"http:\\\/\\\/www.pirhome.com\\\/\",\"name\":\"PIRHOME\",\"description\":\"PIR &amp; Motion Sensor\",\"publisher\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\\\/\\\/www.pirhome.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#organization\",\"name\":\"PIRHOME\",\"url\":\"http:\\\/\\\/www.pirhome.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.pirhome.com\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/cropped-\u5fae\u4fe1\u56fe\u7247_2026-02-19_222409_472.jpg\",\"contentUrl\":\"https:\\\/\\\/www.pirhome.com\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/cropped-\u5fae\u4fe1\u56fe\u7247_2026-02-19_222409_472.jpg\",\"width\":512,\"height\":512,\"caption\":\"PIRHOME\"},\"image\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#\\\/schema\\\/person\\\/41049b5236f9c77c9314997d070db3e3\",\"name\":\"nic@nicsky.com\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/271d4eaab48e299e4fce771a8c43c537be3ac77a3115cc7de802a6c8b692d971?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/271d4eaab48e299e4fce771a8c43c537be3ac77a3115cc7de802a6c8b692d971?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/271d4eaab48e299e4fce771a8c43c537be3ac77a3115cc7de802a6c8b692d971?s=96&d=mm&r=g\",\"caption\":\"nic@nicsky.com\"},\"sameAs\":[\"http:\\\/\\\/www.pirhome.com\"],\"url\":\"https:\\\/\\\/www.pirhome.com\\\/?author=1\"}]}<\/script>\r\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PIR Sensor Baby Monitor with Mobile Alert System - PIRHOME","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":"http:\/\/www.pirhome.com\/?p=3914","og_locale":"en_US","og_type":"article","og_title":"PIR Sensor Baby Monitor with Mobile Alert System - PIRHOME","og_description":"Project Overview This project creates a smart baby monitor that detects when your baby wakes up and sends an alert to your phone. Unlike traditional audio or video monitors, this system uses a PIR sensor to detect movement in the crib without intrusive cameras or microphones, preserving privacy while still alerting you when the baby [&hellip;]","og_url":"http:\/\/www.pirhome.com\/?p=3914","og_site_name":"PIRHOME","article_published_time":"2026-03-31T05:57:24+00:00","author":"nic@nicsky.com","twitter_card":"summary_large_image","twitter_misc":{"Written by":"nic@nicsky.com","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/www.pirhome.com\/?p=3914#article","isPartOf":{"@id":"http:\/\/www.pirhome.com\/?p=3914"},"author":{"name":"nic@nicsky.com","@id":"http:\/\/www.pirhome.com\/#\/schema\/person\/41049b5236f9c77c9314997d070db3e3"},"headline":"PIR Sensor Baby Monitor with Mobile Alert System","datePublished":"2026-03-31T05:57:24+00:00","mainEntityOfPage":{"@id":"http:\/\/www.pirhome.com\/?p=3914"},"wordCount":623,"commentCount":0,"publisher":{"@id":"http:\/\/www.pirhome.com\/#organization"},"articleSection":["Projects"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/www.pirhome.com\/?p=3914#respond"]}]},{"@type":"WebPage","@id":"http:\/\/www.pirhome.com\/?p=3914","url":"http:\/\/www.pirhome.com\/?p=3914","name":"PIR Sensor Baby Monitor with Mobile Alert System - PIRHOME","isPartOf":{"@id":"http:\/\/www.pirhome.com\/#website"},"datePublished":"2026-03-31T05:57:24+00:00","breadcrumb":{"@id":"http:\/\/www.pirhome.com\/?p=3914#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/www.pirhome.com\/?p=3914"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/www.pirhome.com\/?p=3914#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/www.pirhome.com\/"},{"@type":"ListItem","position":2,"name":"PIR Sensor Baby Monitor with Mobile Alert System"}]},{"@type":"WebSite","@id":"http:\/\/www.pirhome.com\/#website","url":"http:\/\/www.pirhome.com\/","name":"PIRHOME","description":"PIR &amp; Motion Sensor","publisher":{"@id":"http:\/\/www.pirhome.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/www.pirhome.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/www.pirhome.com\/#organization","name":"PIRHOME","url":"http:\/\/www.pirhome.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/www.pirhome.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.pirhome.com\/wp-content\/uploads\/2026\/02\/cropped-\u5fae\u4fe1\u56fe\u7247_2026-02-19_222409_472.jpg","contentUrl":"https:\/\/www.pirhome.com\/wp-content\/uploads\/2026\/02\/cropped-\u5fae\u4fe1\u56fe\u7247_2026-02-19_222409_472.jpg","width":512,"height":512,"caption":"PIRHOME"},"image":{"@id":"http:\/\/www.pirhome.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"http:\/\/www.pirhome.com\/#\/schema\/person\/41049b5236f9c77c9314997d070db3e3","name":"nic@nicsky.com","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/271d4eaab48e299e4fce771a8c43c537be3ac77a3115cc7de802a6c8b692d971?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/271d4eaab48e299e4fce771a8c43c537be3ac77a3115cc7de802a6c8b692d971?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/271d4eaab48e299e4fce771a8c43c537be3ac77a3115cc7de802a6c8b692d971?s=96&d=mm&r=g","caption":"nic@nicsky.com"},"sameAs":["http:\/\/www.pirhome.com"],"url":"https:\/\/www.pirhome.com\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3914","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=3914"}],"version-history":[{"count":1,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3914\/revisions"}],"predecessor-version":[{"id":4041,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3914\/revisions\/4041"}],"wp:attachment":[{"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3914"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3914"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3914"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}