<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Kit4Curious®</title>
	<atom:link href="https://kit4curious.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://kit4curious.com</link>
	<description>Educational Learning Kits</description>
	<lastBuildDate>Fri, 03 Jan 2025 05:38:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
	<item>
		<title>How to control Servo robotic arm using potentiometers</title>
		<link>https://kit4curious.com/2018/04/02/how-to-control-servo-robotic-arm-using-potentiometers/</link>
					<comments>https://kit4curious.com/2018/04/02/how-to-control-servo-robotic-arm-using-potentiometers/#respond</comments>
		
		<dc:creator><![CDATA[kit4curious_admin]]></dc:creator>
		<pubDate>Mon, 02 Apr 2018 13:12:52 +0000</pubDate>
				<category><![CDATA[Robotics]]></category>
		<guid isPermaLink="false">https://kit4curious.com/?p=2920</guid>

					<description><![CDATA[How to control 4 servo of Servo robotic arm using 4 potentiometer (Variable resistors) Use 4 potentiometers (variable resistors) to control your robotic arm by varying the position of potentiometer knob. What do you need? Servo robotic arm 4 Potentiometers (2k var) Breadboard Arduino UNO Jumper wires Power unit for&#8230; ]]></description>
										<content:encoded><![CDATA[<h2>How to control 4 servo of Servo robotic arm using 4 potentiometer (Variable resistors)</h2>
<p>Use 4 potentiometers (variable resistors) to control your robotic arm by varying the position of potentiometer knob.</p>
<h2>What do you need?</h2>
<ul>
<li>Servo robotic arm</li>
<li>4 Potentiometers (2k var)</li>
<li>Breadboard</li>
<li>Arduino UNO</li>
<li>Jumper wires</li>
<li>Power unit for Arduino</li>
</ul>
<h2>STEP 1: ARDUINO CODE</h2>
<p>Upload the code to your arduino.</p>
<blockquote><p>// Controlling 4 servo motors using 4 separate potentiometers (variable resistor)<br />
// by Servo Robotic Arm &lt;<a href="http://www.servoroboticarm.wordpress.com%26gt/" rel="nofollow">http://www.ServoRoboticArm.wordpress.com&amp;gt</a>;</p>
<p>#include &lt;Servo.h&gt;</p>
<p>Servo myservo; // create servo object to control a servo<br />
Servo ser1;<br />
Servo ser2;<br />
Servo ser3;</p>
<p>int con1 = 0; // analog pin used to connect the potentiometer<br />
int con2 = 1;<br />
int con3 = 2;<br />
int con4 = 3;<br />
int val; // variable to read the value from the analog pin<br />
int val1;<br />
int val2;<br />
int val3;</p>
<p>void setup()<br />
{<br />
myservo.attach(7); // attaches the servo on pin 9 to the servo object<br />
ser1.attach(6);<br />
ser2.attach(5);<br />
ser3.attach(4);<br />
}</p>
<p>void loop()<br />
{<br />
val = analogRead(con1); // reads the value of the potentiometer (value between 0 and 1023)<br />
val = map(val, 0, 1023, 0, 179); // scale it to use it with the servo (value between 0 and 180)<br />
val1 = analogRead(con2);<br />
val1 = map(val1, 0, 1023, 0, 179);<br />
val2 = analogRead(con3);<br />
val2 = map(val2, 0, 1023, 0, 179);\<br />
val3 = analogRead(con4);<br />
val3 = map(val3, 0, 1023, 0, 179);</p>
<p>myservo.write(val); // sets the servo position according to the scaled value<br />
ser1.write(val1);<br />
ser2.write(val2);<br />
ser3.write(val3);<br />
delay(15); // waits for the servo to get there<br />
}</p></blockquote>
<h2>STEP 2: CONNECTION</h2>
<p>Connect 4 servo with Arduino and 4 potentiometer as shown in following connection diagram.</p>
<p><img decoding="async" class="alignnone size-full wp-image-130" src="https://servoroboticarm.files.wordpress.com/2017/06/arduino-servo-robotic-arm1.jpg?w=740" sizes="(max-width: 706px) 89vw, (max-width: 767px) 82vw, 740px" srcset="https://servoroboticarm.files.wordpress.com/2017/06/arduino-servo-robotic-arm1.jpg?w=740 740w, https://servoroboticarm.files.wordpress.com/2017/06/arduino-servo-robotic-arm1.jpg?w=150 150w, https://servoroboticarm.files.wordpress.com/2017/06/arduino-servo-robotic-arm1.jpg?w=300 300w, https://servoroboticarm.files.wordpress.com/2017/06/arduino-servo-robotic-arm1.jpg?w=768 768w, https://servoroboticarm.files.wordpress.com/2017/06/arduino-servo-robotic-arm1.jpg?w=1024 1024w, https://servoroboticarm.files.wordpress.com/2017/06/arduino-servo-robotic-arm1.jpg 1200w" alt="Arduino Servo robotic arm.jpg" data-attachment-id="130" data-permalink="https://servoroboticarm.wordpress.com/arduino-code/arduino-servo-robotic-arm-2/" data-orig-file="https://servoroboticarm.files.wordpress.com/2017/06/arduino-servo-robotic-arm1.jpg?w=740" data-orig-size="1200,555" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Arduino Servo robotic arm" data-image-description="" data-medium-file="https://servoroboticarm.files.wordpress.com/2017/06/arduino-servo-robotic-arm1.jpg?w=740?w=300" data-large-file="https://servoroboticarm.files.wordpress.com/2017/06/arduino-servo-robotic-arm1.jpg?w=740?w=740" /></p>
<p>Connect:</p>
<ul>
<li>1st terminal of all 4 potentiometers with +5v</li>
<li>3rd terminal of all 4 potentiometers with GND</li>
<li>Middle terminal of potentiometer 1, 2, 3 and 4 with A0, A1, A2 and A3</li>
<li>Red wire of all 4 servo with +5 v</li>
<li>Black/Brown wire of all 4 servo with GND</li>
<li>Yellow wire of gripper micro servo with pin 4</li>
<li>White wire of right servo with pin 5</li>
<li> White wire of center servo with pin 6</li>
<li>White wire of left servo with pin 7</li>
</ul>
<h2>STEP 3: POWER</h2>
<p>Give proper supply to your arduino and control your robotic arm by varying the position of potentiometer knob.</p>
<h2>Other method of control: Please note that the robotic arm uses 4 servo, so you can also use any other control method compatible for 4 servo motors.</h2>
<p><a href="http://www.instructables.com/id/Arduino-Multi-Servo-Motor-Control-Via-Bluetooth-Us/">Link for smartphone/bluetooth controlled servo arm</a></p>
<p><a href="http://www.instructables.com/id/ArduinoAndroid-BLUETOOTH-Multi-Servo-Motor-Control/" target="_blank" rel="noopener">Link for multi servo control with smartphone</a></p>
<p><a href="http://www.instructables.com/id/Arduino-Multiple-Servo-Control-With-Joystick/" target="_blank" rel="noopener">Link for basic introduction to Multiple Servo Control With Joystick</a></p>
<p><a href="http://forum.arduino.cc/index.php?topic=161906.0" target="_blank" rel="noopener">Link for code to control 4 servo with 2 Joystick</a></p>
<p><a href="http://4%20servos%2C%20and%202%20joysticks%2C/" target="_blank" rel="noopener">Link 2 for code of 4 servo control with 2 joystick</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://kit4curious.com/2018/04/02/how-to-control-servo-robotic-arm-using-potentiometers/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2920</post-id>	</item>
		<item>
		<title>How to make line following robot without microcontroller</title>
		<link>https://kit4curious.com/2018/04/02/how-to-make-line-following-robot-without-microcontroller/</link>
					<comments>https://kit4curious.com/2018/04/02/how-to-make-line-following-robot-without-microcontroller/#respond</comments>
		
		<dc:creator><![CDATA[kit4curious_admin]]></dc:creator>
		<pubDate>Mon, 02 Apr 2018 13:00:27 +0000</pubDate>
				<category><![CDATA[Robotics]]></category>
		<guid isPermaLink="false">https://kit4curious.com/?p=2913</guid>

					<description><![CDATA[Your kit includes: Double layer robotic chassis BO motor (L shape) (2 pcs) Wheel (2 pcs) Motor driver (1 pcs) IR sensor module (2 pcs) 9v Battery (3 pcs) Battery connector with switch Nut-bolt, Screw, Spacer Caster (1 pcs) Clamp (2 pcs) Screw driver Foam tape 2 female-female jumper wire Note: Remove brown protective layer form&#8230; ]]></description>
										<content:encoded><![CDATA[<p><strong>Your kit includes:</strong><img fetchpriority="high" decoding="async" class="alignright" src="http://expe.in/wp-content/uploads/2017/06/1-768x581.jpg" sizes="(max-width: 640px) 100vw, 640px" srcset="http://expe.in/wp-content/uploads/2017/06/1-768x581.jpg 768w, http://expe.in/wp-content/uploads/2017/06/1-300x227.jpg 300w, http://expe.in/wp-content/uploads/2017/06/1-357x270.jpg 357w, http://expe.in/wp-content/uploads/2017/06/1.jpg 1000w" alt="" width="520" height="393" /></p>
<ul>
<li>Double layer robotic chassis</li>
<li>BO motor (L shape) (2 pcs)</li>
<li>Wheel (2 pcs)</li>
<li>Motor driver (1 pcs)</li>
</ul>
<ul>
<li>IR sensor module (2 pcs)</li>
<li>9v Battery (3 pcs)</li>
<li>Battery connector with switch</li>
<li>Nut-bolt, Screw, Spacer</li>
</ul>
<ul>
<li>Caster (1 pcs)</li>
<li>Clamp (2 pcs)</li>
<li>Screw driver</li>
<li>Foam tape</li>
<li>2 female-female jumper wire</li>
</ul>
<hr />
<p><strong>Note: Remove brown protective layer form acrylic parts (If any).</strong></p>
<p>STEP-1: Use 3 nut-bolt to fix caster with base acrylic chassis.</p>
<p><img decoding="async" class="alignnone size-full wp-image-1185" src="http://expe.in/wp-content/uploads/2017/06/2.jpg" sizes="(max-width: 1200px) 100vw, 1200px" srcset="http://expe.in/wp-content/uploads/2017/06/2.jpg 1200w, http://expe.in/wp-content/uploads/2017/06/2-300x110.jpg 300w, http://expe.in/wp-content/uploads/2017/06/2-768x282.jpg 768w, http://expe.in/wp-content/uploads/2017/06/2-1024x376.jpg 1024w, http://expe.in/wp-content/uploads/2017/06/2-360x132.jpg 360w" alt="" width="1200" height="441" /></p>
<p>STEP-2: Use 2+2 screw to attach clamp with motors.</p>
<p><img decoding="async" class="alignnone size-full wp-image-1186" src="http://expe.in/wp-content/uploads/2017/06/3.jpg" sizes="(max-width: 1200px) 100vw, 1200px" srcset="http://expe.in/wp-content/uploads/2017/06/3.jpg 1200w, http://expe.in/wp-content/uploads/2017/06/3-300x77.jpg 300w, http://expe.in/wp-content/uploads/2017/06/3-768x198.jpg 768w, http://expe.in/wp-content/uploads/2017/06/3-1024x264.jpg 1024w, http://expe.in/wp-content/uploads/2017/06/3-360x93.jpg 360w" alt="" width="1200" height="309" /></p>
<p>STEP-3: Mount Motor+Clamp with base acrylic chassis using 2+2 nut-bolt.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-1187" src="http://expe.in/wp-content/uploads/2017/06/4.jpg" sizes="(max-width: 1200px) 100vw, 1200px" srcset="http://expe.in/wp-content/uploads/2017/06/4.jpg 1200w, http://expe.in/wp-content/uploads/2017/06/4-300x116.jpg 300w, http://expe.in/wp-content/uploads/2017/06/4-768x296.jpg 768w, http://expe.in/wp-content/uploads/2017/06/4-1024x394.jpg 1024w, http://expe.in/wp-content/uploads/2017/06/4-360x139.jpg 360w" alt="" width="1200" height="462" /></p>
<p>STEP-4: Mount upper acrylic plate with base acrylic chassis using 4 spacer and 4 long nut-bolt.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-1188" src="http://expe.in/wp-content/uploads/2017/06/5.jpg" sizes="(max-width: 1200px) 100vw, 1200px" srcset="http://expe.in/wp-content/uploads/2017/06/5.jpg 1200w, http://expe.in/wp-content/uploads/2017/06/5-300x125.jpg 300w, http://expe.in/wp-content/uploads/2017/06/5-768x319.jpg 768w, http://expe.in/wp-content/uploads/2017/06/5-1024x426.jpg 1024w, http://expe.in/wp-content/uploads/2017/06/5-360x150.jpg 360w" alt="" width="1200" height="499" /></p>
<p>STEP-5: Fix the wheels with motor shaft using 2 small screw.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-1189" src="http://expe.in/wp-content/uploads/2017/06/6.jpg" sizes="(max-width: 1200px) 100vw, 1200px" srcset="http://expe.in/wp-content/uploads/2017/06/6.jpg 1200w, http://expe.in/wp-content/uploads/2017/06/6-300x122.jpg 300w, http://expe.in/wp-content/uploads/2017/06/6-768x313.jpg 768w, http://expe.in/wp-content/uploads/2017/06/6-1024x417.jpg 1024w, http://expe.in/wp-content/uploads/2017/06/6-360x147.jpg 360w" alt="" width="1200" height="489" /></p>
<p>STEP-6: Stick 2 IR sensor in front side of base acrylic chassis and Motor driver on upper acrylic plate.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-1190" src="http://expe.in/wp-content/uploads/2017/06/7-copy.jpg" sizes="(max-width: 1200px) 100vw, 1200px" srcset="http://expe.in/wp-content/uploads/2017/06/7-copy.jpg 1200w, http://expe.in/wp-content/uploads/2017/06/7-copy-300x110.jpg 300w, http://expe.in/wp-content/uploads/2017/06/7-copy-768x281.jpg 768w, http://expe.in/wp-content/uploads/2017/06/7-copy-1024x375.jpg 1024w, http://expe.in/wp-content/uploads/2017/06/7-copy-360x132.jpg 360w" alt="" width="1200" height="439" /></p>
<p>STEP-7: Connect motor wire with motor driver as shown in image and stick 3 batteries on upper acrylic plate.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-1191" src="http://expe.in/wp-content/uploads/2017/06/8-copy.jpg" sizes="(max-width: 1200px) 100vw, 1200px" srcset="http://expe.in/wp-content/uploads/2017/06/8-copy.jpg 1200w, http://expe.in/wp-content/uploads/2017/06/8-copy-300x124.jpg 300w, http://expe.in/wp-content/uploads/2017/06/8-copy-768x317.jpg 768w, http://expe.in/wp-content/uploads/2017/06/8-copy-1024x423.jpg 1024w, http://expe.in/wp-content/uploads/2017/06/8-copy-360x149.jpg 360w" alt="" width="1200" height="496" /></p>
<p>STEP-8: Connect battery connector with 3 batteries. There are 3 Red/White jumper wire and 3 Black/Brown jumper wire at other side of switch, connect these jumper wires as-</p>
<p>Red/White jumper wire with +5v terminal of motor driver.</p>
<p>Black/Brown jumper wire with G terminal of motor driver.</p>
<p>Red/White jumper wire with VCC terminal of IR sensor-1.</p>
<p>Black/Brown jumper wire with GND terminal of IR sensor-1.</p>
<p>Red/White jumper wire with VCC terminal of IR sensor-2.</p>
<p>Black/Brown jumper wire with GND terminal of IR sensor-2.</p>
<p>Connect additional jumper wire with M1a terminal of motor driver and O/P terminal of left side IR sensor.</p>
<p>Connect another jumper wire with M2b terminal of motor driver and O/P terminal of right side IR sensor.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-1193" src="http://expe.in/wp-content/uploads/2017/06/9-copy.jpg" sizes="(max-width: 1200px) 100vw, 1200px" srcset="http://expe.in/wp-content/uploads/2017/06/9-copy.jpg 1200w, http://expe.in/wp-content/uploads/2017/06/9-copy-300x153.jpg 300w, http://expe.in/wp-content/uploads/2017/06/9-copy-768x392.jpg 768w, http://expe.in/wp-content/uploads/2017/06/9-copy-1024x522.jpg 1024w, http://expe.in/wp-content/uploads/2017/06/9-copy-360x184.jpg 360w" alt="" width="1200" height="612" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-1304" src="http://expe.in/wp-content/uploads/2017/06/Conn-HD-LFR-copy.jpg" sizes="(max-width: 1400px) 100vw, 1400px" srcset="http://expe.in/wp-content/uploads/2017/06/Conn-HD-LFR-copy.jpg 1400w, http://expe.in/wp-content/uploads/2017/06/Conn-HD-LFR-copy-300x140.jpg 300w, http://expe.in/wp-content/uploads/2017/06/Conn-HD-LFR-copy-768x358.jpg 768w, http://expe.in/wp-content/uploads/2017/06/Conn-HD-LFR-copy-1024x477.jpg 1024w, http://expe.in/wp-content/uploads/2017/06/Conn-HD-LFR-copy-360x168.jpg 360w" alt="" width="1400" height="652" /></p>
<p>STEP-9: Make a black line (3-4.5 cm) using black tape, put your robot and turn ON the switch.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-1194" src="http://expe.in/wp-content/uploads/2017/06/10-copy.jpg" sizes="(max-width: 1400px) 100vw, 1400px" srcset="http://expe.in/wp-content/uploads/2017/06/10-copy.jpg 1400w, http://expe.in/wp-content/uploads/2017/06/10-copy-300x149.jpg 300w, http://expe.in/wp-content/uploads/2017/06/10-copy-768x382.jpg 768w, http://expe.in/wp-content/uploads/2017/06/10-copy-1024x509.jpg 1024w, http://expe.in/wp-content/uploads/2017/06/10-copy-360x179.jpg 360w" alt="" width="1400" height="696" /></p>
<p>Troubleshooting:</p>
<p>If the right side wheel+motor rotates in reverse direction then remove the jumper wire from M2b terminal of motor driver and connect it with M2a terminal of motor driver.</p>
<p>Or, If the left side wheel+motor rotates in reverse direction then remove the jumper wire from M1a terminal of motor driver and connect it with M1b terminal of motor driver.</p>
<p>Note: Don’t perform this experiment in direct/partial sun light. Indoor experiment/inside a room is the perfect place for this experiment.</p>
<hr />
<p><a href="http://www.amazon.in/DIY-Line-following-robot-complete/dp/B01LPZSZBY/ref=sr_1_2?ie=UTF8&amp;qid=1498380063&amp;sr=8-2&amp;keywords=line+following+robot+nasa+tech">Buy this kit here</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://kit4curious.com/2018/04/02/how-to-make-line-following-robot-without-microcontroller/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2913</post-id>	</item>
		<item>
		<title>How to control a Robotic Arm</title>
		<link>https://kit4curious.com/2018/04/02/how-to-control-a-robotic-arm/</link>
					<comments>https://kit4curious.com/2018/04/02/how-to-control-a-robotic-arm/#respond</comments>
		
		<dc:creator><![CDATA[kit4curious_admin]]></dc:creator>
		<pubDate>Mon, 02 Apr 2018 12:51:50 +0000</pubDate>
				<category><![CDATA[Robotics]]></category>
		<guid isPermaLink="false">https://kit4curious.com/?p=2910</guid>

					<description><![CDATA[Step 1: What do you need You will require the following items My Arm kit (Acrylic Assembly with 4 DC geared BO motors) 4 Motor-direction-control switch (3 Way, 6 terminal switch) 9v Battery 9v Battery connector 8-core rainbow wire strip (2 mtr.) MY Arm kit contains all above required items. Step 2: Connect&#8230; ]]></description>
										<content:encoded><![CDATA[<header class="entry-header">
<h2 class="entry-title">Step 1: What do you need</h2>
</header>
<div class="entry-content">
<p>You will require the following items<img loading="lazy" decoding="async" class="wp-image-842 alignright" src="http://expe.in/wp-content/uploads/2017/05/MY-Arm-tutorial.jpg" sizes="(max-width: 533px) 100vw, 533px" srcset="http://expe.in/wp-content/uploads/2017/05/MY-Arm-tutorial.jpg 1000w, http://expe.in/wp-content/uploads/2017/05/MY-Arm-tutorial-300x173.jpg 300w, http://expe.in/wp-content/uploads/2017/05/MY-Arm-tutorial-768x444.jpg 768w, http://expe.in/wp-content/uploads/2017/05/MY-Arm-tutorial-360x208.jpg 360w" alt="" width="483" height="279" /></p>
<ol>
<li>My Arm kit (Acrylic Assembly with 4 DC geared BO motors)</li>
<li>4 Motor-direction-control switch (3 Way, 6 terminal switch)</li>
<li>9v Battery</li>
<li>9v Battery connector</li>
<li>8-core rainbow wire strip (2 mtr.)</li>
</ol>
<p><a href="http://www.amazon.in/Complete-Robotic-Arduino-Compatible-functioning/dp/B01N18IAY3/ref=sr_1_1?ie=UTF8&amp;qid=1495204340&amp;sr=8-1&amp;keywords=arduino+robotic+arm" target="_blank" rel="noopener noreferrer">MY Arm kit </a>contains all above required items.</p>
<h2 class="step-title">Step 2: Connect wire with 4 motors</h2>
<div id="photoset-SXETB9RIO0GFMXH" class="photoset">Connect/solder the 8-core rainbow wire with 4 motors of MY Arm. Each motor have 2 terminals, hence 4 motors have 8 terminals so connect them with 8 wires of rainbow wire strip.</div>
<div class="photoset">Please note that gripper motor will be little far away from other motors, so the wire you connect with this motor should be longer.</div>
<h2 class="step-title">Step 3: Build the ‘My Arm’</h2>
<div id="photoset-SXETB9RIO0GFMXH" class="photoset">Follow the simple instructions described in the assembly manual (provided with every MY Arm kit) to build your ‘MY Arm’.</div>
<div class="photoset"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-141" src="https://myarmrobot.files.wordpress.com/2017/05/my-arm-assembly.jpg?w=567" sizes="(max-width: 567px) 100vw, 567px" srcset="https://myarmrobot.files.wordpress.com/2017/05/my-arm-assembly.jpg?w=567 567w, https://myarmrobot.files.wordpress.com/2017/05/my-arm-assembly.jpg?w=150 150w, https://myarmrobot.files.wordpress.com/2017/05/my-arm-assembly.jpg?w=300 300w, https://myarmrobot.files.wordpress.com/2017/05/my-arm-assembly.jpg 700w" alt="MY Arm assembly.jpg" width="567" height="443" data-attachment-id="141" data-permalink="https://myarmrobot.wordpress.com/tutorial/my-arm-assembly/" data-orig-file="https://myarmrobot.files.wordpress.com/2017/05/my-arm-assembly.jpg" data-orig-size="700,547" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="MY Arm assembly" data-image-description="" data-medium-file="https://myarmrobot.files.wordpress.com/2017/05/my-arm-assembly.jpg?w=300" data-large-file="https://myarmrobot.files.wordpress.com/2017/05/my-arm-assembly.jpg?w=700" /></div>
<h2 class="step-title">Step 4: Connections</h2>
<div id="photoset-SXETB9RIO0GFMXH" class="photoset">Connect MY Arm motors, Slide switches and battery as shown in the connection diagram.</div>
<div class="photoset"><img loading="lazy" decoding="async" class=" wp-image-146 aligncenter" src="https://myarmrobot.files.wordpress.com/2017/05/connection-diagram2.jpg?w=459&amp;h=539" sizes="(max-width: 459px) 100vw, 459px" srcset="https://myarmrobot.files.wordpress.com/2017/05/connection-diagram2.jpg?w=459&amp;h=539 459w, https://myarmrobot.files.wordpress.com/2017/05/connection-diagram2.jpg?w=128&amp;h=150 128w, https://myarmrobot.files.wordpress.com/2017/05/connection-diagram2.jpg?w=255&amp;h=300 255w, https://myarmrobot.files.wordpress.com/2017/05/connection-diagram2.jpg?w=768&amp;h=902 768w, https://myarmrobot.files.wordpress.com/2017/05/connection-diagram2.jpg 800w" alt="Connection diagram" width="459" height="539" data-attachment-id="146" data-permalink="https://myarmrobot.wordpress.com/tutorial/connection-diagram-3/" data-orig-file="https://myarmrobot.files.wordpress.com/2017/05/connection-diagram2.jpg?w=459&amp;h=539" data-orig-size="800,940" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Connection diagram" data-image-description="" data-medium-file="https://myarmrobot.files.wordpress.com/2017/05/connection-diagram2.jpg?w=459&amp;h=539?w=255" data-large-file="https://myarmrobot.files.wordpress.com/2017/05/connection-diagram2.jpg?w=459&amp;h=539?w=740" />Note: You can also use big DPDT switches with same connection diagram and you can also use different battery/power supply according to your project/use. You can use 3 to 9v DC supply/battery. Lower voltage (i.e. 3v DC) will result in slow movement of arm. 6v DC is the best suitable voltage for medium speed and smoother control of MY Arm.</div>
</div>
<div class="entry-content">
<h2 id="step2" class="step-title">Step 5: Congratulations! You are done, Enjoy!</h2>
<p>High five! You have done all steps successfully, now its time to test and control your MY Arm with the connected switches. You can fix these switches and battery in a box for better looking and comfort. Have fun with your robotic arm. <a href="http://www.amazon.in/">Buy MY Arm kit from amazon here</a> If you are facing any difficulty or have any suggestion or feedback, please write us at mail.shaktiproducts@gmail.com Comment &amp; share if you liked the tutorial.</p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://kit4curious.com/2018/04/02/how-to-control-a-robotic-arm/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2910</post-id>	</item>
		<item>
		<title>Kit4Curious Copper Zinc Plates</title>
		<link>https://kit4curious.com/2018/02/11/kit4curious-copper-zinc-plates/</link>
					<comments>https://kit4curious.com/2018/02/11/kit4curious-copper-zinc-plates/#respond</comments>
		
		<dc:creator><![CDATA[kit4curious_admin]]></dc:creator>
		<pubDate>Sun, 11 Feb 2018 05:37:40 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://kit4curious.com/?p=5094</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[]]></content:encoded>
					
					<wfw:commentRss>https://kit4curious.com/2018/02/11/kit4curious-copper-zinc-plates/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">5094</post-id>	</item>
	</channel>
</rss>
