Repetier 091 for Rostock MAX now available

All things related to the Rostock MAX 3D Printer, the worlds FIRST Delta kit!
User avatar
mhackney
ULTIMATE 3D JEDI
Posts: 5412
Joined: Mon Mar 26, 2012 4:15 pm
Location: MA, USA
Contact:

Re: Repetier 091 for Rostock MAX now available

Post by mhackney »

Yes, I'm running .91.7.

Sublime Layers - my blog on Musings and Experiments in 3D Printing Technology and Art

Start Here:
A Strategy for Successful (and Great) Prints

Strategies for Resolving Print Artifacts

The Eclectic Angler
bubbasnow
ULTIMATE 3D JEDI
Posts: 1064
Joined: Fri Aug 02, 2013 4:24 pm
Location: Dayton, WA

Re: Repetier 091 for Rostock MAX now available

Post by bubbasnow »

were you able to just copy your working configuration.h and pins into the new fw?
User avatar
joecnc2006
Printmaster!
Posts: 150
Joined: Tue May 14, 2013 11:42 am

Re: Repetier 091 for Rostock MAX now available

Post by joecnc2006 »

Why is slic3r so much slower than kisslicer when generating gcode
Joe
http://www.joescnc.com" onclick="window.open(this.href);return false;
User avatar
mhackney
ULTIMATE 3D JEDI
Posts: 5412
Joined: Mon Mar 26, 2012 4:15 pm
Location: MA, USA
Contact:

Re: Repetier 091 for Rostock MAX now available

Post by mhackney »

Yes. The configuration transferred easily. There are just a few more defines in .91.7

Sublime Layers - my blog on Musings and Experiments in 3D Printing Technology and Art

Start Here:
A Strategy for Successful (and Great) Prints

Strategies for Resolving Print Artifacts

The Eclectic Angler
smiley
Printmaster!
Posts: 56
Joined: Sun Oct 06, 2013 8:37 am
Location: Kalamazoo, MI
Contact:

Re: Repetier 091 for Rostock MAX now available

Post by smiley »

ha ha, you said "borked"

I am snickering beer out my nose right now.
User avatar
Eaglezsoar
ULTIMATE 3D JEDI
Posts: 7185
Joined: Sun Apr 01, 2012 5:26 pm

Re: Repetier 091 for Rostock MAX now available

Post by Eaglezsoar »

joecnc2006 wrote:Why is slic3r so much slower than kisslicer when generating gcode
Uncheck the box that says avoid crossing perimeter and it should be much faster. The box is under
layers and perimeters.
“ Do Not Regret Growing Older. It is a Privilege Denied to Many. ”
User avatar
CosplayEngineer
Plasticator
Posts: 7
Joined: Sat Mar 30, 2013 12:08 am

Re: Repetier 091 for Rostock MAX now available

Post by CosplayEngineer »

That just saved me so much time!
inventabuild
Printmaster!
Posts: 137
Joined: Wed May 22, 2013 10:53 pm

Re: Repetier 091 for Rostock MAX now available

Post by inventabuild »

Will I also need to adjust my delta offset (concavity/convexity) or will that stay the same as I calibrated it in the previous version?
User avatar
gestalt73
Printmaster!
Posts: 345
Joined: Wed Aug 07, 2013 11:10 am
Location: Anaheim, CA

re: tweaking segments/s for printing?

Post by gestalt73 »

Hey, has anyone else tinkered with this setting?

Code: Select all

<epr pos="889" type="1" value="180">Segments/s for printing</epr>
It defaults to 180, and I've been curious about it since seeing Flateric's posts with the 1000/s smoothiboard, and Mhachney's observations with moire patterns on the surface finish.

So far I've tried 200 and 300, I'll try reprinting a part with flat surfaces shortly to see if it makes any difference.

I'm printing some small parts for a job, and I'm not noticing any stuttering in the print. All I notice is that the "tone" of the printer has changed a bit.

It looks like the value is actually used in the code too.

Code: Select all

        // Compute number of seconds for move and hence number of segments needed
        //float seconds = 100 * cartesianDistance / (Printer::feedrate * Printer::feedrateMultiply); multiply in feedrate included
        float seconds = cartesianDistance / Printer::feedrate;
#ifdef DEBUG_SPLIT
        Com::printFLN(Com::tDBGDeltaSeconds, seconds);
#endif
        segment_count = RMath::max(1, int(float((cartesianDir & 136)==136 ? EEPROM::deltaSegmentsPerSecondPrint() : EEPROM::deltaSegmentsPerSecondMove()) * seconds));
dizzy1
Noob
Posts: 2
Joined: Fri May 02, 2014 9:51 pm

Re: Repetier 091 for Rostock MAX now available

Post by dizzy1 »

Are there new features in this version to do with accuracy of the thermistors? I noticed that ext0 has type 97 and the bed has type 98 rather than type 8 as in .81.
smiley
Printmaster!
Posts: 56
Joined: Sun Oct 06, 2013 8:37 am
Location: Kalamazoo, MI
Contact:

Re: Repetier 091 for Rostock MAX now available

Post by smiley »

dizzy1 wrote:Are there new features in this version to do with accuracy of the thermistors? I noticed that ext0 has type 97 and the bed has type 98 rather than type 8 as in .81.

<puts on Thermistor Guy hat>

I spent some time digging around in the Configuration.h firmware file over the last two weeks, so I think what I'm about to tell you is correct. You can load Configuration.h and have a look yourself if you like, just search the file for "thermistor" and see what you get.

The upshot is that the way your temp sensor works is that the resistance of a thermistor varies inversely with the temperature, so it should be ~ 100,000 Ohm at room temp or about 25C, and it's much less at hotend operating temp of 200C. But the resistance that corresponds to the hot temp, and all the temps in between, is set in software. Your firmware stores a curve that, in simplest terms, allows it to sample the resistance across your thermistors for the bed and the hotend and return the temperature that corresponds with that resistance.

The stock Repetier firmware comes with one set of temperature tables and defaults to a single table contained in Configuration.h. The Marlin firmware includes a file called thermistortables.h, which tries to anticipate many different potential kinds of thermistor.

The Rostock .91 firmware uses Configuration.h to auto-generate thermistor tables based on the known values for the thermistor that ships from SeemeCNC. type 97 corresponds to the first auto-generate thermistor table, and type 98 is the second auto-generate table. If, for whatever reason, your measured temps are not matching what your Rostock thinks they are, you can go in and adjust.

Is the new .91 way "better" for some value of "better?" I dunno. but it seems to work ok for PLA.
Polygonhell
ULTIMATE 3D JEDI
Posts: 2430
Joined: Mon Mar 26, 2012 1:44 pm
Location: Redmond WA

Re: Repetier 091 for Rostock MAX now available

Post by Polygonhell »

Smiley is basically correct.

By picking 97 an 98, Repetier will compute a thermistor table for each based on a "Beta" value. These can be found in the thermistor manufacturers documentation, however your just fitting a curve to a none linear system and they are usually selected to give better accuracy at lower temperatures, the Beta value in the firmware can be adjusted to give better accuracy at printing temperatures.

Picking 97 and 98 also means SeeMe can deal with potentially different thermistors for the bed and hotend and tweak them to be more accurate at the disparate temperatures they tend to operate.
inventabuild
Printmaster!
Posts: 137
Joined: Wed May 22, 2013 10:53 pm

Re: Repetier 091 for Rostock MAX now available

Post by inventabuild »

MSURunner wrote:
cope413 wrote:haven't seen it posted anywhere, and I just made the switch to .91, but horizontal radius = printer radius - carriage offset - extruder offset, correct?

It's working but definitely need to make some tweaks to it - not a fan of some of the "wait for temp" features and the like...

Yes, it was a calculated variable in the older versions (still is calculated in the configuration.h file of .91) under the name of PRINTER_RADIUS, but as it is now in the EEPROM under HORIZONTAL_RADIUS, you need to make sure to do the math and correct the value associated with your particular build.
This should have mentioned at the beginning of the thread.
User avatar
aehM_Key
Printmaster!
Posts: 200
Joined: Sun Nov 18, 2012 4:46 am
Location: Germany
Contact:

Re: Repetier 091 for Rostock MAX now available

Post by aehM_Key »

Not sure if I remember right, was it version 91, where it should be possible to tune the Z-Position on the fly (while printing)?
How is this supposed to work? (I could not really find a menu entry for it..)
Thx!
User avatar
Nylocke
ULTIMATE 3D JEDI
Posts: 1421
Joined: Sun Jun 23, 2013 1:43 pm
Location: Iowa

Re: Repetier 091 for Rostock MAX now available

Post by Nylocke »

Repetier .92 has the "Z baby stepping" feature in general settings or something like that, first option on the menu. Its pretty great when the Z-height is off just that little bit at the start.
tc3jg
Printmaster!
Posts: 98
Joined: Sun Jul 14, 2013 7:48 pm

Re: Repetier 091 for Rostock MAX now available

Post by tc3jg »

Not sure if anyone ever looks at this section anymore unfortunately I've got a V1 Rostock max that has upgrades still all the original electronics. It will not connect to my new touch bar MacBook Pro with the USBc ports. I do use an adapter, from what I can see the computer does recognize that there is a Rambo but Arduino will not send the Firmware to the machine.

I haven't used my Rostock in a while because of other printer purchases but id rather get some use out of it since I can't sell it for anything worth having at this point. I went ahead and installed a volcano e3d on this bad boy and plan to use it for non precise prints that I need printed quickly out of PETG.

any help would be greatly appreciated this is surely the best most active forum I've ever been on.
geneb
ULTIMATE 3D JEDI
Posts: 5362
Joined: Mon Oct 15, 2012 12:47 pm
Location: Graham, WA
Contact:

Re: Repetier 091 for Rostock MAX now available

Post by geneb »

You can replace the controller with a Duet. I've done this to my V1s. I attach the Duet to the front door after removing the LCD panel.

g.
Delta Power!
Defeat the Cartesian Agenda!
http://www.f15sim.com - 80-0007, The only one of its kind.
http://geneb.simpits.org - Technical and Simulator Projects
tc3jg
Printmaster!
Posts: 98
Joined: Sun Jul 14, 2013 7:48 pm

Re: Repetier 091 for Rostock MAX now available

Post by tc3jg »

Gene its great to still see you here my man. When I first got my machine your posts and work was invaluable. I will look into it. Do you think it is worth putting anything else into this machine?

Justin
tc3jg
Printmaster!
Posts: 98
Joined: Sun Jul 14, 2013 7:48 pm

Re: Repetier 091 for Rostock MAX now available

Post by tc3jg »

Hey Gene just checked it out man a bit expensive for the board. I recently purchased a Form2 and really don't want to invest too much into the Rostock past the upgrades I've already done
Added new injection carriages, e3d volcano and the new ball joint arms, aluminum plate for heated bed.
Added new injection carriages, e3d volcano and the new ball joint arms, aluminum plate for heated bed.
geneb
ULTIMATE 3D JEDI
Posts: 5362
Joined: Mon Oct 15, 2012 12:47 pm
Location: Graham, WA
Contact:

Re: Repetier 091 for Rostock MAX now available

Post by geneb »

You could grab yourself a Rasberry Pi 3 and install Octoprint on it. You'd get wireless printing out of the deal (the Pi 3 has built-in WiFi) and you can return the Mac to holding a door open. ;)

g.
Delta Power!
Defeat the Cartesian Agenda!
http://www.f15sim.com - 80-0007, The only one of its kind.
http://geneb.simpits.org - Technical and Simulator Projects
tc3jg
Printmaster!
Posts: 98
Joined: Sun Jul 14, 2013 7:48 pm

Re: Repetier 091 for Rostock MAX now available

Post by tc3jg »

:lol: Oh my how dare you Gene ! once you go Mac you don't go back. but ok I will look into it I also still have an Old Pc I guess I could use if need be.
adarcher
Printmaster!
Posts: 138
Joined: Thu Nov 05, 2015 2:46 am

Re: Repetier 091 for Rostock MAX now available

Post by adarcher »

tc3jg wrote::lol: Oh my how dare you Gene ! once you go Mac you don't go back. but ok I will look into it I also still have an Old Pc I guess I could use if need be.

A pi3 kit can be had for $50 and save you a bunch of headaches.
tc3jg
Printmaster!
Posts: 98
Joined: Sun Jul 14, 2013 7:48 pm

Re: Repetier 091 for Rostock MAX now available

Post by tc3jg »

Thanks I'm going to look into it. Is there a specific one I need and does this pretty much run the printer since the raspberry pies are computers ?
geneb
ULTIMATE 3D JEDI
Posts: 5362
Joined: Mon Oct 15, 2012 12:47 pm
Location: Graham, WA
Contact:

Re: Repetier 091 for Rostock MAX now available

Post by geneb »

The Raspberry Pi 3 is the one you want - it's got built in WiFi.

g.
Delta Power!
Defeat the Cartesian Agenda!
http://www.f15sim.com - 80-0007, The only one of its kind.
http://geneb.simpits.org - Technical and Simulator Projects
tc3jg
Printmaster!
Posts: 98
Joined: Sun Jul 14, 2013 7:48 pm

Re: Repetier 091 for Rostock MAX now available

Post by tc3jg »

Ok Gene that is the move I will make. Now regarding octoprint I also run that through the Raspberry pi 3 too correct? I'm considering getting the CR-10 as a third machine can I run two machines off one Pi?
Post Reply

Return to “Rostock MAX”