<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Connection issues w/ Folger Tech 2020</title>
        <description> Hey guys,

So I finally got my printer all built and ready to go except the fan that it came with doesn&#039;t seem to want to work. Other than that everything seems to be running according to plan. All lights and displays are coming on. Seemed to be going just fine until I got to the Repetier part. I uploaded the firmware that folger tech had on their google drive and all I got was an error on my Repetier saying something to the effect of &quot;no connection-- forcing start&quot; and nothing starts. Changed the baud rate to 11520 on all parts of my system and then it says there is a fatal error or does the same thing. Can&#039;t tell you how many times I have done this and still got the same result. So any tips or suggestions would be great! I am pretty new and don&#039;t know much about coding in general. If there is anything else I need to do or that I need to upload or tell you guys so that it will help you to help me. 

Thanks!</description>
        <link>https://reprap.org/forum/read.php?406,670986,670986#msg-670986</link>
        <lastBuildDate>Fri, 04 Sep 2026 20:00:36 -0400</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://reprap.org/forum/read.php?406,670986,685272#msg-685272</guid>
            <title>Re: Connection issues w/ Folger Tech 2020</title>
            <link>https://reprap.org/forum/read.php?406,670986,685272#msg-685272</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>schmuck</strong><br />
hi</div></blockquote>
<br />
Hi]]></description>
            <dc:creator>Mach</dc:creator>
            <category>Prusa i3 and variants</category>
            <pubDate>Fri, 08 Jul 2016 20:34:02 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?406,670986,684990#msg-684990</guid>
            <title>Re: Connection issues w/ Folger Tech 2020</title>
            <link>https://reprap.org/forum/read.php?406,670986,684990#msg-684990</link>
            <description><![CDATA[ hi]]></description>
            <dc:creator>schmuck</dc:creator>
            <category>Prusa i3 and variants</category>
            <pubDate>Thu, 07 Jul 2016 22:57:38 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?406,670986,673561#msg-673561</guid>
            <title>Re: Connection issues w/ Folger Tech 2020</title>
            <link>https://reprap.org/forum/read.php?406,670986,673561#msg-673561</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>schmuck</strong><br />
X: Left<br />
Y: Back<br />
Z: Bottom</div></blockquote>
<br />
you should have your endstops plugged into:<br />
X min for x axis<br />
Y max for y axis<br />
Z min for z axis<br />
<div id="div_cd36d15f256cbf49db0113c0cf470e6e"
     class="mod_embed_images"
     >

  

    
      
    

    <div id="imagediv_cd36d15f256cbf49db0113c0cf470e6e" class="mod_embed_images_image"
         >

    
      

      

      

      

      

      

      <noscript>
      <div>
    

    <a href="http://s19.postimg.org/bnk2hdj7n/ramps.png">
        <img src="https://reprap.org/forum/addon.php?406,module=embed_images,url=http%3A%2F%2Fs19.postimg.org%2Fbnk2hdj7n%2Framps.png"
             
             
             id="image_cd36d15f256cbf49db0113c0cf470e6e"
             alt="ramps.png"
             title="ramps.png"/>
    </a>

    
      </div>
      </noscript>
    

    </div>

    <div class="mod_embed_images_info " id="info_cd36d15f256cbf49db0113c0cf470e6e"
      >
      <a id="link_cd36d15f256cbf49db0113c0cf470e6e" href="http://s19.postimg.org/bnk2hdj7n/ramps.png">ramps.png</a>
    </div>

  

 </div>


<script type="text/javascript">
mod_embed_images_loadimage('cd36d15f256cbf49db0113c0cf470e6e', 'https://reprap.org/forum/addon.php?406,module=embed_images,url=http%3A%2F%2Fs19.postimg.org%2Fbnk2hdj7n%2Framps.png', 'http://s19.postimg.org/bnk2hdj7n/ramps.png', 'https://reprap.org/forum/addon.php?406,module=embed_images,check_scaling=1,url=http%3A%2F%2Fs19.postimg.org%2Fbnk2hdj7n%2Framps.png', '', 673561, 800, 400, 'Loading image ...', false);
</script>
<br />
<br />
<pre class="bbcode">
#define USE_XMIN_PLUG
#define USE_YMIN_PLUG
#define USE_ZMIN_PLUG
//#define USE_XMAX_PLUG
//#define USE_YMAX_PLUG
//#define USE_ZMAX_PLUG</pre>
should be<br />
<pre class="bbcode">
#define USE_XMIN_PLUG
//#define USE_YMIN_PLUG
#define USE_ZMIN_PLUG
//#define USE_XMAX_PLUG
#define USE_YMAX_PLUG
//#define USE_ZMAX_PLUG</pre>
--------------------------------------------------------------------------------------------------------------------------------------------------<br />
<pre class="bbcode">
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
 
#if DISABLED(ENDSTOPPULLUPS)
  // fine endstop settings: Individual pullups. will be ignored if ENDSTOPPULLUPS is defined
  //#define ENDSTOPPULLUP_XMAX
  //#define ENDSTOPPULLUP_YMAX
  //#define ENDSTOPPULLUP_ZMAX
  //#define ENDSTOPPULLUP_XMIN
  //#define ENDSTOPPULLUP_YMIN
  //#define ENDSTOPPULLUP_ZMIN
  //#define ENDSTOPPULLUP_ZMIN_PROBE</pre>
should be<br />
<pre class="bbcode">
//#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
 
#if DISABLED(ENDSTOPPULLUPS)
  // fine endstop settings: Individual pullups. will be ignored if ENDSTOPPULLUPS is defined
  #define ENDSTOPPULLUP_XMAX
  //#define ENDSTOPPULLUP_YMAX
  #define ENDSTOPPULLUP_ZMAX
  //#define ENDSTOPPULLUP_XMIN
  #define ENDSTOPPULLUP_YMIN
  //#define ENDSTOPPULLUP_ZMIN
  //#define ENDSTOPPULLUP_ZMIN_PROBE</pre>
--------------------------------------------------------------------------------------------------------------------------------------------------<br />
<pre class="bbcode">
#define X_HOME_DIR -1
#define Y_HOME_DIR -1
#define Z_HOME_DIR 1</pre>
should be<br />
<pre class="bbcode">
#define X_HOME_DIR -1
#define Y_HOME_DIR 1
#define Z_HOME_DIR -1</pre>
<br />
settings in repetier &gt; printer settings &gt; printer shape should look like this<br />
<div id="div_51847e6b535c286880d53b6dc6851426"
     class="mod_embed_images"
     >

  

    
      
    

    <div id="imagediv_51847e6b535c286880d53b6dc6851426" class="mod_embed_images_image"
         >

    
      

      

      

      

      

      

      <noscript>
      <div>
    

    <a href="http://s19.postimg.org/e007njqyr/printer_shape_2.png">
        <img src="https://reprap.org/forum/addon.php?406,module=embed_images,url=http%3A%2F%2Fs19.postimg.org%2Fe007njqyr%2Fprinter_shape_2.png"
             
             
             id="image_51847e6b535c286880d53b6dc6851426"
             alt="printer_shape_2.png"
             title="printer_shape_2.png"/>
    </a>

    
      </div>
      </noscript>
    

    </div>

    <div class="mod_embed_images_info " id="info_51847e6b535c286880d53b6dc6851426"
      >
      <a id="link_51847e6b535c286880d53b6dc6851426" href="http://s19.postimg.org/e007njqyr/printer_shape_2.png">printer_shape_2.png</a>
    </div>

  

 </div>


<script type="text/javascript">
mod_embed_images_loadimage('51847e6b535c286880d53b6dc6851426', 'https://reprap.org/forum/addon.php?406,module=embed_images,url=http%3A%2F%2Fs19.postimg.org%2Fe007njqyr%2Fprinter_shape_2.png', 'http://s19.postimg.org/e007njqyr/printer_shape_2.png', 'https://reprap.org/forum/addon.php?406,module=embed_images,check_scaling=1,url=http%3A%2F%2Fs19.postimg.org%2Fe007njqyr%2Fprinter_shape_2.png', '', 673561, 800, 400, 'Loading image ...', false);
</script>
<br />
--------------------------------------------------------------------------------------------------------------------------------------------------<br />
Other things that should be changed are<br />
<pre class="bbcode">
#define TEMP_SENSOR_0 6
#define TEMP_SENSOR_1 0
#define TEMP_SENSOR_2 0
#define TEMP_SENSOR_3 0
#define TEMP_SENSOR_BED 6</pre>
should be<br />
<pre class="bbcode">
#define TEMP_SENSOR_0 1
#define TEMP_SENSOR_1 0
#define TEMP_SENSOR_2 0
#define TEMP_SENSOR_3 0
#define TEMP_SENSOR_BED 1</pre>
--------------------------------------------------------------------------------------------------------------------------------------------------<br />
<pre class="bbcode">
#define DEFAULT_AXIS_STEPS_PER_UNIT   {80,80,3840,90}</pre>
should be<br />
<pre class="bbcode">
#define DEFAULT_AXIS_STEPS_PER_UNIT   {80,80,4000, (should be a value calculated for your extruder)}</pre>
Extruder steps/mm calibration formula is <br />
extruder steps/mm formula = (current steps/mm * intended extrusion in mm) / (actual extrusion in mm)<br />
<br />
These changes should fix most of the problems. If the motors move in the wrong direction when you home a axis, flip the motor connector around on the ramps.<br/>]]></description>
            <dc:creator>Mach</dc:creator>
            <category>Prusa i3 and variants</category>
            <pubDate>Sat, 11 Jun 2016 20:39:34 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?406,670986,673546#msg-673546</guid>
            <title>Re: Connection issues w/ Folger Tech 2020</title>
            <link>https://reprap.org/forum/read.php?406,670986,673546#msg-673546</link>
            <description><![CDATA[ X: Left<br />
Y: Back<br />
Z: Bottom]]></description>
            <dc:creator>schmuck</dc:creator>
            <category>Prusa i3 and variants</category>
            <pubDate>Sat, 11 Jun 2016 18:21:00 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?406,670986,673532#msg-673532</guid>
            <title>Re: Connection issues w/ Folger Tech 2020</title>
            <link>https://reprap.org/forum/read.php?406,670986,673532#msg-673532</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>schmuck</strong><br />
Mach,<br />
<br />
Sorry for the late response. Here is my configuration.h in a link:<br />
<br />
[<a href="http://pastebin.com/piCnmNmv" target="_blank"  rel="nofollow">pastebin.com</a>]<br />
<br />
You could probably tell me for sure, but I think that I already downloaded that version and that's how I got it to do what I wanted, but still having mechanical issues. Not anything on the firmware side.<br />
<br />
Thanks</div></blockquote>
<br />
Forgot to ask, where are your endstops located?]]></description>
            <dc:creator>Mach</dc:creator>
            <category>Prusa i3 and variants</category>
            <pubDate>Sat, 11 Jun 2016 17:12:21 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?406,670986,673456#msg-673456</guid>
            <title>Re: Connection issues w/ Folger Tech 2020</title>
            <link>https://reprap.org/forum/read.php?406,670986,673456#msg-673456</link>
            <description><![CDATA[ Mach,<br />
<br />
Sorry for the late response. Here is my configuration.h in a link:<br />
<br />
[<a href="http://pastebin.com/piCnmNmv" target="_blank"  rel="nofollow">pastebin.com</a>]<br />
<br />
You could probably tell me for sure, but I think that I already downloaded that version and that's how I got it to do what I wanted, but still having mechanical issues. Not anything on the firmware side.<br />
<br />
Thanks]]></description>
            <dc:creator>schmuck</dc:creator>
            <category>Prusa i3 and variants</category>
            <pubDate>Sat, 11 Jun 2016 12:57:03 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?406,670986,671717#msg-671717</guid>
            <title>Re: Connection issues w/ Folger Tech 2020</title>
            <link>https://reprap.org/forum/read.php?406,670986,671717#msg-671717</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>schmuck</strong><br />
Mach,<br />
<br />
That seemed to be the trick, however now I am running into issues with the stepper motors. The instructions fail to say that it doesn't work perfect after that last step, or at least that's how its going in my case. My z axis motors don't want to work in sync with each other. The one closest to the ramps board seems to work better than the of the one of the filament spool side. <br />
<br />
My y axis doesn't want to do anything that it is being told. It just jiggles back and forth when trying to move it in repetier and even with the lcd. I have messed with the current flow going to the motor and it doesn't seem to do anything no matter which way I turn it. The repetier also doesn't seem to know where the endstops are because there motor will move one direction but when I try and to move the other direction it says that it engaged the endstop. Giving me this error:<br />
<br />
echo:endstops hit:  X: xx <br />
<br />
where the xx is the number that the host thinks that it is hitting the endstop at. I am getting this for all 3 axis so I'm guessing its something in the config.h that I will be able to change I just don't know what it is. <br />
<br />
I feel like there is some faulty equipment in there, I just have no idea what it would be and what problem that it would be causing. I have already had a fan that doesn't work so I wouldn't be surprised if it wasn't the only thing. <br />
<br />
Anything helps. I just wanna see it print something!<br />
<br />
Thank you so much!<br />
Schmuck</div></blockquote>
<br />
The problems you are having with the X and Y axis are well known problems first time users of this printer come across. I forgot the exact solutions to the problems, but I believe you can find them <a href="http://folgertech.wikia.com/wiki/Main_Page" target="_blank"  rel="nofollow">Here</a><br />
under "Marlin Firmware Upgrade". I would highly suggest changing over to <a href="https://github.com/therippa/Marlin" target="_blank"  rel="nofollow">This</a> version of marlin, since the version that FT has is way outdated, and is lacking important features. Repetier-host also has some things that have to be properly configured for the printer to work. If you could paste your config.h file to pastebin and give a link to it, I could take a look and give some more info from there.]]></description>
            <dc:creator>Mach</dc:creator>
            <category>Prusa i3 and variants</category>
            <pubDate>Mon, 06 Jun 2016 15:04:18 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?406,670986,671107#msg-671107</guid>
            <title>Re: Connection issues w/ Folger Tech 2020</title>
            <link>https://reprap.org/forum/read.php?406,670986,671107#msg-671107</link>
            <description><![CDATA[ Mach,<br />
<br />
That seemed to be the trick, however now I am running into issues with the stepper motors. The instructions fail to say that it doesn't work perfect after that last step, or at least that's how its going in my case. My z axis motors don't want to work in sync with each other. The one closest to the ramps board seems to work better than the of the one of the filament spool side. <br />
<br />
My y axis doesn't want to do anything that it is being told. It just jiggles back and forth when trying to move it in repetier and even with the lcd. I have messed with the current flow going to the motor and it doesn't seem to do anything no matter which way I turn it. The repetier also doesn't seem to know where the endstops are because there motor will move one direction but when I try and to move the other direction it says that it engaged the endstop. Giving me this error:<br />
<br />
echo:endstops hit:  X: xx <br />
<br />
where the xx is the number that the host thinks that it is hitting the endstop at. I am getting this for all 3 axis so I'm guessing its something in the config.h that I will be able to change I just don't know what it is. <br />
<br />
I feel like there is some faulty equipment in there, I just have no idea what it would be and what problem that it would be causing. I have already had a fan that doesn't work so I wouldn't be surprised if it wasn't the only thing. <br />
<br />
Anything helps. I just wanna see it print something!<br />
<br />
Thank you so much!<br />
Schmuck]]></description>
            <dc:creator>schmuck</dc:creator>
            <category>Prusa i3 and variants</category>
            <pubDate>Sat, 04 Jun 2016 17:22:36 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?406,670986,671014#msg-671014</guid>
            <title>Re: Connection issues w/ Folger Tech 2020</title>
            <link>https://reprap.org/forum/read.php?406,670986,671014#msg-671014</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>schmuck</strong><br />
Hey guys,<br />
<br />
So I finally got my printer all built and ready to go except the fan that it came with doesn't seem to want to work. Other than that everything seems to be running according to plan. All lights and displays are coming on. Seemed to be going just fine until I got to the Repetier part. I uploaded the firmware that folger tech had on their google drive and all I got was an error on my Repetier saying something to the effect of "no connection-- forcing start" and nothing starts. Changed the baud rate to 11520 on all parts of my system and then it says there is a fatal error or does the same thing. Can't tell you how many times I have done this and still got the same result. So any tips or suggestions would be great! I am pretty new and don't know much about coding in general. If there is anything else I need to do or that I need to upload or tell you guys so that it will help you to help me. <br />
<br />
Thanks!</div></blockquote>
<br />
Make sure to change the transfer protocol in repetier to ASCII (repetier host &gt; printer settings &gt; connection &gt; transfer protocol). Also make sure that you are using the proper port.]]></description>
            <dc:creator>Mach</dc:creator>
            <category>Prusa i3 and variants</category>
            <pubDate>Sat, 04 Jun 2016 10:13:36 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?406,670986,670986#msg-670986</guid>
            <title>Connection issues w/ Folger Tech 2020</title>
            <link>https://reprap.org/forum/read.php?406,670986,670986#msg-670986</link>
            <description><![CDATA[ Hey guys,<br />
<br />
So I finally got my printer all built and ready to go except the fan that it came with doesn't seem to want to work. Other than that everything seems to be running according to plan. All lights and displays are coming on. Seemed to be going just fine until I got to the Repetier part. I uploaded the firmware that folger tech had on their google drive and all I got was an error on my Repetier saying something to the effect of "no connection-- forcing start" and nothing starts. Changed the baud rate to 11520 on all parts of my system and then it says there is a fatal error or does the same thing. Can't tell you how many times I have done this and still got the same result. So any tips or suggestions would be great! I am pretty new and don't know much about coding in general. If there is anything else I need to do or that I need to upload or tell you guys so that it will help you to help me. <br />
<br />
Thanks!]]></description>
            <dc:creator>schmuck</dc:creator>
            <category>Prusa i3 and variants</category>
            <pubDate>Sat, 04 Jun 2016 08:40:47 -0400</pubDate>
        </item>
    </channel>
</rss>
