From 5320906b0b3bae3406f5044eda91e967a7c1bb62 Mon Sep 17 00:00:00 2001
From: Mateusz Krawczuk <mat.krawczuk@gmail.com>
Date: Wed, 6 Dec 2017 12:07:20 +0100
Subject: [PATCH] Update TEMP_BED_PIN in MIGHTYBOARD_REVE

Pin K7 number in fastio1280.h is 69, but it's also ADC15 pin.
To get correct value from ADC reading it should be set as 15.
---
 Marlin/src/pins/pins_MIGHTYBOARD_REVE.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Marlin/src/pins/pins_MIGHTYBOARD_REVE.h b/Marlin/src/pins/pins_MIGHTYBOARD_REVE.h
index 5be9681351..2067c0f3ff 100644
--- a/Marlin/src/pins/pins_MIGHTYBOARD_REVE.h
+++ b/Marlin/src/pins/pins_MIGHTYBOARD_REVE.h
@@ -124,7 +124,7 @@
 //
 // Temperature Sensors
 //
-#define TEMP_BED_PIN        69   // K7
+#define TEMP_BED_PIN        15   // K7 - 69 / ADC15 - 15 
 
 // SPI for Max6675 or Max31855 Thermocouple
 // Uses a separate SPI bus
-- 
GitLab