<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[SoliForum - 3D Printing Community — camera slider]]></title>
	<link rel="self" href="https://www.soliforum.com/feed/atom/topic/4484/" />
	<updated>2013-11-28T02:06:03Z</updated>
	<generator>PunBB</generator>
	<id>https://www.soliforum.com/topic/4484/camera-slider/</id>
		<entry>
			<title type="html"><![CDATA[Re: camera slider]]></title>
			<link rel="alternate" href="https://www.soliforum.com/post/42745/#p42745" />
			<content type="html"><![CDATA[<p>LOL I noticed that&nbsp; : spead, yea going to fix that.</p>]]></content>
			<author>
				<name><![CDATA[satman49]]></name>
				<uri>https://www.soliforum.com/user/574/</uri>
			</author>
			<updated>2013-11-28T02:06:03Z</updated>
			<id>https://www.soliforum.com/post/42745/#p42745</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: camera slider]]></title>
			<link rel="alternate" href="https://www.soliforum.com/post/42716/#p42716" />
			<content type="html"><![CDATA[<p>thanks, that did the trick. Upped the delay to 75000 , now I get about 1 Rpm&nbsp; to the turntable it&#039;s driving.</p>]]></content>
			<author>
				<name><![CDATA[satman49]]></name>
				<uri>https://www.soliforum.com/user/574/</uri>
			</author>
			<updated>2013-11-27T19:00:45Z</updated>
			<id>https://www.soliforum.com/post/42716/#p42716</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: camera slider]]></title>
			<link rel="alternate" href="https://www.soliforum.com/post/42713/#p42713" />
			<content type="html"><![CDATA[<p>Oh man, that would bug me that speed is misspelled everywhere except for in the comments. <img src="https://www.soliforum.com/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p><p>Find &amp; replace all spead-&gt; speed</p>]]></content>
			<author>
				<name><![CDATA[2n2r5]]></name>
				<uri>https://www.soliforum.com/user/1906/</uri>
			</author>
			<updated>2013-11-27T18:11:45Z</updated>
			<id>https://www.soliforum.com/post/42713/#p42713</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: camera slider]]></title>
			<link rel="alternate" href="https://www.soliforum.com/post/42702/#p42702" />
			<content type="html"><![CDATA[<p>The delay lengths will change how long the motor is running in that direction.</p><p>You said you want 6rpm CW - that&#039;s a speed, not a displacement. If it is running full power (defined at int spead=127), then it will run at 6rpm.</p><p>Finally, DC gear motors are not capable of open loop control - you&#039;ll never get exactly 6 revolutions (assuming that&#039;s what you want) without an encoder.</p>]]></content>
			<author>
				<name><![CDATA[elmoret]]></name>
				<uri>https://www.soliforum.com/user/221/</uri>
			</author>
			<updated>2013-11-27T17:04:02Z</updated>
			<id>https://www.soliforum.com/post/42702/#p42702</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: camera slider]]></title>
			<link rel="alternate" href="https://www.soliforum.com/post/42701/#p42701" />
			<content type="html"><![CDATA[<p>Are there any Arduino gurus out there?&nbsp; I am trying to&nbsp; use this sketch</p><p>//. Motor driver shield- 2012 Copyright (c) Seeed Technology Inc.<br />// <br />//&nbsp; Original Author: Jimbo.we<br />//&nbsp; Contribution: LG<br />//&nbsp; <br />//&nbsp; This library is free software; you can redistribute it and/or<br />//&nbsp; modify it under the terms of the GNU Lesser General Public<br />//&nbsp; License as published by the Free Software Foundation; either<br />//&nbsp; version 2.1 of the License, or (at your option) any later version.<br />//<br />//&nbsp; This library is distributed in the hope that it will be useful,<br />//&nbsp; but WITHOUT ANY WARRANTY; without even the implied warranty of<br />//&nbsp; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.&nbsp; See the GNU<br />//&nbsp; Lesser General Public License for more details.<br />//<br />//&nbsp; You should have received a copy of the GNU Lesser General Public<br />//&nbsp; License along with this library; if not, write to the Free Software<br />//&nbsp; Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA&nbsp; 02110-1301&nbsp; USA</p><p>int pinI1=8;//define I1 interface<br />int pinI2=11;//define I2 interface <br />int speedpinA=9;//enable motor A<br />int pinI3=12;//define I3 interface <br />int pinI4=13;//define I4 interface <br />int speedpinB=10;//enable motor B<br />int spead =127;//define the spead of motor</p><p>void setup()<br />{<br />&nbsp; pinMode(pinI1,OUTPUT);<br />&nbsp; pinMode(pinI2,OUTPUT);<br />&nbsp; pinMode(speedpinA,OUTPUT);<br />&nbsp; pinMode(pinI3,OUTPUT);<br />&nbsp; pinMode(pinI4,OUTPUT);<br />&nbsp; pinMode(speedpinB,OUTPUT);<br />}</p><p>void forward()<br />{<br />&nbsp; &nbsp; &nbsp;analogWrite(speedpinA,spead);//input a simulation value to set the speed<br />&nbsp; &nbsp; &nbsp;analogWrite(speedpinB,spead);<br />&nbsp; &nbsp; &nbsp;digitalWrite(pinI4,HIGH);//turn DC Motor B move clockwise<br />&nbsp; &nbsp; &nbsp;digitalWrite(pinI3,LOW);<br />&nbsp; &nbsp; &nbsp;digitalWrite(pinI2,LOW);//turn DC Motor A move anticlockwise<br />&nbsp; &nbsp; &nbsp;digitalWrite(pinI1,HIGH);<br />}<br />void backward()//<br />{<br />&nbsp; &nbsp; &nbsp;analogWrite(speedpinA,spead);//input a simulation value to set the speed<br />&nbsp; &nbsp; &nbsp;analogWrite(speedpinB,spead);<br />&nbsp; &nbsp; &nbsp;digitalWrite(pinI4,LOW);//turn DC Motor B move anticlockwise<br />&nbsp; &nbsp; &nbsp;digitalWrite(pinI3,HIGH);<br />&nbsp; &nbsp; &nbsp;digitalWrite(pinI2,HIGH);//turn DC Motor A move clockwise<br />&nbsp; &nbsp; &nbsp;digitalWrite(pinI1,LOW);<br />}<br />void left()//<br />{<br />&nbsp; &nbsp; &nbsp;analogWrite(speedpinA,spead);//input a simulation value to set the speed<br />&nbsp; &nbsp; &nbsp;analogWrite(speedpinB,spead);<br />&nbsp; &nbsp; &nbsp;digitalWrite(pinI4,HIGH);//turn DC Motor B move clockwise<br />&nbsp; &nbsp; &nbsp;digitalWrite(pinI3,LOW);<br />&nbsp; &nbsp; &nbsp;digitalWrite(pinI2,HIGH);//turn DC Motor A move clockwise<br />&nbsp; &nbsp; &nbsp;digitalWrite(pinI1,LOW);<br />}<br />void right()//<br />{<br />&nbsp; &nbsp; &nbsp;analogWrite(speedpinA,spead);//input a simulation value to set the speed<br />&nbsp; &nbsp; &nbsp;analogWrite(speedpinB,spead);<br />&nbsp; &nbsp; &nbsp;digitalWrite(pinI4,LOW);//turn DC Motor B move anticlockwise<br />&nbsp; &nbsp; &nbsp;digitalWrite(pinI3,HIGH);<br />&nbsp; &nbsp; &nbsp;digitalWrite(pinI2,LOW);//turn DC Motor A move clockwise<br />&nbsp; &nbsp; &nbsp;digitalWrite(pinI1,HIGH);<br />}<br />void stop()//<br />{<br />&nbsp; &nbsp; &nbsp;digitalWrite(speedpinA,LOW);// Unenble the pin, to stop the motor. this should be done to avid damaging the motor. <br />&nbsp; &nbsp; &nbsp;digitalWrite(speedpinB,LOW);<br />&nbsp; &nbsp; &nbsp;delay(1000);</p><p>}</p><p>void loop()<br />{<br />&nbsp; left();<br />&nbsp; delay(2000);<br />&nbsp; stop();<br />&nbsp; right();<br />&nbsp; delay(2000);<br />&nbsp; stop();<br /> // delay(2000);<br />&nbsp; forward();<br />&nbsp; delay(2000);<br />&nbsp; stop();<br />&nbsp; backward();<br />&nbsp; delay(2000); <br />&nbsp; stop(); <br />}</p><br /><p>with a 6 rpm gear motor.All it does is move CW and CCW about a quarter revolution. I have read all the docs on it but can&#039;t&nbsp; find what to change to make it run like I want (6 rpm CW and 6 rpm CCW. It&#039;s being used on an Adruino Uno and Seeed motor shield.</p>]]></content>
			<author>
				<name><![CDATA[satman49]]></name>
				<uri>https://www.soliforum.com/user/574/</uri>
			</author>
			<updated>2013-11-27T16:59:55Z</updated>
			<id>https://www.soliforum.com/post/42701/#p42701</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: camera slider]]></title>
			<link rel="alternate" href="https://www.soliforum.com/post/41623/#p41623" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>satman49 wrote:</cite><blockquote><p>update<br />OK I have all the parts on order , arduino uno&nbsp; , stepper motor driver and stepper motor.From this video <a href="http://www.youtube.com/watch?v=SCyGM2Tp37w]">http://www.youtube.com/watch?v=SCyGM2Tp37w]</a>&nbsp; I am going to use the same code as he did. I emailed the user and he replied with&nbsp; the code so that I could just copy and paste it. Thanks adrian for the &quot;Push&quot; <img src="https://www.soliforum.com/img/smilies/smile.png" width="15" height="15" alt="smile" /></p></blockquote></div><p>good work. sounds like its coming together just nicely. Let us know if you get stuck and be sure to keep the thread updated, will be keen to see how much it helps re the scanning! <img src="https://www.soliforum.com/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></content>
			<author>
				<name><![CDATA[adrian]]></name>
				<uri>https://www.soliforum.com/user/663/</uri>
			</author>
			<updated>2013-11-14T10:56:27Z</updated>
			<id>https://www.soliforum.com/post/41623/#p41623</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: camera slider]]></title>
			<link rel="alternate" href="https://www.soliforum.com/post/41601/#p41601" />
			<content type="html"><![CDATA[<p>update<br />OK I have all the parts on order , arduino uno&nbsp; , stepper motor driver and stepper motor.From this video <a href="http://www.youtube.com/watch?v=SCyGM2Tp37w]">http://www.youtube.com/watch?v=SCyGM2Tp37w]</a>&nbsp; I am going to use the same code as he did. I emailed the user and he replied with&nbsp; the code so that I could just copy and paste it. Thanks adrian for the &quot;Push&quot; <img src="https://www.soliforum.com/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></content>
			<author>
				<name><![CDATA[satman49]]></name>
				<uri>https://www.soliforum.com/user/574/</uri>
			</author>
			<updated>2013-11-13T22:46:32Z</updated>
			<id>https://www.soliforum.com/post/41601/#p41601</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: camera slider]]></title>
			<link rel="alternate" href="https://www.soliforum.com/post/41370/#p41370" />
			<content type="html"><![CDATA[<p>I think this is what I am looking for, seems simple enough&nbsp; <a href="http://www.youtube.com/watch?v=SCyGM2Tp37w]">http://www.youtube.com/watch?v=SCyGM2Tp37w]</a></p>]]></content>
			<author>
				<name><![CDATA[satman49]]></name>
				<uri>https://www.soliforum.com/user/574/</uri>
			</author>
			<updated>2013-11-11T19:52:30Z</updated>
			<id>https://www.soliforum.com/post/41370/#p41370</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: camera slider]]></title>
			<link rel="alternate" href="https://www.soliforum.com/post/41187/#p41187" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>satman49 wrote:</cite><blockquote><p>I came across this :<br /><a href="http://rollertrol.com/store/en/diy-motorized-window-blind-kits/27-kit-2-basic-window-blind.html">http://rollertrol.com/store/en/diy-moto … blind.html</a> it&#039;s a motorized&nbsp; window shade system.It says it has a 6lb load capacity.It might do the trick.</p></blockquote></div><p>It wont have anywhere near the smoothness of a linear rail (will be jerky and cause alignment issues with images) - when taking images, even a small &#039;jerk&#039; can change the entire image pain... <br />Its also pretty pricey for what it would achieve compared to using an arduino and your existing makerslide.</p><p>As far as I can tell - everything you need to know and do is right there in <a href="http://forum.allaboutcircuits.com/showthread.php?t=75956">http://forum.allaboutcircuits.com/showt … hp?t=75956</a>&nbsp; - you dont even need to make the linear rail like he did since you have makerslide already ?</p><p>But if you are real keen to spend money, forget repurposing window sliders and the like (wont be anywhere near smooth enough) just step up to doing it properly. Igus sells these kits for a living, and they sell both diy kits and commercial kits. <a href="http://www.friedhelm-fischer.de/camera-slider-diy-tutorial/">http://www.friedhelm-fischer.de/camera- … -tutorial/</a> . </p><p>Me personally - you have 99% of what you need already - all you need to do is spend an afternoon reading <a href="http://forum.allaboutcircuits.com/showthread.php?t=75956">http://forum.allaboutcircuits.com/showt … hp?t=75956</a> and you&#039;d have it built already <img src="https://www.soliforum.com/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></content>
			<author>
				<name><![CDATA[adrian]]></name>
				<uri>https://www.soliforum.com/user/663/</uri>
			</author>
			<updated>2013-11-10T02:16:45Z</updated>
			<id>https://www.soliforum.com/post/41187/#p41187</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: camera slider]]></title>
			<link rel="alternate" href="https://www.soliforum.com/post/41173/#p41173" />
			<content type="html"><![CDATA[<p>I came across this :<br /><a href="http://rollertrol.com/store/en/diy-motorized-window-blind-kits/27-kit-2-basic-window-blind.html">http://rollertrol.com/store/en/diy-moto … blind.html</a> it&#039;s a motorized&nbsp; window shade system.It says it has a 6lb load capacity.It might do the trick.</p>]]></content>
			<author>
				<name><![CDATA[satman49]]></name>
				<uri>https://www.soliforum.com/user/574/</uri>
			</author>
			<updated>2013-11-10T00:21:24Z</updated>
			<id>https://www.soliforum.com/post/41173/#p41173</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: camera slider]]></title>
			<link rel="alternate" href="https://www.soliforum.com/post/41007/#p41007" />
			<content type="html"><![CDATA[<p>Not really. There is a ton of camera-slider and/or tracker projects around that you could just repurpose using arduinos and makerslide... you could just piggyback onto their work.</p><p>Otherwise, its a straightforward Arduino problem. How do you want to control the camera ? have it start at the bottom, travel up to a limit switch, and then stop... its a couple of lines of code and using the arduino stepper library. Ton of useful info on arduino.cc - really all you want to do is drive a stepper and have it respond to the state of two limit switches, and some sort of &#039;go&#039; button or command via serial. </p><p>Here&nbsp; is an example of someone in the same boat - home built slider and their very first arduino project. They kindly stuck all their build details and code and software over at <a href="http://forum.allaboutcircuits.com/showthread.php?t=75956">http://forum.allaboutcircuits.com/showt … hp?t=75956</a> .....</p><p><div class="fancy_video_tag_player"><iframe class="youtube-player" type="text/html" width="640" height="385" src="http://www.youtube.com/embed/5UDFN15C6fA" frameborder="0"></iframe></div></p><p>A google search of &quot;DIY Camera Slider Arduino&quot; should turn up about 101 projects... where its horizontal, you simply stand it vertical....</p>]]></content>
			<author>
				<name><![CDATA[adrian]]></name>
				<uri>https://www.soliforum.com/user/663/</uri>
			</author>
			<updated>2013-11-08T06:01:26Z</updated>
			<id>https://www.soliforum.com/post/41007/#p41007</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: camera slider]]></title>
			<link rel="alternate" href="https://www.soliforum.com/post/40992/#p40992" />
			<content type="html"><![CDATA[<p>thanks, I have the&nbsp; MakerSlide and a Carriage Plate with 4 V-Wheels already.I have to get the stepper motor.It&#039;s that I am not familiar with how to use Arduino Uno to do that.Is there an application to use, like we use with our printers?</p>]]></content>
			<author>
				<name><![CDATA[satman49]]></name>
				<uri>https://www.soliforum.com/user/574/</uri>
			</author>
			<updated>2013-11-08T03:59:07Z</updated>
			<id>https://www.soliforum.com/post/40992/#p40992</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: camera slider]]></title>
			<link rel="alternate" href="https://www.soliforum.com/post/40981/#p40981" />
			<content type="html"><![CDATA[<p>Most accurate way - a Length of MakerSlide and a Carriage Plate with 4 V-Wheels (one of which is eccentric for tension adjustment), 2 GT2 Pulleys, and a stepper motor.&nbsp; Then its a simple basic Arduino Uno or any AVR really to drive the stepper up and down etc.</p><p><a href="http://www.makerslide.com/">http://www.makerslide.com/</a></p><p>Less reliable/accurate/stable versions would be the same methodology, but replacing the makerslide with a printer makerslide segment, the carriage with a printed carriage, etc etc.</p><p>There is plenty of how-to&#039;s on building Camera Sliders for TimeLapse stuff - any of these in a vertical orientation will function the same. You just need to make sure you have enough torque in the selected motor to support the Kinect.</p>]]></content>
			<author>
				<name><![CDATA[adrian]]></name>
				<uri>https://www.soliforum.com/user/663/</uri>
			</author>
			<updated>2013-11-08T02:05:38Z</updated>
			<id>https://www.soliforum.com/post/40981/#p40981</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[camera slider]]></title>
			<link rel="alternate" href="https://www.soliforum.com/post/40980/#p40980" />
			<content type="html"><![CDATA[<p>I am building a vertical camera slider for my Kinect for windows.I want to motorize it. It has to be able to autoreverse when it reaches each end. Any ideas as&nbsp; how to accomplish this.</p>]]></content>
			<author>
				<name><![CDATA[satman49]]></name>
				<uri>https://www.soliforum.com/user/574/</uri>
			</author>
			<updated>2013-11-08T02:00:40Z</updated>
			<id>https://www.soliforum.com/post/40980/#p40980</id>
		</entry>
</feed>
