<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Display knob will not change menu</title>
        <description> I&#039;ll try this in a more general topic. I have a Folgertech 2020 and had an issue with the RAMPS board. That issue caused a fuse to blow on the power supply. I&#039;ve replaced the power supply with a new one, new RAMPS board, and new 12864 display and when I press the know, it will beep and change to the menu, but turning the know will not change the menus or allow you to select anything. I&#039;ve swapped various hardware around since I have several of each as spares, but can&#039;t get it to work. I&#039;ve got new parts coming on Monday, but would like to know if the knob is controlled by the RAMPS board or the Mega. 

Anyone know?</description>
        <link>https://reprap.org/forum/read.php?406,719893,719893#msg-719893</link>
        <lastBuildDate>Wed, 10 Jun 2026 17:22:43 -0400</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://reprap.org/forum/read.php?406,719893,822786#msg-822786</guid>
            <title>Re: Display knob will not change menu</title>
            <link>https://reprap.org/forum/read.php?406,719893,822786#msg-822786</link>
            <description><![CDATA[ hi, <br />
<br />
i had a same problem as author and your comment helped. seems like BTN_EN1 is fried, constantly connected to the ground. <br />
<br />
found a identically looking replacement from some arduino learning kit, gonna try to exchange it.<br />
<br />
thanks]]></description>
            <dc:creator>medvedisko</dc:creator>
            <category>Prusa i3 and variants</category>
            <pubDate>Sun, 20 May 2018 13:01:46 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?406,719893,720552#msg-720552</guid>
            <title>Re: Display knob will not change menu</title>
            <link>https://reprap.org/forum/read.php?406,719893,720552#msg-720552</link>
            <description><![CDATA[ You have thermistors connected? Both of them?<br />
Marlin will "lock up" when temperatures are out of set range.]]></description>
            <dc:creator>Veesta</dc:creator>
            <category>Prusa i3 and variants</category>
            <pubDate>Sun, 06 Nov 2016 11:54:56 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?406,719893,720302#msg-720302</guid>
            <title>Re: Display knob will not change menu</title>
            <link>https://reprap.org/forum/read.php?406,719893,720302#msg-720302</link>
            <description><![CDATA[ dead mega io pins<br />
miss configured firmware<br />
bad connector on the ramps<br />
bad soldering on the ramps<br />
bad soldering on the mega<br />
broken copper traces on the ramps<br />
broken copper traces on the mega<br />
ramps not fully seated on the mega<br />
broken knob<br />
<br />
lots to check...<br />
<br />
the knob is really two devices in one, a switch activated by pushing the knob in and a rotary encoder<br />
If you take a look at [<a href="http://reprap.org/mediawiki/images/5/51/RRD_FULL_GRAPHIC_SMART_CONTROLER_SCHEMATIC.pdf" target="_blank"  rel="nofollow">reprap.org</a>] at the bottom left is a device BC111E5244B2  this is is the switch/encoder<br />
<br />
from gnd to btn-en1 and gnd btn-en2  it send out the encoder signals<br />
A and B in this image<br />
<div id="div_72edef8e965a01bc63a33e68c29d4f97"
     class="mod_embed_images"
     style="width:354px">

  

    
      
    

    <div id="imagediv_72edef8e965a01bc63a33e68c29d4f97" class="mod_embed_images_image"
         style="width:354px; height:230px">

    

    <a href="http://playground.arduino.cc/uploads/Main/RotaryEncoderWaveform.gif">
        <img src="/forum/thumbcache/e8b/a00/317/7dd/fc1/2b1/c42/9c6/565/736/d3_800x400.gif"
             width="354"
             height="230"
             id="image_72edef8e965a01bc63a33e68c29d4f97"
             alt="RotaryEncoderWaveform.gif"
             title="RotaryEncoderWaveform.gif"/>
    </a>

    

    </div>

    <div class="mod_embed_images_info " id="info_72edef8e965a01bc63a33e68c29d4f97"
      >
      <a id="link_72edef8e965a01bc63a33e68c29d4f97" href="http://playground.arduino.cc/uploads/Main/RotaryEncoderWaveform.gif">RotaryEncoderWaveform.gif</a>
    </div>

  

 </div>


<script type="text/javascript">
mod_embed_images_loadimage('72edef8e965a01bc63a33e68c29d4f97', '/forum/thumbcache/e8b/a00/317/7dd/fc1/2b1/c42/9c6/565/736/d3_800x400.gif', 'http://playground.arduino.cc/uploads/Main/RotaryEncoderWaveform.gif', 'https://reprap.org/forum/addon.php?406,module=embed_images,check_scaling=1,url=http%3A%2F%2Fplayground.arduino.cc%2Fuploads%2FMain%2FRotaryEncoderWaveform.gif', '', 720302, 800, 400, 'Loading image ...', false);
</script>
<br />
<br />
You need to put a multimeter on gnd and continuity on btn-en1 and slowly spin the knob, does the meter change from open to closed over and over?<br />
then test put a multimeter on gnd and continuity on btn-en2 and slowly spin the knob, does the meter change from open to closed over and over?<br />
If these two tests pass then the actual encoder is working. <br />
<br />
pins_ramps.h tell me <br />
<br />
    #if ENABLED(REPRAP_DISCOUNT_SMART_CONTROLLER)<br />
      #define BEEPER_PIN 37<br />
<br />
      #define BTN_EN1 31<br />
      #define BTN_EN2 33<br />
#define BTN_ENC 35<br />
<br />
so its connected to pins 31 and 33<br />
<br />
so check continuity from the btn-en1 threw to pin 31 (or 33) on the ramps and check continuity from btn-en2 threw to pin 33 (or 31)<br />
<br />
If that all looks good, maybe your firmware is miss configured.<br/>]]></description>
            <dc:creator>Dust</dc:creator>
            <category>Prusa i3 and variants</category>
            <pubDate>Sun, 06 Nov 2016 04:49:21 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?406,719893,720006#msg-720006</guid>
            <title>Re: Display knob will not change menu</title>
            <link>https://reprap.org/forum/read.php?406,719893,720006#msg-720006</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Dust</strong><br />
nothing is "controlled" by the ramps... consider the ramps as a interface layer, connecting the physical world to the mega<br />
<br />
In the case of the knob, its wired threw the ramps directly to the mega io pins.</div></blockquote>
<br />
So any idea as to what could be causing it to not work?]]></description>
            <dc:creator>randym</dc:creator>
            <category>Prusa i3 and variants</category>
            <pubDate>Sun, 06 Nov 2016 00:44:52 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?406,719893,720003#msg-720003</guid>
            <title>Re: Display knob will not change menu</title>
            <link>https://reprap.org/forum/read.php?406,719893,720003#msg-720003</link>
            <description><![CDATA[ nothing is "controlled" by the ramps... consider the ramps as a interface layer, connecting the physical world to the mega<br />
<br />
In the case of the knob, its wired threw the ramps directly to the mega io pins.]]></description>
            <dc:creator>Dust</dc:creator>
            <category>Prusa i3 and variants</category>
            <pubDate>Sat, 05 Nov 2016 23:05:02 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?406,719893,719893#msg-719893</guid>
            <title>Display knob will not change menu</title>
            <link>https://reprap.org/forum/read.php?406,719893,719893#msg-719893</link>
            <description><![CDATA[ I'll try this in a more general topic. I have a Folgertech 2020 and had an issue with the RAMPS board. That issue caused a fuse to blow on the power supply. I've replaced the power supply with a new one, new RAMPS board, and new 12864 display and when I press the know, it will beep and change to the menu, but turning the know will not change the menus or allow you to select anything. I've swapped various hardware around since I have several of each as spares, but can't get it to work. I've got new parts coming on Monday, but would like to know if the knob is controlled by the RAMPS board or the Mega. <br />
<br />
Anyone know?]]></description>
            <dc:creator>randym</dc:creator>
            <category>Prusa i3 and variants</category>
            <pubDate>Sat, 05 Nov 2016 11:52:23 -0400</pubDate>
        </item>
    </channel>
</rss>
