{"id":256,"date":"2026-05-06T10:26:51","date_gmt":"2026-05-06T10:26:51","guid":{"rendered":"https:\/\/aadhuniklabs.com\/casp-blog\/?p=256"},"modified":"2026-05-07T10:22:54","modified_gmt":"2026-05-07T10:22:54","slug":"casp-led-blink-with-python","status":"publish","type":"post","link":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-led-blink-with-python\/","title":{"rendered":"Test Example-5: LED Blink with Python"},"content":{"rendered":"\n<p class=\"\">CASP supports building and running CASP models with Python scripts on any CASP supported target. This feature allows developing models programmatically in Python and deploying them on the target with highly efficient and production ready code. This example project shows a simple Python script to blink an on-board LED of the target micro-controller board.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Pre-Requisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"\">Target Board (see below section for list of supported boards in the example Python code)<\/li>\n\n\n\n<li class=\"\">CASP software is properly installed and functional.<\/li>\n\n\n\n<li class=\"\">CASP Python libraries are installed.<\/li>\n\n\n\n<li class=\"\">Target BSPs are installed.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Model Details<\/h2>\n\n\n\n<p class=\"\">The Python code implements the logic similar to this <a href=\"https:\/\/aadhuniklabs.com\/casp-blog\/test-example-4-led-blink-on-arduino-uno-with-casp\/\" target=\"_blank\" rel=\"noreferrer noopener\">example<\/a>. It supports multiple target boards such as Arduino Uno R3\/R4,\/R4 WiFi, Raspberry Pi Pico, Raspberry Pi PicoW, Raspberry Pi Pico2, Raspberry Pi Pico2W, Vega Aries-V2, Vega Aries-V3, Vega Aries Eco.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Procedure<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"\">Ensure the micro-controller board is connected to the computer through USB serial.<\/li>\n\n\n\n<li class=\"\">Start CASP and open the project from &#8216;examples\/test_examples&#8217; directory. It is also available for download at this <a href=\"https:\/\/aadhuniklabs.com\/casp\/casp_web_examples\/test_examples\/test05_led_blink_python\/test05_led_blink_python.zip\">link<\/a>.<\/li>\n\n\n\n<li class=\"\">Before running the Python script file, serial port to which to board is connected has to be known. CASP provides a Python command to list out serial ports. Open  terminal and type &#8216;python&#8217; to launch Python interpreter. Type following commands to know available serial ports.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>import casp\ncasp.Init()\ncasp.SerialPorts()\nexit()<\/code><\/pre>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" width=\"883\" height=\"317\" loading=\"lazy\" src=\"https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/image002.jpg?fit=883%2C317&amp;ssl=1\" alt=\"\" class=\"wp-image-270\" srcset=\"https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/image002.jpg?w=883&amp;ssl=1 883w, https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/image002.jpg?resize=300%2C108&amp;ssl=1 300w, https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/image002.jpg?resize=768%2C276&amp;ssl=1 768w\" sizes=\"auto, (max-width: 883px) 100vw, 883px\" \/><\/figure>\n<\/div>\n\n\n<p class=\"\">In the above image the target board is connected to COM35.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"\">Now, close the existing terminal and open a new terminal in the folder where the python script file is located.<\/li>\n\n\n\n<li class=\"\">Type python (or python3) followed by the &lt;python file name&gt; and &lt;arguments&gt;<\/li>\n\n\n\n<li class=\"\">Arguments list:\n<ul class=\"wp-block-list\">\n<li class=\"\">target board name (choose one of these board names): <em>uno3, uno4, uno4w, pico, picow, pico2, pico2w, aries2, aries3, arieseco<\/em><\/li>\n\n\n\n<li class=\"\">serial port to which the board is connected: eg. COM3, ttyUSB0 etc.<\/li>\n\n\n\n<li class=\"\">variable blink frequency: True or False<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li class=\"\">Example:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>&gt; python led_blink_arduino_pico_aries.py uno3 COM3 False #programs Arduino Uno R3 board connected to COM3 (Windows PC) with a constant frequency LED blink model\n\nOR\n\n&gt; python led_blink_arduino_pico_aries.py pico COM4 True #programs Raspberry Pi Pico board connected to COM4 (of Windows PC) with a variable frequency (based on ADC value) LED blink model\n\nOR\n\n&gt; python led_blink_arduino_pico_aries.py arieseco COM5 True #programs Vega Aries Eco board connected to COM5 (of Windows computer) with a variable frequency (based on ADC value) LED blink model<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"\">The above command creates the blink model as per the script and programs the target board. Below is the screen short of the above command. Please go through the script file to know how the model is created.<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img decoding=\"async\" width=\"1115\" height=\"750\" loading=\"lazy\" src=\"https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/image006-2.jpg?fit=1024%2C689&amp;ssl=1\" alt=\"\" class=\"wp-image-274\" srcset=\"https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/image006-2.jpg?w=1115&amp;ssl=1 1115w, https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/image006-2.jpg?resize=300%2C202&amp;ssl=1 300w, https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/image006-2.jpg?resize=1024%2C689&amp;ssl=1 1024w, https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/image006-2.jpg?resize=768%2C517&amp;ssl=1 768w, https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/image006-2.jpg?resize=272%2C182&amp;ssl=1 272w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><\/figure>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\">Related Links<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"\"><a href=\"https:\/\/aadhuniklabs.com\/casp-blog\/installing-casp\/\" target=\"_blank\" rel=\"noreferrer noopener\">Installing CASP<\/a><\/li>\n\n\n\n<li class=\"\"><a href=\"https:\/\/aadhuniklabs.com\/casp-blog\/updating-casp\/\" target=\"_blank\" rel=\"noreferrer noopener\">Updating CASP<\/a><\/li>\n<\/ul>\n\n\n\n<p class=\"\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>CASP supports building and running CASP models with Python scripts on any CASP supported target. This feature allows developing models programmatically in Python and deploying them on the target with&hellip;<\/p>\n","protected":false},"author":1,"featured_media":555,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"nf_dc_page":"","_view_id":"","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[26,58],"tags":[53,38,59,47,39,40],"post_folder":[19],"class_list":["post-256","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-getting-started","category-test-examples","tag-adc","tag-arduino","tag-getting-started","tag-python","tag-raspberry-pi-pico","tag-vega-aries"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Test Example-5: LED Blink with Python<\/title>\n<meta name=\"description\" content=\"CASP supports building and running CASP models with Python scripts. This project shows a simple Python script to blink an LED on target board.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/aadhuniklabs.com\/casp-blog\/casp-led-blink-with-python\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Test Example-5: LED Blink with Python\" \/>\n<meta property=\"og:description\" content=\"CASP supports building and running CASP models with Python scripts. This project shows a simple Python script to blink an LED on target board.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/aadhuniklabs.com\/casp-blog\/casp-led-blink-with-python\/\" \/>\n<meta property=\"og:site_name\" content=\"CASP Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-06T10:26:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-07T10:22:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/test05.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1194\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"AadhunikLabs\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"AadhunikLabs\" \/>\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:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-led-blink-with-python\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-led-blink-with-python\\\/\"},\"author\":{\"name\":\"AadhunikLabs\",\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/#\\\/schema\\\/person\\\/4b27a4300337e4cc03b790befda00fe7\"},\"headline\":\"Test Example-5: LED Blink with Python\",\"datePublished\":\"2026-05-06T10:26:51+00:00\",\"dateModified\":\"2026-05-07T10:22:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-led-blink-with-python\\\/\"},\"wordCount\":348,\"image\":{\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-led-blink-with-python\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/aadhuniklabs.com\\\/casp-blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/test05.jpg?fit=1194%2C680&ssl=1\",\"keywords\":[\"ADC\",\"Arduino\",\"Getting Started\",\"Python\",\"Raspberry Pi Pico\",\"Vega Aries\"],\"articleSection\":[\"Getting Started\",\"Test Examples\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-led-blink-with-python\\\/\",\"url\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-led-blink-with-python\\\/\",\"name\":\"Test Example-5: LED Blink with Python\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-led-blink-with-python\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-led-blink-with-python\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/aadhuniklabs.com\\\/casp-blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/test05.jpg?fit=1194%2C680&ssl=1\",\"datePublished\":\"2026-05-06T10:26:51+00:00\",\"dateModified\":\"2026-05-07T10:22:54+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/#\\\/schema\\\/person\\\/4b27a4300337e4cc03b790befda00fe7\"},\"description\":\"CASP supports building and running CASP models with Python scripts. This project shows a simple Python script to blink an LED on target board.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-led-blink-with-python\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-led-blink-with-python\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-led-blink-with-python\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/aadhuniklabs.com\\\/casp-blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/test05.jpg?fit=1194%2C680&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/aadhuniklabs.com\\\/casp-blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/test05.jpg?fit=1194%2C680&ssl=1\",\"width\":1194,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-led-blink-with-python\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Test Example-5: LED Blink with Python\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/#website\",\"url\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/\",\"name\":\"CASP Blog\",\"description\":\"Let&#039;s make for fun\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/#\\\/schema\\\/person\\\/4b27a4300337e4cc03b790befda00fe7\",\"name\":\"AadhunikLabs\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b348f13bedc8e57284f8f80aa91d9d3d76f31f93a663f5f5dd7cf3fdeb9a321c?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b348f13bedc8e57284f8f80aa91d9d3d76f31f93a663f5f5dd7cf3fdeb9a321c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b348f13bedc8e57284f8f80aa91d9d3d76f31f93a663f5f5dd7cf3fdeb9a321c?s=96&d=mm&r=g\",\"caption\":\"AadhunikLabs\"},\"sameAs\":[\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\"],\"url\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Test Example-5: LED Blink with Python","description":"CASP supports building and running CASP models with Python scripts. This project shows a simple Python script to blink an LED on target board.","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:\/\/aadhuniklabs.com\/casp-blog\/casp-led-blink-with-python\/","og_locale":"en_US","og_type":"article","og_title":"Test Example-5: LED Blink with Python","og_description":"CASP supports building and running CASP models with Python scripts. This project shows a simple Python script to blink an LED on target board.","og_url":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-led-blink-with-python\/","og_site_name":"CASP Blog","article_published_time":"2026-05-06T10:26:51+00:00","article_modified_time":"2026-05-07T10:22:54+00:00","og_image":[{"width":1194,"height":680,"url":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/test05.jpg","type":"image\/jpeg"}],"author":"AadhunikLabs","twitter_card":"summary_large_image","twitter_misc":{"Written by":"AadhunikLabs","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-led-blink-with-python\/#article","isPartOf":{"@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-led-blink-with-python\/"},"author":{"name":"AadhunikLabs","@id":"https:\/\/aadhuniklabs.com\/casp-blog\/#\/schema\/person\/4b27a4300337e4cc03b790befda00fe7"},"headline":"Test Example-5: LED Blink with Python","datePublished":"2026-05-06T10:26:51+00:00","dateModified":"2026-05-07T10:22:54+00:00","mainEntityOfPage":{"@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-led-blink-with-python\/"},"wordCount":348,"image":{"@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-led-blink-with-python\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/test05.jpg?fit=1194%2C680&ssl=1","keywords":["ADC","Arduino","Getting Started","Python","Raspberry Pi Pico","Vega Aries"],"articleSection":["Getting Started","Test Examples"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-led-blink-with-python\/","url":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-led-blink-with-python\/","name":"Test Example-5: LED Blink with Python","isPartOf":{"@id":"https:\/\/aadhuniklabs.com\/casp-blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-led-blink-with-python\/#primaryimage"},"image":{"@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-led-blink-with-python\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/test05.jpg?fit=1194%2C680&ssl=1","datePublished":"2026-05-06T10:26:51+00:00","dateModified":"2026-05-07T10:22:54+00:00","author":{"@id":"https:\/\/aadhuniklabs.com\/casp-blog\/#\/schema\/person\/4b27a4300337e4cc03b790befda00fe7"},"description":"CASP supports building and running CASP models with Python scripts. This project shows a simple Python script to blink an LED on target board.","breadcrumb":{"@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-led-blink-with-python\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/aadhuniklabs.com\/casp-blog\/casp-led-blink-with-python\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-led-blink-with-python\/#primaryimage","url":"https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/test05.jpg?fit=1194%2C680&ssl=1","contentUrl":"https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/test05.jpg?fit=1194%2C680&ssl=1","width":1194,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-led-blink-with-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/aadhuniklabs.com\/casp-blog\/"},{"@type":"ListItem","position":2,"name":"Test Example-5: LED Blink with Python"}]},{"@type":"WebSite","@id":"https:\/\/aadhuniklabs.com\/casp-blog\/#website","url":"https:\/\/aadhuniklabs.com\/casp-blog\/","name":"CASP Blog","description":"Let&#039;s make for fun","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/aadhuniklabs.com\/casp-blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/aadhuniklabs.com\/casp-blog\/#\/schema\/person\/4b27a4300337e4cc03b790befda00fe7","name":"AadhunikLabs","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b348f13bedc8e57284f8f80aa91d9d3d76f31f93a663f5f5dd7cf3fdeb9a321c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b348f13bedc8e57284f8f80aa91d9d3d76f31f93a663f5f5dd7cf3fdeb9a321c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b348f13bedc8e57284f8f80aa91d9d3d76f31f93a663f5f5dd7cf3fdeb9a321c?s=96&d=mm&r=g","caption":"AadhunikLabs"},"sameAs":["https:\/\/aadhuniklabs.com\/casp-blog"],"url":"https:\/\/aadhuniklabs.com\/casp-blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/test05.jpg?fit=1194%2C680&ssl=1","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/posts\/256","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/comments?post=256"}],"version-history":[{"count":18,"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/posts\/256\/revisions"}],"predecessor-version":[{"id":616,"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/posts\/256\/revisions\/616"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/media\/555"}],"wp:attachment":[{"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/media?parent=256"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/categories?post=256"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/tags?post=256"},{"taxonomy":"post_folder","embeddable":true,"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/post_folder?post=256"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}