{"id":3909,"date":"2026-03-31T17:30:00","date_gmt":"2026-03-31T17:30:00","guid":{"rendered":"https:\/\/pirhome.com\/?p=3908"},"modified":"2026-03-31T17:30:00","modified_gmt":"2026-03-31T17:30:00","slug":"pir-dog-bark-stopper","status":"publish","type":"post","link":"https:\/\/www.pirhome.com\/?p=3909","title":{"rendered":"PIR Sensor Dog Bark Stopper (Ultrasonic Deterrent)"},"content":{"rendered":"<h2>Project Overview<\/h2>\n<p>This project creates a humane dog bark deterrent that uses ultrasonic sound to discourage excessive barking. The system activates only when motion is detected, saving battery life and preventing constant noise. When the sensor detects a dog (or person), it emits a high-frequency sound (25-30 kHz) that is unpleasant to dogs but inaudible to humans.<\/p>\n<p><strong>Difficulty:<\/strong> Intermediate<br \/>\n<strong>Estimated time:<\/strong> 2-3 hours<br \/>\n<strong>Estimated cost:<\/strong> $25-35<\/p>\n<h2>How It Works<\/h2>\n<p>A PIR sensor detects motion (the dog approaching or moving in the yard). When motion is detected, the system activates an ultrasonic transducer that emits a high-frequency tone. Dogs find this sound unpleasant and learn to associate the area with the sound, eventually reducing barking behavior. The system includes a sound sensor (optional) to only activate when barking is actually occurring.<\/p>\n<h2>Materials Needed<\/h2>\n<ul>\n<li><strong>Arduino Nano<\/strong> or <strong>ESP32<\/strong> (1)<\/li>\n<li><strong>HC-SR501 PIR sensor<\/strong> (1)<\/li>\n<li><strong>Ultrasonic transducer<\/strong> (25-30 kHz, e.g., Murata MA40S4S)<\/li>\n<li><strong>ULN2003 Darlington array<\/strong> or <strong>MOSFET<\/strong> (to drive transducer)<\/li>\n<li><strong>Sound sensor module<\/strong> (LM393-based, optional, for bark detection)<\/li>\n<li><strong>Buzzer<\/strong> (for testing, optional)<\/li>\n<li><strong>LED<\/strong> (for status indication)<\/li>\n<li><strong>Resistors<\/strong> (220\u03a9, 10k)<\/li>\n<li><strong>Jumper wires<\/strong><\/li>\n<li><strong>Power supply<\/strong> (5V 1A)<\/li>\n<li><strong>Weatherproof enclosure<\/strong> (if outdoor use)<\/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<td>PIR Sensor<\/td>\n<td>VCC<\/td>\n<td>5V<\/td>\n<\/tr>\n<td>PIR Sensor<\/td>\n<td>GND<\/td>\n<td>GND<\/td>\n<\/tr>\n<td>PIR Sensor<\/td>\n<td>OUT<\/td>\n<td>Digital Pin 2<\/td>\n<\/tr>\n<td>Ultrasonic Transducer (+)<\/td>\n<td>&#8211;<\/td>\n<td>Digital Pin 9 (via ULN2003)<\/td>\n<\/tr>\n<td>Ultrasonic Transducer (-)<\/td>\n<td>&#8211;<\/td>\n<td>GND<\/td>\n<\/tr>\n<td>Sound Sensor<\/td>\n<td>VCC<\/td>\n<td>5V<\/td>\n<\/tr>\n<td>Sound Sensor<\/td>\n<td>GND<\/td>\n<td>GND<\/td>\n<\/tr>\n<td>Sound Sensor<\/td>\n<td>DO (digital out)<\/td>\n<td>Digital Pin 3<\/td>\n<\/tr>\n<td>Status LED<\/td>\n<td>Anode<\/td>\n<td>Digital Pin 13 (through 220\u03a9)<\/td>\n<\/tr>\n<td>Status LED<\/td>\n<td>Cathode<\/td>\n<td>GND<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Arduino Code<\/h2>\n<pre><code>\/\/ PIR Dog Bark Stopper\n\/\/ Uses PIR sensor and ultrasonic transducer\n\nconst int pirPin = 2;\nconst int ultrasonicPin = 9;\nconst int soundSensorPin = 3;  \/\/ Optional bark detection\nconst int ledPin = 13;\n\n\/\/ Timing\nunsigned long lastTriggerTime = 0;\nconst unsigned long deterrentDuration = 3000;  \/\/ 3 seconds\nconst unsigned long cooldownPeriod = 60000;    \/\/ 1 minute between activations\nbool deterrentActive = false;\nunsigned long deterrentStart = 0;\n\n\/\/ Ultrasonic frequency (25kHz = 20\u00b5s period)\nconst int halfPeriod = 20;  \/\/ microseconds (for 25kHz)\n\/\/ For 30kHz: halfPeriod = 16.7, use 17\n\nvoid setup() {\n  Serial.begin(9600);\n  \n  pinMode(pirPin, INPUT);\n  pinMode(ultrasonicPin, OUTPUT);\n  pinMode(soundSensorPin, INPUT);\n  pinMode(ledPin, OUTPUT);\n  \n  digitalWrite(ultrasonicPin, LOW);\n  digitalWrite(ledPin, LOW);\n  \n  Serial.println(\"Dog Bark Stopper Ready\");\n  Serial.println(\"Waiting 60 seconds for PIR warm-up...\");\n  delay(60000);\n}\n\nvoid generateUltrasonicTone() {\n  \/\/ Generate square wave at ultrasonic frequency\n  for (int i = 0; i < 1000; i++) {  \/\/ Generate 1000 cycles\n    digitalWrite(ultrasonicPin, HIGH);\n    delayMicroseconds(halfPeriod);\n    digitalWrite(ultrasonicPin, LOW);\n    delayMicroseconds(halfPeriod);\n  }\n}\n\nvoid activateDeterrent() {\n  if (millis() - lastTriggerTime > cooldownPeriod) {\n    deterrentActive = true;\n    deterrentStart = millis();\n    lastTriggerTime = millis();\n    \n    digitalWrite(ledPin, HIGH);\n    Serial.println(\"Deterrent ACTIVATED\");\n    \n    \/\/ Generate ultrasonic tone for 3 seconds\n    while (millis() - deterrentStart < deterrentDuration) {\n      generateUltrasonicTone();\n    }\n    \n    digitalWrite(ledPin, LOW);\n    deterrentActive = false;\n    Serial.println(\"Deterrent deactivated\");\n  } else {\n    Serial.println(\"Cooldown active - deterrent not triggered\");\n  }\n}\n\nbool isBarking() {\n  \/\/ Read sound sensor (optional)\n  return digitalRead(soundSensorPin) == HIGH;\n}\n\nvoid loop() {\n  bool motionDetected = digitalRead(pirPin) == HIGH;\n  \n  \/\/ Optional: only trigger if barking is detected\n  \/\/ bool barking = isBarking();\n  \n  if (motionDetected) { \/\/ &#038;&#038; barking) for bark-only activation\n    Serial.println(\"Motion detected\");\n    activateDeterrent();\n  }\n  \n  delay(100);\n}\n<\/code><\/pre>\n<h2>Alternative: Tone Library Method<\/h2>\n<pre><code>\/\/ Using Arduino tone() function for simpler ultrasonic generation\n\/\/ Note: tone() works up to about 30kHz on some boards\n\nconst int ultrasonicPin = 9;\nconst int frequency = 25000;  \/\/ 25kHz\n\nvoid generateUltrasonicTone() {\n  tone(ultrasonicPin, frequency);\n  delay(3000);\n  noTone(ultrasonicPin);\n}\n<\/code><\/pre>\n<h2>Enclosure Design<\/h2>\n<ol>\n<li>Use weatherproof enclosure for outdoor installations.<\/li>\n<li>Drill holes for PIR sensor lens (must be exposed).<\/li>\n<li>Drill holes for ultrasonic transducer facing the yard area.<\/li>\n<li>Add mesh or screen over transducer to prevent debris from blocking.<\/li>\n<li>Mount at dog height (0.5-1m) for best effect.<\/li>\n<\/ol>\n<h2>Installation Steps<\/h2>\n<ol>\n<li><strong>Assemble circuit:<\/strong> Build on breadboard and test with oscilloscope to verify ultrasonic output.<\/li>\n<li><strong>Test with dog:<\/strong> If possible, test with a known dog to verify they react to the sound (look for ear perk, head tilt).<\/li>\n<li><strong>Adjust frequency:<\/strong> Different dogs may respond better to different frequencies (20-30kHz). Test and adjust.<\/li>\n<li><strong>Mount unit:<\/strong> Place where the dog frequents (barking area) at appropriate height.<\/li>\n<li><strong>Monitor behavior:<\/strong> Observe over several days to see if barking reduces.<\/li>\n<\/ol>\n<h2>Safety Considerations<\/h2>\n<ul>\n<li><strong>Humane use only:<\/strong> This device is meant to discourage excessive barking, not to punish. Use responsibly.<\/li>\n<li><strong>Not for continuous use:<\/strong> The deterrent should only activate briefly when motion is detected.<\/li>\n<li><strong>Test on yourself:<\/strong> The sound should be inaudible to humans. If you can hear it, the frequency is too low.<\/li>\n<li><strong>Not for use on puppies:<\/strong> Very young dogs may be more sensitive.<\/li>\n<li><strong>Check local regulations:<\/strong> Some areas may restrict ultrasonic devices.<\/li>\n<\/ul>\n<h2>Project Extensions<\/h2>\n<ul>\n<li><strong>Bark detection:<\/strong> Add sound sensor to only trigger when barking is actually occurring.<\/li>\n<li><strong>Wi-Fi notification:<\/strong> Add ESP32 to send notifications when the deterrent activates.<\/li>\n<li><strong>Data logging:<\/strong> Track how often the device activates to measure barking frequency.<\/li>\n<li><strong>Manual remote:<\/strong> Add Bluetooth to manually trigger from phone.<\/li>\n<li><strong>Water spray:<\/strong> Add a water sprayer for stubborn dogs (more effective but less humane).<\/li>\n<\/ul>\n<h2>Troubleshooting<\/h2>\n<ul>\n<li><strong>No ultrasonic output:<\/strong> Check transducer wiring. Use oscilloscope or piezo speaker to verify frequency.<\/li>\n<li><strong>Dog not responding:<\/strong> Try different frequencies (20-30kHz). Ensure dog can hear (older dogs may have reduced hearing).<\/li>\n<li><strong>False triggers:<\/strong> Adjust PIR sensitivity or position to avoid detecting people walking by.<\/li>\n<li><strong>Bark sensor not working:<\/strong> Adjust sound sensor threshold; may need to position closer to dog.<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>This humane bark deterrent can help reduce excessive barking without causing pain or distress. Combined with positive reinforcement training, it can be an effective tool for managing nuisance barking.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Project Overview This project creates a humane dog bark deterrent that uses ultrasonic sound to discourage excessive barking. The system activates only when motion is detected, saving battery life and preventing constant noise. When the sensor detects a dog (or person), it emits a high-frequency sound (25-30 kHz) that is unpleasant to dogs but inaudible [&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-3909","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 Dog Bark Stopper (Ultrasonic Deterrent) - 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=3909\" \/>\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 Dog Bark Stopper (Ultrasonic Deterrent) - PIRHOME\" \/>\r\n<meta property=\"og:description\" content=\"Project Overview This project creates a humane dog bark deterrent that uses ultrasonic sound to discourage excessive barking. The system activates only when motion is detected, saving battery life and preventing constant noise. When the sensor detects a dog (or person), it emits a high-frequency sound (25-30 kHz) that is unpleasant to dogs but inaudible [&hellip;]\" \/>\r\n<meta property=\"og:url\" content=\"http:\/\/www.pirhome.com\/?p=3909\" \/>\r\n<meta property=\"og:site_name\" content=\"PIRHOME\" \/>\r\n<meta property=\"article:published_time\" content=\"2026-03-31T17:30:00+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=\"4 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=3909#article\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3909\"},\"author\":{\"name\":\"nic@nicsky.com\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#\\\/schema\\\/person\\\/41049b5236f9c77c9314997d070db3e3\"},\"headline\":\"PIR Sensor Dog Bark Stopper (Ultrasonic Deterrent)\",\"datePublished\":\"2026-03-31T17:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3909\"},\"wordCount\":605,\"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=3909#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3909\",\"url\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3909\",\"name\":\"PIR Sensor Dog Bark Stopper (Ultrasonic Deterrent) - PIRHOME\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#website\"},\"datePublished\":\"2026-03-31T17:30:00+00:00\",\"breadcrumb\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3909#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\\\/\\\/www.pirhome.com\\\/?p=3909\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3909#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/www.pirhome.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PIR Sensor Dog Bark Stopper (Ultrasonic Deterrent)\"}]},{\"@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 Dog Bark Stopper (Ultrasonic Deterrent) - 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=3909","og_locale":"en_US","og_type":"article","og_title":"PIR Sensor Dog Bark Stopper (Ultrasonic Deterrent) - PIRHOME","og_description":"Project Overview This project creates a humane dog bark deterrent that uses ultrasonic sound to discourage excessive barking. The system activates only when motion is detected, saving battery life and preventing constant noise. When the sensor detects a dog (or person), it emits a high-frequency sound (25-30 kHz) that is unpleasant to dogs but inaudible [&hellip;]","og_url":"http:\/\/www.pirhome.com\/?p=3909","og_site_name":"PIRHOME","article_published_time":"2026-03-31T17:30:00+00:00","author":"nic@nicsky.com","twitter_card":"summary_large_image","twitter_misc":{"Written by":"nic@nicsky.com","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/www.pirhome.com\/?p=3909#article","isPartOf":{"@id":"http:\/\/www.pirhome.com\/?p=3909"},"author":{"name":"nic@nicsky.com","@id":"http:\/\/www.pirhome.com\/#\/schema\/person\/41049b5236f9c77c9314997d070db3e3"},"headline":"PIR Sensor Dog Bark Stopper (Ultrasonic Deterrent)","datePublished":"2026-03-31T17:30:00+00:00","mainEntityOfPage":{"@id":"http:\/\/www.pirhome.com\/?p=3909"},"wordCount":605,"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=3909#respond"]}]},{"@type":"WebPage","@id":"http:\/\/www.pirhome.com\/?p=3909","url":"http:\/\/www.pirhome.com\/?p=3909","name":"PIR Sensor Dog Bark Stopper (Ultrasonic Deterrent) - PIRHOME","isPartOf":{"@id":"http:\/\/www.pirhome.com\/#website"},"datePublished":"2026-03-31T17:30:00+00:00","breadcrumb":{"@id":"http:\/\/www.pirhome.com\/?p=3909#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/www.pirhome.com\/?p=3909"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/www.pirhome.com\/?p=3909#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/www.pirhome.com\/"},{"@type":"ListItem","position":2,"name":"PIR Sensor Dog Bark Stopper (Ultrasonic Deterrent)"}]},{"@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\/3909","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=3909"}],"version-history":[{"count":1,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3909\/revisions"}],"predecessor-version":[{"id":4069,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3909\/revisions\/4069"}],"wp:attachment":[{"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3909"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3909"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3909"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}