|
RAMPS 1.4 Wierid bed temperature behaivour. June 29, 2017 04:59AM |
Registered: 9 years ago Posts: 5 |
int a = 0;
int b = 0;
int c = 0;
void setup() {
Serial.begin(9600);
}
void loop() {
delay(500);
a = analogRead(13);
b = analogRead(14);
c = analogRead(15);
Serial.print("A13: ");
Serial.print(a);
Serial.print("; ");
Serial.print("A14: ");
Serial.print(b);
Serial.print("; ");
Serial.print("A15: ");
Serial.println(c);
}
|
Re: RAMPS 1.4 Wierid bed temperature behaivour. June 29, 2017 06:38AM |
Registered: 9 years ago Posts: 759 |
|
Re: RAMPS 1.4 Wierid bed temperature behaivour. July 02, 2017 04:39AM |
Registered: 9 years ago Posts: 5 |
|
Re: RAMPS 1.4 Wierid bed temperature behaivour. July 02, 2017 06:25AM |
Registered: 9 years ago Posts: 5 |
) on Arduino when i was cleaning heatbed from hairspray residue with razor blade, shorted 12 volts to thermistor terminals, which altered input impedance on that inputs.|
Re: RAMPS 1.4 Wierid bed temperature behaivour. April 12, 2018 09:48AM |
Registered: 8 years ago Posts: 6 |
|
Re: RAMPS 1.4 Wierid bed temperature behaivour. April 12, 2018 12:10PM |
Registered: 9 years ago Posts: 5 |
... #define TEMP_1_PIN 11 // ANALOG NUMBERING -- WAS 15 -- IT'S TOASTED ON MY MACHINE ... #define TEMP_BED_PIN 10 // ANALOG NUMBERING -- WAS 14 -- IT'S TOASTED ON MY MACHINE ...