From e8c92e0a953541ef0a68a79818ad52e3e2c633fa Mon Sep 17 00:00:00 2001
From: ZetaPhoenix <jon.pannell@gmail.com>
Date: Sun, 9 Sep 2012 16:06:02 -0700
Subject: [PATCH] Missing #else in temperature.cpp prevented reading bed temp
 when TEMP_BED_PIN <7.  Thanks to Leland Wallace for helping me track this
 down via "Sesame Street" coding (what is not like the other)

---
 Marlin/temperature.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Marlin/temperature.cpp b/Marlin/temperature.cpp
index 7307b24aa8..a0413f710e 100644
--- a/Marlin/temperature.cpp
+++ b/Marlin/temperature.cpp
@@ -885,6 +885,8 @@ ISR(TIMER0_COMPB_vect)
       #if (TEMP_BED_PIN > -1)
         #if TEMP_BED_PIN > 7
           ADCSRB = 1<<MUX5;
+        #else
+          ADCSRB = 0;
         #endif
         ADMUX = ((1 << REFS0) | (TEMP_BED_PIN & 0x07));
         ADCSRA |= 1<<ADSC; // Start conversion