RC7_MPCNC_LCD_9916. No heated bed

https://www.v1engineering.com/wp-content/uploads/2015/12/RC7_MPCNC_LCD_9916.zip

How to enable heated bed in marlin RC7 Mpcnc w/ LCD. Does not show in repetier host, only heated Extruder shown.

You have to enable the bed thermistor near the top of the config.h in the firmware. Then reflash your arduino.

Hi… can’t seem to find it, can you show which line in the firmaware.

Thanks

//#define DUMMY_THERMISTOR_999_VALUE 100
// :{ ‘0’: “Not used”,‘1’:“100k / 4.7k - EPCOS”,‘2’:“200k / 4.7k - ATC Semitec 204GT-2”,‘3’:“Mendel-parts / 4.7k”,‘4’:“10k !! do not use for a hotend. Bad resolution at high temp. !!”,‘5’:“100K / 4.7k - ATC Semitec 104GT-2 (Used in ParCan & J-Head)”,‘6’:“100k / 4.7k EPCOS - Not as accurate as Table 1”,‘7’:“100k / 4.7k Honeywell 135-104LAG-J01”,‘8’:“100k / 4.7k 0603 SMD Vishay NTCS0603E3104FXT”,‘9’:“100k / 4.7k GE Sensing AL03006-58.2K-97-G1”,‘10’:“100k / 4.7k RS 198-961”,‘11’:“100k / 4.7k beta 3950 1%”,‘12’:“100k / 4.7k 0603 SMD Vishay NTCS0603E3104FXT (calibrated for Makibox hot bed)”,‘13’:“100k Hisens 3950 1% up to 300°C for hotend 'Simple ONE ’ & hotend ‘All In ONE’”,‘20’:“PT100 (Ultimainboard V2.x)”,‘51’:“100k / 1k - EPCOS”,‘52’:“200k / 1k - ATC Semitec 204GT-2”,‘55’:“100k / 1k - ATC Semitec 104GT-2 (Used in ParCan & J-Head)”,‘60’:“100k Maker’s Tool Works Kapton Bed Thermistor beta=3950”,‘66’:“Dyze Design 4.7M High Temperature thermistor”,‘70’:“the 100K thermistor found in the bq Hephestos 2”,‘71’:“100k / 4.7k Honeywell 135-104LAF-J01”,‘147’:“Pt100 / 4.7k”,‘1047’:“Pt1000 / 4.7k”,‘110’:“Pt100 / 1k (non-standard)”,‘1010’:“Pt1000 / 1k (non standard)”,’-3’:“Thermocouple + MAX31855 (only for sensor 0)”,’-2’:“Thermocouple + MAX6675 (only for sensor 0)”,’-1’:“Thermocouple + AD595”,‘998’:“Dummy 1”,‘999’:“Dummy 2” }
#define TEMP_SENSOR_0 11 //MPCNC
#define TEMP_SENSOR_1 0
#define TEMP_SENSOR_2 0
#define TEMP_SENSOR_3 0
#define TEMP_SENSOR_BED 0

Change the last zero to 11 from most common thermistors.

#define TEMP_SENSOR_BED 11

Got it… thanks Sir