<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Extra temperature monitoring sensors</title>
        <description> Dear forummers,

I am building my own printer using an Arduino mega &amp;amp; ramps 1.4 for my school project.
However, i am required to put in extra temperature monitoring sensors, ideally before and after the extruder heater.
I&#039;ve already used T0 &amp;amp; T1 for bed &amp;amp; hot end thermistors.
Is there any other method for me to expand the usage of ramps?


Thanks</description>
        <link>https://reprap.org/forum/read.php?219,561640,561640#msg-561640</link>
        <lastBuildDate>Fri, 12 Jun 2026 08:12:35 -0400</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://reprap.org/forum/read.php?219,561640,563140#msg-563140</guid>
            <title>Re: :SRe: Extra temperature monitoring sensors</title>
            <link>https://reprap.org/forum/read.php?219,561640,563140#msg-563140</link>
            <description><![CDATA[ Hi Olaf &amp; o_lampe,<br />
<br />
Thanks for your explanation. Yes, the printer is for R &amp; D purposes.<br />
I shall attempt to do it.]]></description>
            <dc:creator>ZedSG</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Sun, 27 Sep 2015 04:08:40 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?219,561640,563132#msg-563132</guid>
            <title>Re: :SRe: Extra temperature monitoring sensors</title>
            <link>https://reprap.org/forum/read.php?219,561640,563132#msg-563132</link>
            <description><![CDATA[ The EEF configuration happens in marlins configuration.h line 65-67<br />
<br />
<pre class="bbcode">
#ifndef MOTHERBOARD
  #define MOTHERBOARD BOARD_RAMPS_13_EEF
#endif</pre>
<br />
Using a second set of arduino/ramps is a quick &amp; dirty solution, but for R &amp; D purpose a pragmatic approach is often the best.<br />
-Olaf]]></description>
            <dc:creator>o_lampe</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Sun, 27 Sep 2015 03:47:43 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?219,561640,562830#msg-562830</guid>
            <title>:SRe: Extra temperature monitoring sensors</title>
            <link>https://reprap.org/forum/read.php?219,561640,562830#msg-562830</link>
            <description><![CDATA[ Hi Olaf, thanks for your input.<br />
Yes, I want to see 2 more temperature sensors.<br />
U mentioned that for the 2nd set board, I need to configure it as EEF, which is in board.h I assumed?<br />
Do I configure it in same Marlin file which I am currently on?]]></description>
            <dc:creator>ZedSG</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Sat, 26 Sep 2015 05:37:56 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?219,561640,562386#msg-562386</guid>
            <title>Re: Extra temperature monitoring sensors</title>
            <link>https://reprap.org/forum/read.php?219,561640,562386#msg-562386</link>
            <description><![CDATA[ If you just want to see two more temperatures, you might use a second set of arduino/ramps/LCD ( configured as EEF )<br />
<br />
If you want to use only one controller and see the temperatures on the same LCD you´d have to modify the code. Also for defining pins as temp-inputs.<br />
If those temps are supposed to <u>control</u> something, you have to write it on your own.<br />
-Olaf]]></description>
            <dc:creator>o_lampe</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Fri, 25 Sep 2015 04:05:56 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?219,561640,562362#msg-562362</guid>
            <title>Re: Extra temperature monitoring sensors</title>
            <link>https://reprap.org/forum/read.php?219,561640,562362#msg-562362</link>
            <description><![CDATA[ Hi enif, thank u for your explanation &amp; suggestion.<br />
I shall look into the configuration.<br />
However for the firmware side, do i need to modify it in sketch or configuration.h?]]></description>
            <dc:creator>ZedSG</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Fri, 25 Sep 2015 02:51:00 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?219,561640,561782#msg-561782</guid>
            <title>Re: Extra temperature monitoring sensors</title>
            <link>https://reprap.org/forum/read.php?219,561640,561782#msg-561782</link>
            <description><![CDATA[ If you just need one additional thermistor, you can just connect it to T2.  If you need to connect more thermistors, you can use any of the non-used analog inputs on connectors AUX-1 (A3, A4) and AUX-2 (A5, A9, A10, A11, A12) and connect the thermistor using the same R=4k7 C=10uF circuit as is used for T0,T1,T2 (see the <a href="http://reprap.org/mediawiki/images/f/f6/RAMPS1.4schematic.png" target="_blank"  rel="nofollow">RAMPS schematics</a>).<br />
<br />
So the hardware part is easy, but you will also need to modify your firmware for whatever you want these temperature sensors to be used for...]]></description>
            <dc:creator>enif</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Wed, 23 Sep 2015 15:26:58 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?219,561640,561640#msg-561640</guid>
            <title>Extra temperature monitoring sensors</title>
            <link>https://reprap.org/forum/read.php?219,561640,561640#msg-561640</link>
            <description><![CDATA[ Dear forummers,<br />
<br />
I am building my own printer using an Arduino mega &amp; ramps 1.4 for my school project.<br />
However, i am required to put in extra temperature monitoring sensors, ideally before and after the extruder heater.<br />
I've already used T0 &amp; T1 for bed &amp; hot end thermistors.<br />
Is there any other method for me to expand the usage of ramps?<br />
<br />
<br />
Thanks]]></description>
            <dc:creator>ZedSG</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Wed, 23 Sep 2015 09:13:15 -0400</pubDate>
        </item>
    </channel>
</rss>
