Hi, I've been messing around with trying to achieve true color mixing with my diamond hotend modified to fix my bigbox with no success. I'm looking for folks more savvy with programing then myself to help me with this. I have tried the configuration tool and can't seam to get heaters to respond and I can't test the extruders with out that. I've checked the pin settings also with no success. Anyone interested? Thanks, Jeremy
Hi Tom, I'm currently working on getting Marlin to color mix, it looks like the latest update will support it. My other project is to get LED that attach to the RUMBA board and can be controlled with Gcode. I really want them to turn on to show heating / cooling. Jeremy
Jeremy, I suppose you are using rgb ledstrips for that? I think this is possible, but you'll need to add some code... First thing to do is create a lookup table where the temperature and rgb colors are defined. Then do a lookup for the current temperature and compare in the lookup table. Set the rgb value to 3 unused pins of the rumba and your done (on the software side that is). For the hardware you are going to have to make some sort of driver which sets the ledstrip to the right color... I'll try to look if I can find some examples of both to get you started when I get back home
I found this link http://www.instructables.com/id/3D-Printer-RGB-LED-Feedback/?ALLSTEPS seams very doable and the code verifies with current Marlin. I need to figure out what pins to use on the RUMBA.
You can use pins 12, 13 and 14from the EXP3 header In your code you should use pin 63 for pin12(on exp3), pin 60 for pin13(on exp3) and pin 59 for pin14(on exp3) Have fun and don't forget to share
I was looking at the exp3 for pins, it's like you read my mind. Sure will share, once I get it working. Thank again for your help. Have a good Thanksgiving!!
HI Tom, So I'm starting to get the code to work, but I'm having an issue with the Pins. I used the ones you suggested, but they don't seam to respond. I've tried it with the lights attached and just with a volt meter. No change when the temp changes. I changed the pins to the Fan 0 and Fan 1 pin (7&8) and it works. What am I doing wrong?
have you tried swiching the connections? LEDs are directional(theyre diodes, that's basically their purpose)
Maybe I should ask this first, this is what the code should look like in the Pins.h file for the above mentioned pins? #define STAT_LED_RED 63 #define STAT_LED_BLUE 59 #define STAT_LED_GREEN 60
I think the reason it does work on the fan output is because this can handle the current needed for the leds. You'll probably need to install a npn transistor or something...
Yea I just ordered some new ones, I had tried some initially but obviously they didn't work. I was talking with a moderator and he sugested using PWM 1 and PWM 2 on exp3. I'm just confused with the pin map, he said pin 5 & 6 are what I need. Reading the map you sent it's pin 1 and 5. I'm confused .