I've got 5v correctly powering the board, and have about 2.8v on the signal lead headed into A3.// 100 is AD595
// 101 is MAX6675
// 102 is MAX31855
#define EXT0_TEMPSENSOR_TYPE 100
// Analog input pin for reading temperatures or pin enabling SS for MAX6675
#define EXT0_TEMPSENSOR_PIN A3
// Which pin enables the heater
#define EXT0_HEATER_PIN HEATER_0_PIN
#define EXT0_STEP_PIN E0_STEP_PIN
#define EXT0_DIR_PIN E0_DIR_PIN
// set to false/true for normal / inverse direction
#define EXT0_INVERSE true
#define EXT0_ENABLE_PIN E0_ENABLE_PIN
// For Inverting Stepper Enable Pins (Active Low) use 0, Non Inverting (Active High) use 1
#define EXT0_ENABLE_ON false
// The following speed settings are for skeinforge 40+ where e is the
// length of filament pulled inside the heater. For repsnap or older
// skeinforge use higher values.
// Overridden if EEPROM activated.
I've done a little more googling and have heard some horror stories about pins.h needing to be modified and flipping other switches in the firmware. ( http://forums.reprap.org/read.php?267,182192 )
Could this be a pins problem? The temp value on the display is pretty consistent at 360 whether A3 is plugged in or not. I'm suspicious that there's something disconnected elsewhere in the firmware.
I've also attached the code that I'm uploading. It's a fresh copy of the SeeMe git with 2 lines (pasted above) changed for the thermocouple, and the motor current also modified. Otherwise, bone stock.