diff options
-rw-r--r-- | Tonokip_Firmware/Tonokip_Firmware.pde | 7 | ||||
-rw-r--r-- | Tonokip_Firmware/configuration.h | 1 | ||||
-rw-r--r-- | Tonokip_Firmware/pins.h | 2 |
3 files changed, 6 insertions, 4 deletions
diff --git a/Tonokip_Firmware/Tonokip_Firmware.pde b/Tonokip_Firmware/Tonokip_Firmware.pde index e193265..ce670ca 100644 --- a/Tonokip_Firmware/Tonokip_Firmware.pde +++ b/Tonokip_Firmware/Tonokip_Firmware.pde @@ -669,14 +669,13 @@ inline void process_commands() bt = analog2tempBed(current_bed_raw); #endif #if (TEMP_0_PIN > -1) || defined (HEATER_USES_MAX6675) - Serial.print("T:"); - Serial.println(tt); - #if TEMP_1_PIN > -1 - Serial.print("ok T:"); Serial.print(tt); + #if TEMP_1_PIN > -1 Serial.print(" B:"); Serial.println(bt); + #else + Serial.println(); #endif #else Serial.println("No thermistors - no temp"); diff --git a/Tonokip_Firmware/configuration.h b/Tonokip_Firmware/configuration.h index a658412..2bd4e6a 100644 --- a/Tonokip_Firmware/configuration.h +++ b/Tonokip_Firmware/configuration.h @@ -93,6 +93,7 @@ float e_steps_per_unit = 16; float max_feedrate = 200000; //mmm, acceleration! float max_z_feedrate = 120; +//For SAE Prusa mendeel float z_steps_per_unit = should be 3200/1.411 for 5/16-18 rod and 3200/1.058 for 5/16-24 //float x_steps_per_unit = 10.047; //float y_steps_per_unit = 10.047; //float z_steps_per_unit = 833.398; diff --git a/Tonokip_Firmware/pins.h b/Tonokip_Firmware/pins.h index 3b15ae2..9cdceb1 100644 --- a/Tonokip_Firmware/pins.h +++ b/Tonokip_Firmware/pins.h @@ -450,6 +450,8 @@ #define TEMP_0_PIN 7 // MUST USE ANALOG INPUT NUMBERING NOT DIGITAL OUTPUT NUMBERING!!!!!!!!! (pin 33 extruder) #define TEMP_1_PIN 6 // MUST USE ANALOG INPUT NUMBERING NOT DIGITAL OUTPUT NUMBERING!!!!!!!!! (pin 34 bed) +#define SDPOWER -1 +#define SDSS 31 #else |