-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Description
need to replace temp2analogh() with temp2analogBed() in Sprinter_Sanguinololu/Sprinter_Sanguinololu.pde on line 889
code for M190 (currently) is...
case 190: // M190 - Wait bed for heater to reach target.
#if TEMP_1_PIN > -1
if (code_seen('S')) target_bed_raw = temp2analogh(code_value());
code for M140 (which works) is...
case 140: // M140 set bed temp
#if TEMP_1_PIN > -1 || defined BED_USES_AD595
if (code_seen('S')) target_bed_raw = temp2analogBed(code_value());
#endif
break;
Metadata
Metadata
Assignees
Labels
No labels