{"id":9356,"date":"2022-12-20T13:00:31","date_gmt":"2022-12-20T07:30:31","guid":{"rendered":"http:\/\/myprojectideas.com\/?p=9356"},"modified":"2025-10-22T11:48:53","modified_gmt":"2025-10-22T11:48:53","slug":"photoresistor-sensor-to-glow-led-using-arduino-arduino-project","status":"publish","type":"post","link":"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/","title":{"rendered":"Photoresistor Sensor To Glow LED Using Arduino | Arduino Project"},"content":{"rendered":"<h2><strong>Introduction<\/strong><\/h2>\n<p>For this Arduino project, we will use a Photoresistor Sensor to glow LED using Arduino.<\/p>\n<p><em><strong>A Photoresistor sensor changes its resistance when light shines on it, and hence it is used to detect the presence of light.<\/strong><\/em> Along with it, the Arduino code does magic.<\/p>\n<p>The objective of this Arduino project is that we will increase the intensity of the LED as the photoResistor sensor will get Light. The components can be purchased from any electronics center. To build online projects, the <a href=\"https:\/\/www.tinkercad.com\/\">TinkerCad website<\/a> can be used.<\/p>\n<iframe loading=\"lazy\"  id=\"_ytid_35180\"  width=\"1080\" height=\"607\"  data-origwidth=\"1080\" data-origheight=\"607\" src=\"https:\/\/www.youtube.com\/embed\/PjNg9gjui8E?enablejsapi=1&autoplay=0&cc_load_policy=0&cc_lang_pref=&iv_load_policy=1&loop=0&rel=1&fs=1&playsinline=0&autohide=2&theme=dark&color=red&controls=1&\" class=\"__youtube_prefs__  no-lazyload\" title=\"YouTube player\"  allow=\"fullscreen; accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen data-no-lazy=\"1\" data-skipgform_ajax_framebjll=\"\"><\/iframe>\n<p>&nbsp;<\/p>\n<h2><strong>Supplies<\/strong><\/h2>\n<p>In order to use a Photoresistor Sensor to glow LED using Arduino, we will require the following components:<\/p>\n<h3><strong>Components<\/strong><\/h3>\n<ul>\n<li><a href=\"https:\/\/www.amazon.in\/s?k=Arduino+Uno+R3&amp;crid=15ADKM8B27GTJ&amp;sprefix=resistors+1+ohm+each+%2Caps%2C1137&amp;ref=nb_sb_noss\">Arduino Uno R3<\/a><\/li>\n<li><a href=\"https:\/\/www.amazon.in\/s?k=Photoresistor+Sensor&amp;crid=IOMM4PH1M43K&amp;sprefix=arduino+uno+r3%2Caps%2C701&amp;ref=nb_sb_noss_1\">Photoresistor Sensor<\/a><\/li>\n<li>1 Small BreadBoard<\/li>\n<li>1 LED<\/li>\n<li>2 Resistors<\/li>\n<li>Connecting wires<\/li>\n<\/ul>\n<h2><strong>Circuit Diagram<\/strong><\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-18066 size-full\" src=\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2022\/12\/word-image-9356-1.webp\" alt=\"Photoresistor Sensor to glow LED using Arduino\" width=\"1517\" height=\"597\" \/><\/p>\n<h2><strong>Steps To Use Photoresistor Sensor To Glow LED Using Arduino<\/strong><\/h2>\n<p><strong>Step 1:<\/strong> Gather all the components on the Digital Board or Physical Table.<\/p>\n<p><strong>Step 2: <\/strong>Plug the LED and Photoresistor Sensor into the Breadboard.<\/p>\n<p><strong>LED:<\/strong><\/p>\n<p><strong>Step 3: <\/strong>Connect the Cathode Terminal of the LED to the resistor\u2019s one end and the second end of the resistor to the Ground(GND) pin of the Arduino at its Digital Side.<\/p>\n<p><strong>Step 4: <\/strong>Connect the Anode terminal of the LED to the 13-number pin of the Arduino on the Digital side.<\/p>\n<p><strong>PhotoResistor Sensor:<\/strong><\/p>\n<p><strong>Step 5: <\/strong>Connect One terminal of the Photoresistor sensor to the 5V pin of the Arduino at its Analog Side.<\/p>\n<p><strong>Step 6:<\/strong> Connect the Second Terminal of it to the A0 pin of the Arduino at its analog side.<\/p>\n<p><strong>Step 7:<\/strong> Connect the same second terminal of the sensor to the resistor and the resistor to the Ground.<\/p>\n<h2><strong>Source Code<\/strong><\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"cpp\">int psensorValue = 0;\r\n\r\nvoid setup()\r\n\r\n{\r\n\r\npinMode(A0, INPUT);\r\n\r\nSerial.begin(9600);\r\n\r\npinMode(13, OUTPUT);\r\n\r\n}\r\n\r\nvoid loop()\r\n\r\n{\r\n\r\npsensorValue = analogRead(A0);\r\n\r\n\r\n\r\n\r\nSerial.println(psensorValue);\r\n\r\n\r\n\r\n\r\nanalogWrite(13, map(psensorValue, 0, 1023, 0, 255));\r\n\r\ndelay(1000);\r\n\r\n}<\/pre>\n<h2><strong>Explanation of the Code<\/strong><\/h2>\n<p>1. At the beginning, we initialized one integer type of variable, namely <em><strong>psensorValue,<\/strong><\/em> to 0.<\/p>\n<p>2. After that, we used two functions, namely setup, and loop.<\/p>\n<p>3. In the setup function, we have configured pin number <em><strong>A0 for the Input purpose<\/strong><\/em> and <em><strong>13 for the Output purpose.<\/strong><\/em><\/p>\n<p>4. Also, we have set the speed of the serial connection to 9600 bits per second.<\/p>\n<p>5. Now, in the loop function, we are reading the Analog input from pin A0 and storing it in the variable declared.<\/p>\n<p>6. After that, we are printing the value to the serial monitor.<\/p>\n<p>7. Now, we are mapping the sensor value, which ranges from 0 to 1023, to the LED, which ranges from 0 to 255, to the output pin 13.<\/p>\n<p>8. Also, we are using a delay function here, which takes time in milliseconds.<\/p>\n<h2><a id=\"post-9356-_heading=h.1fob9te\"><\/a><strong>Output<\/strong><\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-18064 size-full\" src=\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2022\/12\/Picture2-3.webp\" alt=\"Photoresistor Sensor to glow LED using Arduino\" width=\"282\" height=\"239\" \/><\/p>\n<p>On changing the intensity of the light source, the intensity of the LED will also change in the same proportion.<\/p>\n<p>Here, in the output above, the <strong>intensity of the source light is high<\/strong>. Hence the intensity of <strong>LED light is also high<\/strong>.<\/p>\n<p>A similar type of thing is used in our mobile phones when we set it to <em><strong>AutoBrightness<\/strong><\/em>.<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A Photoresistor sensor changes its resistance when light shines on it, and hence it is used to detect the presence of light.<\/p>\n","protected":false},"author":1,"featured_media":9357,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[31,7],"tags":[],"class_list":["post-9356","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-arduino","category-coding-projects"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.1.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Photoresistor Sensor To Glow LED Using Arduino | Arduino Project - RUDE LABS<\/title>\n<meta name=\"description\" content=\"We will use a Photoresistor Sensor to glow LED using Arduino. A Photoresistor sensor changes its resistance when light shines on it, and hence it is used to detect the presence of light.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Photoresistor Sensor To Glow LED Using Arduino | Arduino Project - RUDE LABS\" \/>\n<meta property=\"og:description\" content=\"We will use a Photoresistor Sensor to glow LED using Arduino. A Photoresistor sensor changes its resistance when light shines on it, and hence it is used to detect the presence of light.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/\" \/>\n<meta property=\"og:site_name\" content=\"RUDE LABS\" \/>\n<meta property=\"article:published_time\" content=\"2022-12-20T07:30:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-22T11:48:53+00:00\" \/>\n<meta name=\"author\" content=\"rudelabs.ai\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rudelabs_in\" \/>\n<meta name=\"twitter:site\" content=\"@rudelabs_in\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"rudelabs.ai\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/\"},\"author\":{\"name\":\"rudelabs.ai\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894\"},\"headline\":\"Photoresistor Sensor To Glow LED Using Arduino | Arduino Project\",\"datePublished\":\"2022-12-20T07:30:31+00:00\",\"dateModified\":\"2025-10-22T11:48:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/\"},\"wordCount\":475,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#organization\"},\"image\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/#primaryimage\"},\"thumbnailUrl\":\"\",\"articleSection\":[\"Arduino\",\"Coding Projects\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/\",\"url\":\"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/\",\"name\":\"Photoresistor Sensor To Glow LED Using Arduino | Arduino Project - RUDE LABS\",\"isPartOf\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/#primaryimage\"},\"thumbnailUrl\":\"\",\"datePublished\":\"2022-12-20T07:30:31+00:00\",\"dateModified\":\"2025-10-22T11:48:53+00:00\",\"description\":\"We will use a Photoresistor Sensor to glow LED using Arduino. A Photoresistor sensor changes its resistance when light shines on it, and hence it is used to detect the presence of light.\",\"breadcrumb\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/#primaryimage\",\"url\":\"\",\"contentUrl\":\"\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/rudelabs.ai\/blogs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Photoresistor Sensor To Glow LED Using Arduino | Arduino Project\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#website\",\"url\":\"https:\/\/rudelabs.ai\/blogs\/\",\"name\":\"RUDE LABS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/rudelabs.ai\/blogs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#organization\",\"name\":\"RUDE LABS\",\"url\":\"https:\/\/rudelabs.ai\/blogs\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2025\/09\/RUDE-LABS.webp\",\"contentUrl\":\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2025\/09\/RUDE-LABS.webp\",\"width\":2459,\"height\":414,\"caption\":\"RUDE LABS\"},\"image\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/rudelabs_in\",\"https:\/\/www.linkedin.com\/company\/ru-delabs\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894\",\"name\":\"rudelabs.ai\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/4d9f672e72f97294dfb6fac3d78e9f0bb5421a701cd2141cf2a2e540b4d67191?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/4d9f672e72f97294dfb6fac3d78e9f0bb5421a701cd2141cf2a2e540b4d67191?s=96&d=mm&r=g\",\"caption\":\"rudelabs.ai\"},\"sameAs\":[\"https:\/\/rudelabs.ai\/blogs\"],\"url\":\"https:\/\/rudelabs.ai\/blogs\/author\/rudelabs-ai\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Photoresistor Sensor To Glow LED Using Arduino | Arduino Project - RUDE LABS","description":"We will use a Photoresistor Sensor to glow LED using Arduino. A Photoresistor sensor changes its resistance when light shines on it, and hence it is used to detect the presence of light.","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:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/","og_locale":"en_US","og_type":"article","og_title":"Photoresistor Sensor To Glow LED Using Arduino | Arduino Project - RUDE LABS","og_description":"We will use a Photoresistor Sensor to glow LED using Arduino. A Photoresistor sensor changes its resistance when light shines on it, and hence it is used to detect the presence of light.","og_url":"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/","og_site_name":"RUDE LABS","article_published_time":"2022-12-20T07:30:31+00:00","article_modified_time":"2025-10-22T11:48:53+00:00","author":"rudelabs.ai","twitter_card":"summary_large_image","twitter_creator":"@rudelabs_in","twitter_site":"@rudelabs_in","twitter_misc":{"Written by":"rudelabs.ai","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/#article","isPartOf":{"@id":"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/"},"author":{"name":"rudelabs.ai","@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894"},"headline":"Photoresistor Sensor To Glow LED Using Arduino | Arduino Project","datePublished":"2022-12-20T07:30:31+00:00","dateModified":"2025-10-22T11:48:53+00:00","mainEntityOfPage":{"@id":"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/"},"wordCount":475,"commentCount":0,"publisher":{"@id":"https:\/\/rudelabs.ai\/blogs\/#organization"},"image":{"@id":"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/#primaryimage"},"thumbnailUrl":"","articleSection":["Arduino","Coding Projects"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/","url":"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/","name":"Photoresistor Sensor To Glow LED Using Arduino | Arduino Project - RUDE LABS","isPartOf":{"@id":"https:\/\/rudelabs.ai\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/#primaryimage"},"image":{"@id":"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/#primaryimage"},"thumbnailUrl":"","datePublished":"2022-12-20T07:30:31+00:00","dateModified":"2025-10-22T11:48:53+00:00","description":"We will use a Photoresistor Sensor to glow LED using Arduino. A Photoresistor sensor changes its resistance when light shines on it, and hence it is used to detect the presence of light.","breadcrumb":{"@id":"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/#primaryimage","url":"","contentUrl":""},{"@type":"BreadcrumbList","@id":"https:\/\/rudelabs.ai\/blogs\/photoresistor-sensor-to-glow-led-using-arduino-arduino-project\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/rudelabs.ai\/blogs\/"},{"@type":"ListItem","position":2,"name":"Photoresistor Sensor To Glow LED Using Arduino | Arduino Project"}]},{"@type":"WebSite","@id":"https:\/\/rudelabs.ai\/blogs\/#website","url":"https:\/\/rudelabs.ai\/blogs\/","name":"RUDE LABS","description":"","publisher":{"@id":"https:\/\/rudelabs.ai\/blogs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/rudelabs.ai\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/rudelabs.ai\/blogs\/#organization","name":"RUDE LABS","url":"https:\/\/rudelabs.ai\/blogs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/logo\/image\/","url":"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2025\/09\/RUDE-LABS.webp","contentUrl":"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2025\/09\/RUDE-LABS.webp","width":2459,"height":414,"caption":"RUDE LABS"},"image":{"@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/rudelabs_in","https:\/\/www.linkedin.com\/company\/ru-delabs\/"]},{"@type":"Person","@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894","name":"rudelabs.ai","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/4d9f672e72f97294dfb6fac3d78e9f0bb5421a701cd2141cf2a2e540b4d67191?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4d9f672e72f97294dfb6fac3d78e9f0bb5421a701cd2141cf2a2e540b4d67191?s=96&d=mm&r=g","caption":"rudelabs.ai"},"sameAs":["https:\/\/rudelabs.ai\/blogs"],"url":"https:\/\/rudelabs.ai\/blogs\/author\/rudelabs-ai\/"}]}},"_links":{"self":[{"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts\/9356","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/comments?post=9356"}],"version-history":[{"count":2,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts\/9356\/revisions"}],"predecessor-version":[{"id":18067,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts\/9356\/revisions\/18067"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/"}],"wp:attachment":[{"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/media?parent=9356"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/categories?post=9356"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/tags?post=9356"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}