Quote Originally Posted by Carrot_or_Stick View Post
...
Dislikes:
Turning the knob to adjust settings works in the opposite direction expected. When rotating clockwise values decrease instead of increase.
What type of LCD Display do you have? There was some clean up of the LCD Panel code and there was a lot of discussion about the fact the knob turned the wrong way from what people intuitively think it should do. There was talk of making it configurable but because of all the other changes going on... It was decided to leave it alone until things settle down.

With that said, if you go into ultralcd.cpp and go to about line # 1248 you will see this:

encoderPosition += encoderDiff / ENCODER_PULSES_PER_STEP;

If you change it to:

encoderPosition -= encoderDiff / ENCODER_PULSES_PER_STEP;

I think everything will work the same except the knob will turn the opposite direction.

Quote Originally Posted by Carrot_or_Stick View Post
That's I have so far, but things are working well now after some pains after i forgot to disable max endstops.


Roxy, if you have time I have a question about Marlin in general with the Rumba board. I have an extra thermistor that I want to use as a chamber temperature sensor but I cannot seem to figure out how to set that up in the firmware. Any ideas?
On the extra thermistor, I'm not sure what happens when you enable it because it isn't controlling anything. But you can turn it on by just #define'ing a thermistor type in Configuration.h Probably, I would turn on

#define TEMP_SENSOR_1 0

With a non-zero thermistor type and just see what happens. (This assumes you have a one extruder machine) And at worst case, you can add a line or two to ultralcd.cpp to display the temperature if it doesn't just show up by itself.