1

Topic: Max temp help

So i up graded my hot end on my SD4 to the one from DisTech,
it works very well but for ABS 229* is a little bit low, i tried going higher but the firmware dont let me as is it shuts every thing down at 230*. Also would like to use other plastics to in the near future and this is also going to be a problem. So any help on changing the max temp. in the firmware? Thanks

2

Re: Max temp help

It's been covered a bunch, have a search and check out the WIKI.  You can check my recent posts I have listed the instructions several times in the last couple of weeks.

Printit Industries Model 8.10 fully enclosed CoreXY, Chamber heat
3-SD3's & a Workbench all fully enclosed, RH-Slic3r Win7pro, E3D V6, Volcano & Cyclops Hot End
SSR/500W AC Heated Glass Bed, Linear bearings on SS rods. Direct Drive Y-axis, BulldogXL
Thanks to all for your contributions

3

Re: Max temp help

Ok thanks

4

Re: Max temp help

Here is the firmware https://github.com/ozadr1an/Solidoodle- … in_v1_beta


These instructions I compiled after talking with Adrian, and reading the existing wiki (http://wiki.solidoodle.com/update-firmware)
A: Download the Arduino IDE (www.arduino.cc)
B: Download Teensyduino (http://pjrc.com/teensy/td_download.html)
C: Download the firmware  (https://github.com/ozadr1an/Solidoodle- … in_v1_beta)
D: Download the upload BootloaderHID (http://blog.lincomatic.com/wp-content/u … derHID.zip)
1.    Install Arduiono IDE
2.    By default it installed in C:/program files/Arduino (or program files C:/program files(x86)/Arduino)
3.    Install Teenyduino
4.    It will ask you where the arduino install is, point it to the above folder
5.    Unzip the firmware file to a folder you will remember
6.    Open the Arduino.exe (shortcut put on your desktop after the Arduino IDE installed
7.    Click Tools, Board (might say Board:Arduino Uno) and select the Teensy ++2.0
8.    Click Tools, Serial Port, and change it to the port of your printer
(If you are unsure, and using windows, click the start button, right click computer, click properties, click device manager, and click on ports. Your printer will be the one listed as “USB serial port (Com X) write down whatever the x is, and put it in step 8)
9.    Click File – Open
10.    Browse to the folder you extracted in step 5, select the file (in the marlin folder) named Configureation.H , double click it or select it and click open
11.    You will notice that there are several tabs across the top: Marlin, Configuration.H, ConfigurationStore.cpp etc, select the Configuration.H tab
12.    Scroll down until you see (in black as the grey is comments and effects nothing)
#define SOLIDOODLE_VERSION 2 (line 22 on mine) Change to #define SOLIDOODLE_VERSION 3                 
13.    #define MOTHERBOARD  62 (line #76 on mine…you can tell the line by clicking the code, and looking at the bottom left, a number will be there, this is the line of code)
Change it to read #define MOTHERBOARD 81
14.    find #define TEMP_SENSOR_0 1 (line 120 ) and change to #define TEMP_SENSOR_0 6
15.    find #define HEATER_0_MAXTEMP 225 (line145)  change to #define HEATER_0_MAXTEMP 350
16.    350C is the max the thermister can is good for, the hotend can go higher, but you’ll need a thermocouple instead of the thermister
17.    In the top arduino menu, click Sketch, then Verify/compile
18.    If you installed Teensyduino, it will pop up a window, just close it
19.    If your sketch does not report errors and simply gives you the Binary sketch size and memory use, it is safe to upload. If it reports errors, you have made a syntax error, and should recheck those lines you changed.
20.    Before doing the final compile, click file – save (if you do not, it will not upload the changes)
21.    Hold down SHIFT and click Compile
22.    There has been a .hex file created. Marlin.cpp.hex, in my case (windows 7) it is under C:/users/whateverYourProfileNameIs/AppData/Local/Temp….it will be in the folder
named build-xxxxxxxxx.tmp (the x’s are a string of numbers) created today. You must have view hidden or system files enabled in folder options (control panel. Have view folders by icon instead of category enabled, folder options,view, check Show hidden files and folders)
23.    Unzip the BootloaderHID.Zip (step D) to a folder
24.    Copy the Marlin.cpp.hex file, and past it in the folder above (the bootloaderHID folder
25.    Make sure your computer is connected to the printer via usb cable
26.    Add a jumper to the BOOT pins on the printboard (back of the printer) or bend the 2 pins so they are touching , then press the RESET button
27.    Open a new command window (click the windows start button, and in the search programs field (windows vista or newer) type CMD.
28.    Within the CMD window, navigate to the folder you unzipped the BootleaderHID to in step 23
29.     Type “hid_bootloader_cli -mmcu=at90usb1286 -w -v Marlin.cpp.hex” (no quotations)
30.    It should say something like “read Marlin.cpp.hex xx bytes, xx% usage, found halfkay bootloader, programming…………………..Booting
31.    Remove the jumper, or unbend the boot pins on the printboard (back of the printer)
32.    Press reset
33.    Verify that you have updated them, start up Repetier Host.
34.    Click Connect
35.    Look at the bottom of the screen, you will see a greeting msg when you connect it should now read
02:09:14.238 : echo:Unknown command: ""
02:09:14.405 : FIRMWARE_NAME:Marlin V1; Sprinter/grbl mashup for gen6 FIRMWARE_URL:http://github.com/mlaws/solidoodle2-marlin/ PROTOCOL_VERSION:1.0 MACHINE_TYPE:Solidoodle EXTRUDER_COUNT:1
02:09:14.405 : echo:Active Extruder: 0
If you see the address changed to github.com instead of solidoodle, you know you're golden

Printit Industries Model 8.10 fully enclosed CoreXY, Chamber heat
3-SD3's & a Workbench all fully enclosed, RH-Slic3r Win7pro, E3D V6, Volcano & Cyclops Hot End
SSR/500W AC Heated Glass Bed, Linear bearings on SS rods. Direct Drive Y-axis, BulldogXL
Thanks to all for your contributions

5

Re: Max temp help

ok thanks, and this is for windows right?

6

Re: Max temp help

kwebersole wrote:

ok thanks, and this is for windows right?

Yes for windows

Printit Industries Model 8.10 fully enclosed CoreXY, Chamber heat
3-SD3's & a Workbench all fully enclosed, RH-Slic3r Win7pro, E3D V6, Volcano & Cyclops Hot End
SSR/500W AC Heated Glass Bed, Linear bearings on SS rods. Direct Drive Y-axis, BulldogXL
Thanks to all for your contributions

7

Re: Max temp help

Ok well it all worked fine up untill the uploading, every time i try to navigate to the bootloaderhid file it says it is not a internal or external command, sorry i suck at using command promt, is there any way i can up load it via arduino?

8

Re: Max temp help

Unfortunately no, are you sure you are navigating to the correct folder?

Printit Industries Model 8.10 fully enclosed CoreXY, Chamber heat
3-SD3's & a Workbench all fully enclosed, RH-Slic3r Win7pro, E3D V6, Volcano & Cyclops Hot End
SSR/500W AC Heated Glass Bed, Linear bearings on SS rods. Direct Drive Y-axis, BulldogXL
Thanks to all for your contributions

9

Re: Max temp help

I have the folder in on my desktop with the hex file inside it, and every time i type in anything i get that

10

Re: Max temp help

I did try putting "cd" before it and now it says: The system cannot find the path specified

11

Re: Max temp help

Give me a bit I'll find someone to help you out.  I'm working from my phone.

Printit Industries Model 8.10 fully enclosed CoreXY, Chamber heat
3-SD3's & a Workbench all fully enclosed, RH-Slic3r Win7pro, E3D V6, Volcano & Cyclops Hot End
SSR/500W AC Heated Glass Bed, Linear bearings on SS rods. Direct Drive Y-axis, BulldogXL
Thanks to all for your contributions

12

Re: Max temp help

ok thanks man, i am sure once i get it, i will be like duh should have tried that before. i also saw somewhere on here that there was a guy that wrote an app for it.

13

Re: Max temp help

Jagowilson will get to you in a few minutes.

Printit Industries Model 8.10 fully enclosed CoreXY, Chamber heat
3-SD3's & a Workbench all fully enclosed, RH-Slic3r Win7pro, E3D V6, Volcano & Cyclops Hot End
SSR/500W AC Heated Glass Bed, Linear bearings on SS rods. Direct Drive Y-axis, BulldogXL
Thanks to all for your contributions

14

Re: Max temp help

Assuming you're on Windows 7 or 8, you want to get to your desktop using commands like in the screenshot below. Just as an example I created a folder on my desktop called test and navigated to it. You can use 'dir' to list files, and you can use TAB to autocomplete if you type in part of a folder name.

Post's attachments

cmd.png 19.77 kb, file has never been downloaded. 

You don't have the permssions to download the attachments of this post.

15 (edited by kwebersole 2015-02-26 18:14:16)

Re: Max temp help

i am on windows 7, i was able to locate it so now what?

16 (edited by jagowilson 2015-02-26 18:24:13)

Re: Max temp help

Follow the remainder of the instructions. Does the command in step 29 work?

17 (edited by kwebersole 2015-02-26 18:31:31)

Re: Max temp help

jagowilson wrote:

Follow the remainder of the instructions. Does the command in step 29 work?

no it dont here is a pic:

Post's attachments

Untitled.png
Untitled.png 46.44 kb, file has never been downloaded. 

You don't have the permssions to download the attachments of this post.

18

Re: Max temp help

you don't need the 'cd' this time. 'cd' is short for Change Directory

19

Re: Max temp help

Thank you it was my jumper that was not letting me do it, thanks very much for all your time.

20

Re: Max temp help

glad we could help!

21

Re: Max temp help

also quik question while i am here, not a big thing but, everytime i home all the axis i caint move them manually untill i move them against the endstop. i am using the latest version of repetier host in windows

22

Re: Max temp help

not quite sure i understand. if you home all the axes, and try to move any of them, it doesn't move until you do something with the endstops? or are you saying you can't move them until you home them? if the latter, that's normal.

23

Re: Max temp help

sorry, ok for example if i home all the axis and try to move the X axis it wont move untill i move i 1mm against the endstop and it say "echo:endstop hit X:195.00" then i can move it freely, is this normal?

24

Re: Max temp help

when you home all the axes it doesn't say "endstops hit" the first time? if that is the case i would expect that the motor would start grinding because it moves towards the endstop until it hits it.

25

Re: Max temp help

no it dont and no grinding at all, it is almost like a glitch as it dont do it on my macbook pro, like i said not a big deal just something if i could fix, i would