{"id":2891,"date":"2018-07-11T17:52:55","date_gmt":"2018-07-11T17:52:55","guid":{"rendered":"https:\/\/paksc.org\/pk\/?p=2891"},"modified":"2018-07-12T12:06:14","modified_gmt":"2018-07-12T12:06:14","slug":"smartphone-controlled-winding-machine","status":"publish","type":"post","link":"https:\/\/paksc.org\/pk\/electronics\/smartphone-controlled-winding-machine\/","title":{"rendered":"Smartphone Controlled Winding Machine | Arduino Project"},"content":{"rendered":"<p>Sometime when I need some wire so I took a full thread spool but I am done with my work it is difficult to rewind all that again. So today I though to make a winding machine. First I build a thread winding Machine. Then I programmed it to be controlled via Bluetooth. So I just used an old app for controlling because I didn\u2019t have time to program.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-2896\" src=\"https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/Untitled-1-wpcf_622x350-1.jpg\" alt=\"\" width=\"622\" height=\"350\" srcset=\"https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/Untitled-1-wpcf_622x350-1.jpg 622w, https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/Untitled-1-wpcf_622x350-1-300x169.jpg 300w, https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/Untitled-1-wpcf_622x350-1-170x96.jpg 170w, https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/Untitled-1-wpcf_622x350-1-370x208.jpg 370w, https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/Untitled-1-wpcf_622x350-1-620x350.jpg 620w, https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/Untitled-1-wpcf_622x350-1-400x225.jpg 400w\" sizes=\"auto, (max-width: 622px) 100vw, 622px\" \/><\/p>\n<h2>Required Components:<\/h2>\n<ul>\n<li>Screw Driver<\/li>\n<li>Nose Player<\/li>\n<li>Solution<\/li>\n<li>Ball Point<\/li>\n<li>Dc Motor<\/li>\n<li>Glue Stick<\/li>\n<li>Copper Wire<\/li>\n<li>Rubber Bands<\/li>\n<li>Arduino Board<\/li>\n<li>Motor Driver<\/li>\n<li>Bread Board<\/li>\n<li>Old Cds<\/li>\n<li>Taps<\/li>\n<li>Bluetooth Module<\/li>\n<li>Jumper Wire<\/li>\n<li>2x Paper Sheet<\/li>\n<li>Blade<\/li>\n<li>3x Wooden Rulers<\/li>\n<li>Andriod App (Link Is Given At End)<\/li>\n<\/ul>\n<figure id=\"attachment_2897\" aria-describedby=\"caption-attachment-2897\" style=\"width: 800px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2897\" src=\"https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/winding-machine-requirement-wpcf_800x500.jpg\" alt=\"\" width=\"800\" height=\"500\" srcset=\"https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/winding-machine-requirement-wpcf_800x500.jpg 800w, https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/winding-machine-requirement-wpcf_800x500-300x188.jpg 300w, https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/winding-machine-requirement-wpcf_800x500-768x480.jpg 768w, https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/winding-machine-requirement-wpcf_800x500-170x106.jpg 170w, https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/winding-machine-requirement-wpcf_800x500-370x231.jpg 370w, https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/winding-machine-requirement-wpcf_800x500-780x488.jpg 780w, https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/winding-machine-requirement-wpcf_800x500-400x250.jpg 400w\" sizes=\"auto, (max-width: 800px) 100vw, 800px\" \/><figcaption id=\"caption-attachment-2897\" class=\"wp-caption-text\">Requirements of projects.<\/figcaption><\/figure>\n<h2>Procedure:<\/h2>\n<ul>\n<li>First mark 2 of the wooden rulers at 6.5 inches and 11.5 inches. And the the reaming at 7 cm and 14 cm.<\/li>\n<li>Then cut the ruler according to marks. So it become 2X 6.5 inches 2X 4 inches And 2X 7 cm.<\/li>\n<li>Then join 6.5 and 4 inches with help of glue stick and make a rectangle from it.<\/li>\n<li>After that take the 7c and from one side on 6.5 inches at 1.5 inches glue it mean here will be the stand. (First make for one side)<\/li>\n<li>Then take a gluestick and roll it in both sheet of paper. After that use some tape on it so it will become completely round.<\/li>\n<li>Then take the copper wire and make a ring from it according to spindle. And Glue it on the top of 7 cm.<\/li>\n<li>Then Insert the spindle along with CDs.<\/li>\n<li>After that glue the 7 cm remaining on another side.<\/li>\n<li>Attach the Dc Motor at the other side on 6.5\u00a0 Inches. Then Make circuit according to given pic below.<\/li>\n<li>Upload the code from below to your Board. ( Don\u2019t Forget to remove the Tx &amp; Rx Pins while uploading)<\/li>\n<li>Connect Your Phone And Enjoy\u2026.<\/li>\n<li>Note Default Password For Hc 05 is 1234 Or 0000.<\/li>\n<\/ul>\n<h2>Code:<\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"cpp\">\/\/This program is used to control a Dc Motor using a app that communicates with Arduino through a bluetooth module.\r\n\/\/Error Code Chart: Code 01; Turnradius is higher than Speed; Code 02; Speed is higher than 255;\r\n#define in1 8 \/\/L298n Motor Driver pins.\r\n#define in2 9\r\nint command; \/\/Int to store app command state.\r\nint Speed = 204; \/\/ 0 - 255.\r\nint Speedsec;\r\nint Turnradius = 0; \/\/Set the radius of a turn, 0 - 255 Note:the robot will malfunction if this is higher than int Speed.\r\nvoid setup() {\r\n  pinMode(in1, OUTPUT);\r\n  pinMode(in2, OUTPUT);\r\n  Serial.begin(9600);  \/\/Set the baud rate to your Bluetooth module.\r\n}\r\n\r\nvoid loop() {\r\n  if (Serial.available() &gt; 0) {\r\n    command = Serial.read();\r\n    Stop(); \/\/Initialize with motors stoped.\r\n    switch (command) {\r\n      case 'F':\r\n        forward();\r\n        break;\r\n      case 'B':\r\n        back();\r\n        break;\r\n       case '0':\r\n        Speed = 100;\r\n        break;\r\n      case '1':\r\n        Speed = 140;\r\n        break;\r\n      case '2':\r\n        Speed = 153;\r\n        break;\r\n      case '3':\r\n        Speed = 165;\r\n        break;\r\n      case '4':\r\n        Speed = 178;\r\n        break;\r\n      case '5':\r\n        Speed = 191;\r\n        break;\r\n      case '6':\r\n        Speed = 204;\r\n        break;\r\n      case '7':\r\n        Speed = 216;\r\n        break;\r\n      case '8':\r\n        Speed = 229;\r\n        break;\r\n      case '9':\r\n        Speed = 242;\r\n        break;\r\n      case 'q':\r\n        Speed = 255;\r\n        break;\r\n    }\r\n    Speedsec = Turnradius;\r\n    \r\n  }\r\n}\r\n\r\nvoid forward() {\r\n  analogWrite(in1, Speed);\r\n  \r\n}\r\n\r\nvoid back() {\r\n  analogWrite(in2, Speed);\r\n  \r\n}\r\n\r\nvoid Stop() {\r\n  analogWrite(in1, 0);\r\n  analogWrite(in2, 0);\r\n}<\/pre>\n<h2>Circuit:<\/h2>\n<figure id=\"attachment_2898\" aria-describedby=\"caption-attachment-2898\" style=\"width: 400px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2898\" src=\"https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/winding-machine-circuit-wpcf_400x250.jpg\" alt=\"\" width=\"400\" height=\"250\" srcset=\"https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/winding-machine-circuit-wpcf_400x250.jpg 400w, https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/winding-machine-circuit-wpcf_400x250-300x188.jpg 300w, https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/winding-machine-circuit-wpcf_400x250-170x106.jpg 170w, https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/winding-machine-circuit-wpcf_400x250-370x231.jpg 370w\" sizes=\"auto, (max-width: 400px) 100vw, 400px\" \/><figcaption id=\"caption-attachment-2898\" class=\"wp-caption-text\">Circuit Information.<\/figcaption><\/figure>\n<h2>External Links:<\/h2>\n<p>Andriod App:\u00a0 \u00a0<a href=\"https:\/\/play.google.com\/store\/apps\/details?id=braulio.calle.bluetoothRCcontroller\" target=\"_blank\" rel=\"noopener nofollow external noreferrer\" data-wpel-link=\"external\">For App Click Here Google Play Link.<\/a><\/p>\n<h2>Video:<\/h2>\n<p>For Any Problem Comment Below..<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Sometime when I need some wire so I took a full thread spool but I am done with my work it is difficult to rewind all that again. So today I though to make a winding machine. First I build a thread winding Machine. Then I programmed it to be controlled via Bluetooth. So I&#8230;<\/p>\n","protected":false},"author":3,"featured_media":2896,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"categories":[40,2],"tags":[],"class_list":["post-2891","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-computer-science","category-electronics"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Smartphone Controlled Winding Machine | Arduino Project -<\/title>\n<meta name=\"description\" content=\"Smartphone Controlled Winding Machine | Arduino Project Smartphone Controlled Winding Machine | Arduino Project\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/paksc.org\/pk\/electronics\/smartphone-controlled-winding-machine\/\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Smartphone Controlled Winding Machine | Arduino Project -\" \/>\n<meta name=\"twitter:description\" content=\"Smartphone Controlled Winding Machine | Arduino Project Smartphone Controlled Winding Machine | Arduino Project\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/Untitled-1-wpcf_622x350-1.jpg\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Fahad Fahad\" \/>\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:\\\/\\\/paksc.org\\\/pk\\\/electronics\\\/smartphone-controlled-winding-machine\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/paksc.org\\\/pk\\\/electronics\\\/smartphone-controlled-winding-machine\\\/\"},\"author\":{\"name\":\"Fahad Fahad\",\"@id\":\"https:\\\/\\\/paksc.org\\\/pk\\\/#\\\/schema\\\/person\\\/3134386dd0e7926f00ba732997267db3\"},\"headline\":\"Smartphone Controlled Winding Machine | Arduino Project\",\"datePublished\":\"2018-07-11T17:52:55+00:00\",\"dateModified\":\"2018-07-12T12:06:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/paksc.org\\\/pk\\\/electronics\\\/smartphone-controlled-winding-machine\\\/\"},\"wordCount\":348,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/paksc.org\\\/pk\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/paksc.org\\\/pk\\\/electronics\\\/smartphone-controlled-winding-machine\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/paksc.org\\\/pk\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/Untitled-1-wpcf_622x350-1.jpg\",\"articleSection\":[\"Computer Science\",\"Electronics Projects\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/paksc.org\\\/pk\\\/electronics\\\/smartphone-controlled-winding-machine\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/paksc.org\\\/pk\\\/electronics\\\/smartphone-controlled-winding-machine\\\/\",\"url\":\"https:\\\/\\\/paksc.org\\\/pk\\\/electronics\\\/smartphone-controlled-winding-machine\\\/\",\"name\":\"Smartphone Controlled Winding Machine | Arduino Project -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/paksc.org\\\/pk\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/paksc.org\\\/pk\\\/electronics\\\/smartphone-controlled-winding-machine\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/paksc.org\\\/pk\\\/electronics\\\/smartphone-controlled-winding-machine\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/paksc.org\\\/pk\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/Untitled-1-wpcf_622x350-1.jpg\",\"datePublished\":\"2018-07-11T17:52:55+00:00\",\"dateModified\":\"2018-07-12T12:06:14+00:00\",\"description\":\"Smartphone Controlled Winding Machine | Arduino Project Smartphone Controlled Winding Machine | Arduino Project\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/paksc.org\\\/pk\\\/electronics\\\/smartphone-controlled-winding-machine\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/paksc.org\\\/pk\\\/electronics\\\/smartphone-controlled-winding-machine\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/paksc.org\\\/pk\\\/electronics\\\/smartphone-controlled-winding-machine\\\/#primaryimage\",\"url\":\"https:\\\/\\\/paksc.org\\\/pk\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/Untitled-1-wpcf_622x350-1.jpg\",\"contentUrl\":\"https:\\\/\\\/paksc.org\\\/pk\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/Untitled-1-wpcf_622x350-1.jpg\",\"width\":622,\"height\":350},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/paksc.org\\\/pk\\\/electronics\\\/smartphone-controlled-winding-machine\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/paksc.org\\\/pk\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Smartphone Controlled Winding Machine | Arduino Project\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/paksc.org\\\/pk\\\/#website\",\"url\":\"https:\\\/\\\/paksc.org\\\/pk\\\/\",\"name\":\"PSC Do Science\",\"description\":\"STEAM Resources, Science Experiments and Projects by PSC\",\"publisher\":{\"@id\":\"https:\\\/\\\/paksc.org\\\/pk\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/paksc.org\\\/pk\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/paksc.org\\\/pk\\\/#organization\",\"name\":\"Pak Science Club\",\"url\":\"https:\\\/\\\/paksc.org\\\/pk\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/paksc.org\\\/pk\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/paksc.org\\\/pk\\\/wp-content\\\/uploads\\\/2016\\\/10\\\/Do-science-logo.png?fit=408%2C136&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/paksc.org\\\/pk\\\/wp-content\\\/uploads\\\/2016\\\/10\\\/Do-science-logo.png?fit=408%2C136&ssl=1\",\"width\":408,\"height\":136,\"caption\":\"Pak Science Club\"},\"image\":{\"@id\":\"https:\\\/\\\/paksc.org\\\/pk\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/paksc.org\\\/pk\\\/#\\\/schema\\\/person\\\/3134386dd0e7926f00ba732997267db3\",\"name\":\"Fahad Fahad\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Smartphone Controlled Winding Machine | Arduino Project -","description":"Smartphone Controlled Winding Machine | Arduino Project Smartphone Controlled Winding Machine | Arduino Project","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:\/\/paksc.org\/pk\/electronics\/smartphone-controlled-winding-machine\/","twitter_card":"summary_large_image","twitter_title":"Smartphone Controlled Winding Machine | Arduino Project -","twitter_description":"Smartphone Controlled Winding Machine | Arduino Project Smartphone Controlled Winding Machine | Arduino Project","twitter_image":"https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/Untitled-1-wpcf_622x350-1.jpg","twitter_misc":{"Written by":"Fahad Fahad","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/paksc.org\/pk\/electronics\/smartphone-controlled-winding-machine\/#article","isPartOf":{"@id":"https:\/\/paksc.org\/pk\/electronics\/smartphone-controlled-winding-machine\/"},"author":{"name":"Fahad Fahad","@id":"https:\/\/paksc.org\/pk\/#\/schema\/person\/3134386dd0e7926f00ba732997267db3"},"headline":"Smartphone Controlled Winding Machine | Arduino Project","datePublished":"2018-07-11T17:52:55+00:00","dateModified":"2018-07-12T12:06:14+00:00","mainEntityOfPage":{"@id":"https:\/\/paksc.org\/pk\/electronics\/smartphone-controlled-winding-machine\/"},"wordCount":348,"commentCount":1,"publisher":{"@id":"https:\/\/paksc.org\/pk\/#organization"},"image":{"@id":"https:\/\/paksc.org\/pk\/electronics\/smartphone-controlled-winding-machine\/#primaryimage"},"thumbnailUrl":"https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/Untitled-1-wpcf_622x350-1.jpg","articleSection":["Computer Science","Electronics Projects"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/paksc.org\/pk\/electronics\/smartphone-controlled-winding-machine\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/paksc.org\/pk\/electronics\/smartphone-controlled-winding-machine\/","url":"https:\/\/paksc.org\/pk\/electronics\/smartphone-controlled-winding-machine\/","name":"Smartphone Controlled Winding Machine | Arduino Project -","isPartOf":{"@id":"https:\/\/paksc.org\/pk\/#website"},"primaryImageOfPage":{"@id":"https:\/\/paksc.org\/pk\/electronics\/smartphone-controlled-winding-machine\/#primaryimage"},"image":{"@id":"https:\/\/paksc.org\/pk\/electronics\/smartphone-controlled-winding-machine\/#primaryimage"},"thumbnailUrl":"https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/Untitled-1-wpcf_622x350-1.jpg","datePublished":"2018-07-11T17:52:55+00:00","dateModified":"2018-07-12T12:06:14+00:00","description":"Smartphone Controlled Winding Machine | Arduino Project Smartphone Controlled Winding Machine | Arduino Project","breadcrumb":{"@id":"https:\/\/paksc.org\/pk\/electronics\/smartphone-controlled-winding-machine\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/paksc.org\/pk\/electronics\/smartphone-controlled-winding-machine\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/paksc.org\/pk\/electronics\/smartphone-controlled-winding-machine\/#primaryimage","url":"https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/Untitled-1-wpcf_622x350-1.jpg","contentUrl":"https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/Untitled-1-wpcf_622x350-1.jpg","width":622,"height":350},{"@type":"BreadcrumbList","@id":"https:\/\/paksc.org\/pk\/electronics\/smartphone-controlled-winding-machine\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/paksc.org\/pk\/"},{"@type":"ListItem","position":2,"name":"Smartphone Controlled Winding Machine | Arduino Project"}]},{"@type":"WebSite","@id":"https:\/\/paksc.org\/pk\/#website","url":"https:\/\/paksc.org\/pk\/","name":"PSC Do Science","description":"STEAM Resources, Science Experiments and Projects by PSC","publisher":{"@id":"https:\/\/paksc.org\/pk\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/paksc.org\/pk\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/paksc.org\/pk\/#organization","name":"Pak Science Club","url":"https:\/\/paksc.org\/pk\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/paksc.org\/pk\/#\/schema\/logo\/image\/","url":"https:\/\/i0.wp.com\/paksc.org\/pk\/wp-content\/uploads\/2016\/10\/Do-science-logo.png?fit=408%2C136&ssl=1","contentUrl":"https:\/\/i0.wp.com\/paksc.org\/pk\/wp-content\/uploads\/2016\/10\/Do-science-logo.png?fit=408%2C136&ssl=1","width":408,"height":136,"caption":"Pak Science Club"},"image":{"@id":"https:\/\/paksc.org\/pk\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/paksc.org\/pk\/#\/schema\/person\/3134386dd0e7926f00ba732997267db3","name":"Fahad Fahad"}]}},"jetpack_featured_media_url":"https:\/\/paksc.org\/pk\/wp-content\/uploads\/2018\/07\/Untitled-1-wpcf_622x350-1.jpg","_links":{"self":[{"href":"https:\/\/paksc.org\/pk\/wp-json\/wp\/v2\/posts\/2891","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/paksc.org\/pk\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/paksc.org\/pk\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/paksc.org\/pk\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/paksc.org\/pk\/wp-json\/wp\/v2\/comments?post=2891"}],"version-history":[{"count":0,"href":"https:\/\/paksc.org\/pk\/wp-json\/wp\/v2\/posts\/2891\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/paksc.org\/pk\/wp-json\/wp\/v2\/media\/2896"}],"wp:attachment":[{"href":"https:\/\/paksc.org\/pk\/wp-json\/wp\/v2\/media?parent=2891"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/paksc.org\/pk\/wp-json\/wp\/v2\/categories?post=2891"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/paksc.org\/pk\/wp-json\/wp\/v2\/tags?post=2891"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}