{"id":3915,"date":"2026-03-31T01:57:24","date_gmt":"2026-03-31T05:57:24","guid":{"rendered":"https:\/\/pirhome.com\/?p=3913"},"modified":"2026-03-31T01:57:24","modified_gmt":"2026-03-31T05:57:24","slug":"pir-automatic-sink-faucet","status":"publish","type":"post","link":"https:\/\/www.pirhome.com\/?p=3915","title":{"rendered":"PIR Sensor for Automatic Sink Faucet"},"content":{"rendered":"<h2>Project Overview<\/h2>\n<p>This project converts a standard sink faucet into a touchless automatic faucet. When you place your hands under the faucet, a PIR sensor detects motion and opens a solenoid valve, allowing water to flow. When you remove your hands, the water stops after a short delay. This is perfect for kitchens, bathrooms, and public spaces where hygiene is important.<\/p>\n<p><strong>Difficulty:<\/strong> Intermediate<br \/>\n<strong>Estimated time:<\/strong> 3-4 hours<br \/>\n<strong>Estimated cost:<\/strong> $40-60<\/p>\n<h2>How It Works<\/h2>\n<p>A PIR sensor is positioned under the faucet spout, facing down toward the sink. When hands enter the detection zone, the sensor triggers an Arduino\/ESP32, which activates a solenoid valve connected to the water line. The valve opens, water flows, and when hands are removed, the valve closes after a brief delay (to prevent rapid cycling).<\/p>\n<p>An optional temperature sensor can detect water temperature, and an LCD can display status.<\/p>\n<h2>Materials Needed<\/h2>\n<ul>\n<li><strong>Arduino Uno<\/strong> or <strong>ESP32<\/strong> (1)<\/li>\n<li><strong>HC-SR501 PIR sensor<\/strong> (1) \u2013 facing downward<\/li>\n<li><strong>12V solenoid valve<\/strong> (normally closed, 1\/2&#8243; or 3\/4&#8243; NPT)<\/li>\n<li><strong>12V power supply<\/strong> (2A minimum)<\/li>\n<li><strong>MOSFET or relay module<\/strong> (to control solenoid)<\/li>\n<li><strong>Plumbing fittings<\/strong> (to adapt to your faucet supply)<\/li>\n<li><strong>Waterproof enclosure<\/strong> (for electronics)<\/li>\n<li><strong>Jumper wires and soldering equipment<\/strong><\/li>\n<li><strong>Teflon tape<\/strong> (for plumbing connections)<\/li>\n<li><strong>Optional: DS18B20 temperature sensor, LCD display<\/strong><\/li>\n<\/ul>\n<h2>Important Safety Notes<\/h2>\n<ul>\n<li>This project involves plumbing and electrical work. If you are not comfortable with either, consult a professional.<\/li>\n<li>Always turn off water supply before installing the solenoid valve.<\/li>\n<li>Use a GFCI-protected outlet for the power supply.<\/li>\n<li>Ensure all electrical connections are protected from moisture.<\/li>\n<\/ul>\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>Arduino Pin<\/th>\n<\/thead>\n<tbody>\n<th>PIR Sensor<\/th>\n<td>VCC<\/td>\n<td>5V<\/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>Digital Pin 2<\/td>\n<\/tr>\n<th>Relay Module<\/th>\n<td>VCC<\/td>\n<td>5V<\/td>\n<\/tr>\n<th>Relay Module<\/th>\n<td>GND<\/td>\n<td>GND<\/td>\n<\/tr>\n<th>Relay Module<\/th>\n<td>IN<\/td>\n<td>Digital Pin 3<\/td>\n<\/tr>\n<th>Solenoid Valve<\/th>\n<td>Positive<\/td>\n<td>Relay COM (power supply +)<\/td>\n<\/tr>\n<th>Solenoid Valve<\/th>\n<td>Negative<\/td>\n<td>Relay NO (to power supply -)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Plumbing Installation<\/h2>\n<ol>\n<li><strong>Turn off water supply:<\/strong> Close the shutoff valves under the sink.<\/li>\n<li><strong>Locate supply line:<\/strong> Identify the cold water supply line to your faucet.<\/li>\n<li><strong>Install solenoid valve:<\/strong> Cut the supply line (or use existing connections) and install the solenoid valve in-line. Use Teflon tape on all threaded connections.<\/li>\n<li><strong>Secure valve:<\/strong> Mount the solenoid valve securely under the sink where it won&#8217;t be disturbed.<\/li>\n<li><strong>Test for leaks:<\/strong> Turn water on briefly to check for leaks before connecting electronics.<\/li>\n<\/ol>\n<h2>Arduino Code<\/h2>\n<pre><code>\/\/ Automatic Faucet with PIR Sensor\n\/\/ Opens solenoid valve when hands detected\n\nconst int pirPin = 2;\nconst int valvePin = 3;\n\nunsigned long lastTriggerTime = 0;\nconst unsigned long waterDuration = 3000;  \/\/ Water flows for 3 seconds after hands removed\nconst unsigned long minInterval = 1000;     \/\/ Minimum time between cycles\n\nbool waterOn = false;\nbool motionDetected = false;\n\nvoid setup() {\n  Serial.begin(9600);\n  \n  pinMode(pirPin, INPUT);\n  pinMode(valvePin, OUTPUT);\n  \n  digitalWrite(valvePin, LOW);\n  \n  Serial.println(\"Automatic Faucet Ready\");\n  Serial.println(\"Waiting 60 seconds for PIR warm-up...\");\n  delay(60000);\n}\n\nvoid turnWaterOn() {\n  digitalWrite(valvePin, HIGH);\n  waterOn = true;\n  Serial.println(\"Water ON\");\n}\n\nvoid turnWaterOff() {\n  digitalWrite(valvePin, LOW);\n  waterOn = false;\n  Serial.println(\"Water OFF\");\n}\n\nvoid loop() {\n  bool motion = digitalRead(pirPin) == HIGH;\n  \n  if (motion && !motionDetected) {\n    \/\/ Hands detected - turn water on\n    motionDetected = true;\n    lastTriggerTime = millis();\n    \n    if (!waterOn) {\n      turnWaterOn();\n    }\n  }\n  \n  if (!motion && motionDetected) {\n    \/\/ Hands removed - start timer\n    motionDetected = false;\n    lastTriggerTime = millis();\n  }\n  \n  \/\/ If water is on and no motion, turn off after delay\n  if (waterOn && !motionDetected && (millis() - lastTriggerTime > waterDuration)) {\n    turnWaterOff();\n  }\n  \n  \/\/ Safety: auto-off after 30 seconds regardless (prevent flooding)\n  if (waterOn && (millis() - lastTriggerTime > 30000)) {\n    Serial.println(\"Safety timeout - turning water off\");\n    turnWaterOff();\n  }\n  \n  delay(100);\n}\n<\/code><\/pre>\n<h2>Enhanced Version with Temperature Display<\/h2>\n<pre><code>#include &lt;OneWire.h&gt;\n#include &lt;DallasTemperature.h&gt;\n#include &lt;LiquidCrystal_I2C.h&gt;\n\n#define ONE_WIRE_BUS 4\nOneWire oneWire(ONE_WIRE_BUS);\nDallasTemperature sensors(&oneWire);\n\nLiquidCrystal_I2C lcd(0x27, 16, 2);\n\nconst int pirPin = 2;\nconst int valvePin = 3;\n\nunsigned long lastTriggerTime = 0;\nconst unsigned long waterDuration = 3000;\nbool waterOn = false;\nbool motionDetected = false;\nfloat currentTemp = 0;\n\nvoid setup() {\n  Serial.begin(9600);\n  pinMode(pirPin, INPUT);\n  pinMode(valvePin, OUTPUT);\n  digitalWrite(valvePin, LOW);\n  \n  sensors.begin();\n  \n  lcd.init();\n  lcd.backlight();\n  lcd.setCursor(0, 0);\n  lcd.print(\"Touchless Faucet\");\n  lcd.setCursor(0, 1);\n  lcd.print(\"Ready\");\n  \n  delay(60000);\n}\n\nvoid readTemperature() {\n  sensors.requestTemperatures();\n  currentTemp = sensors.getTempCByIndex(0);\n  \n  if (currentTemp != -127) {\n    lcd.setCursor(0, 1);\n    lcd.print(\"Temp: \");\n    lcd.print(currentTemp);\n    lcd.print(\"C\");\n  }\n}\n\nvoid loop() {\n  readTemperature();\n  \n  bool motion = digitalRead(pirPin) == HIGH;\n  \n  if (motion && !motionDetected) {\n    motionDetected = true;\n    lastTriggerTime = millis();\n    if (!waterOn) {\n      digitalWrite(valvePin, HIGH);\n      waterOn = true;\n      lcd.setCursor(0, 0);\n      lcd.print(\"Water ON       \");\n    }\n  }\n  \n  if (!motion && motionDetected) {\n    motionDetected = false;\n    lastTriggerTime = millis();\n  }\n  \n  if (waterOn && !motionDetected && (millis() - lastTriggerTime > waterDuration)) {\n    digitalWrite(valvePin, LOW);\n    waterOn = false;\n    lcd.setCursor(0, 0);\n    lcd.print(\"Ready         \");\n  }\n  \n  if (waterOn && (millis() - lastTriggerTime > 30000)) {\n    digitalWrite(valvePin, LOW);\n    waterOn = false;\n    lcd.setCursor(0, 0);\n    lcd.print(\"Safety OFF    \");\n  }\n  \n  delay(100);\n}\n<\/code><\/pre>\n<h2>PIR Sensor Positioning<\/h2>\n<p>Position the PIR sensor under the faucet spout, facing downward. The sensor should be angled so it detects hands in the sink but not people walking past. For best results:<\/p>\n<ul>\n<li>Mount sensor 10-15cm above the sink bottom.<\/li>\n<li>Angle sensor slightly away from user to avoid detecting the user&#8217;s body.<\/li>\n<li>Adjust sensitivity potentiometer to minimum range (so it only detects directly below).<\/li>\n<li>Use a narrow field of view lens or add a shield to limit detection area.<\/li>\n<\/ul>\n<h2>Enclosure and Waterproofing<\/h2>\n<ol>\n<li>Place Arduino and relay module in a waterproof enclosure under the sink.<\/li>\n<li>Run sensor wires through a sealed cable gland.<\/li>\n<li>Mount PIR sensor in a small waterproof housing, sealed with silicone.<\/li>\n<li>Ensure all electrical connections are away from water lines.<\/li>\n<li>Use a GFCI outlet for power.<\/li>\n<\/ol>\n<h2>Installation Steps<\/h2>\n<ol>\n<li><strong>Install solenoid valve:<\/strong> Turn off water, install valve in supply line.<\/li>\n<li><strong>Test for leaks:<\/strong> Turn water on and check connections.<\/li>\n<li><strong>Build electronics:<\/strong> Assemble circuit in enclosure.<\/li>\n<li><strong>Mount PIR sensor:<\/strong> Position under faucet spout.<\/li>\n<li><strong>Connect solenoid to relay:<\/strong> Wire to 12V power supply.<\/li>\n<li><strong>Program Arduino:<\/strong> Upload code and test with hand.<\/li>\n<li><strong>Adjust sensitivity:<\/strong> Fine-tune PIR to detect only hands.<\/li>\n<li><strong>Secure enclosure:<\/strong> Mount under sink away from water.<\/li>\n<\/ol>\n<h2>Project Extensions<\/h2>\n<ul>\n<li><strong>Temperature control:<\/strong> Add mixing valve for temperature adjustment.<\/li>\n<li><strong>Flow sensor:<\/strong> Monitor water usage and detect leaks.<\/li>\n<li><strong>Voice control:<\/strong> Add Alexa\/Google Assistant integration.<\/li>\n<li><strong>Battery backup:<\/strong> Add battery for operation during power outages.<\/li>\n<li><strong>Soap dispenser:<\/strong> Add second solenoid for automatic soap.<\/li>\n<li><strong>UV sterilization:<\/strong> Add UV LED for water sterilization.<\/li>\n<\/ul>\n<h2>Troubleshooting<\/h2>\n<ul>\n<li><strong>Water doesn&#8217;t flow:<\/strong> Check solenoid valve wiring; test by applying 12V directly. Ensure water supply is on.<\/li>\n<li><strong>Water runs continuously:<\/strong> Solenoid may be stuck open; check for debris. Replace if faulty.<\/li>\n<li><strong>Sensor not detecting:<\/strong> Adjust sensitivity. Check wiring.<\/li>\n<li><strong>False triggering:<\/strong> Reduce sensitivity or add shield to limit field of view.<\/li>\n<li><strong>Water hammer:<\/strong> Add water hammer arrestor to plumbing.<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>This touchless faucet project adds convenience and improves hygiene in your kitchen or bathroom. With proper installation, it provides years of reliable, hands-free operation.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Project Overview This project converts a standard sink faucet into a touchless automatic faucet. When you place your hands under the faucet, a PIR sensor detects motion and opens a solenoid valve, allowing water to flow. When you remove your hands, the water stops after a short delay. This is perfect for kitchens, bathrooms, and [&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-3915","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 for Automatic Sink Faucet - 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=\"https:\/\/www.pirhome.com\/?p=3915\" \/>\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 for Automatic Sink Faucet - PIRHOME\" \/>\r\n<meta property=\"og:description\" content=\"Project Overview This project converts a standard sink faucet into a touchless automatic faucet. When you place your hands under the faucet, a PIR sensor detects motion and opens a solenoid valve, allowing water to flow. When you remove your hands, the water stops after a short delay. This is perfect for kitchens, bathrooms, and [&hellip;]\" \/>\r\n<meta property=\"og:url\" content=\"https:\/\/www.pirhome.com\/?p=3915\" \/>\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\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3915#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3915\"},\"author\":{\"name\":\"nic@nicsky.com\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#\\\/schema\\\/person\\\/41049b5236f9c77c9314997d070db3e3\"},\"headline\":\"PIR Sensor for Automatic Sink Faucet\",\"datePublished\":\"2026-03-31T05:57:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3915\"},\"wordCount\":721,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#organization\"},\"articleSection\":[\"Projects\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.pirhome.com\\\/?p=3915#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3915\",\"url\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3915\",\"name\":\"PIR Sensor for Automatic Sink Faucet - PIRHOME\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#website\"},\"datePublished\":\"2026-03-31T05:57:24+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3915#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pirhome.com\\\/?p=3915\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3915#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/www.pirhome.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PIR Sensor for Automatic Sink Faucet\"}]},{\"@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 for Automatic Sink Faucet - 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":"https:\/\/www.pirhome.com\/?p=3915","og_locale":"en_US","og_type":"article","og_title":"PIR Sensor for Automatic Sink Faucet - PIRHOME","og_description":"Project Overview This project converts a standard sink faucet into a touchless automatic faucet. When you place your hands under the faucet, a PIR sensor detects motion and opens a solenoid valve, allowing water to flow. When you remove your hands, the water stops after a short delay. This is perfect for kitchens, bathrooms, and [&hellip;]","og_url":"https:\/\/www.pirhome.com\/?p=3915","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":"https:\/\/www.pirhome.com\/?p=3915#article","isPartOf":{"@id":"https:\/\/www.pirhome.com\/?p=3915"},"author":{"name":"nic@nicsky.com","@id":"http:\/\/www.pirhome.com\/#\/schema\/person\/41049b5236f9c77c9314997d070db3e3"},"headline":"PIR Sensor for Automatic Sink Faucet","datePublished":"2026-03-31T05:57:24+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pirhome.com\/?p=3915"},"wordCount":721,"commentCount":0,"publisher":{"@id":"http:\/\/www.pirhome.com\/#organization"},"articleSection":["Projects"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.pirhome.com\/?p=3915#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pirhome.com\/?p=3915","url":"https:\/\/www.pirhome.com\/?p=3915","name":"PIR Sensor for Automatic Sink Faucet - PIRHOME","isPartOf":{"@id":"http:\/\/www.pirhome.com\/#website"},"datePublished":"2026-03-31T05:57:24+00:00","breadcrumb":{"@id":"https:\/\/www.pirhome.com\/?p=3915#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pirhome.com\/?p=3915"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.pirhome.com\/?p=3915#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/www.pirhome.com\/"},{"@type":"ListItem","position":2,"name":"PIR Sensor for Automatic Sink Faucet"}]},{"@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\/3915","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=3915"}],"version-history":[{"count":1,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3915\/revisions"}],"predecessor-version":[{"id":4040,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3915\/revisions\/4040"}],"wp:attachment":[{"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3915"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3915"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3915"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}