-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Where to connect AD595 thermocouple pcb??? #41
Comments
Hi @Hobby4life, This will be a case of yes, but... You should be able to use the same pin on the EXP3 connector. What you're looking for is a pin that can be used as an ADC input (analog input). RUMBA+ and RUMBA32 both have two ADC pins on the EXP3 connector, so that they're compatible with most wiring in common. The pinout for the connector is shown here: The ADC pins are PA3 and PA4. Either pin should work, you will just need to define the matching pin in the firmware settings. In firmware, you'll want to:
However, I would recommend against using the AD595 with the RUMBA32 board. AD595 is designed to run on 5V logic, and is capable of driving the ADC output up to 5V and damaging the RUMBA32 board. Because the output voltage is proportional to the thermocouple temperature, this would happen at higher temperatures - so you might damage the RUMBA32 board if the temperature goes above say 300 degrees or so. It looks like the AD8495 is a similar part that runs on 3.3V and is supported in Marlin. If possible, I would recommend changing to a board using that amplifier instead. If you do want to use the AD595, I would recommend adding a protection circuit between the AD595 and the RUMBA32 board - something like the diode clipping circuit shown here. |
Hi,Funny I indeed discovered the same today, PA4 is the pin I need. PA3 is stated as a PWM pin and does not behave like an analog input. so got no luck there on PA3. Indeed about the AD595 runs on 5V and its reference too.. The AD8495 will be the best choice. Thanks! |
I have received a Adafruit AD8495 board last week. Got it to work but......... The Adafruit board uses an internal reference voltage of 1.25v In the temperature.cpp file the calculation for the AD8495 is not correct.
Comment the AD8495 line, and add or replace this line with:
It uses the correct ADC voltage range of 3.3 for calculation and calculates the 1.25v reference voltage of the AD8495 Adafruit board. |
I am trying to connect a AD595 thermocouple pcb.
TEMP_SENSOR_0 -1
On the old 2560 board it could be connected to EXP3.
and in the rumba pins.h file there was a defenition for using TEMP_SENSOR_0 -1 (pin 6)
Now on the Rumba32 I cant seem to find any info how and where to connect the thermocouple pcb.
Any help would be apreciated
The text was updated successfully, but these errors were encountered: