#linuxcnc | Logs for 2015-05-20

Back
[00:04:10] <zeeshan|2> http://i.imgur.com/6qB3nAv.jpg
[00:04:15] <zeeshan|2> man this is turning out sweeeeeeeeeeeet
[00:04:21] <zeeshan|2> so much better than my old setup
[01:55:02] <archivist> zeeshan|2, rats building a nest in the engine compartment? /me ducks and runs
[02:05:14] <Jymmm> pcw_home: ping
[02:11:40] <Deejay> moin
[02:20:40] <Valen> so machinists levels, do .001 degree ones exist?
[02:20:54] <Valen> or are there better ways of doing that task
[02:28:32] <archivist> they are usually described in distance vertical per distance length
[02:29:38] <archivist> eg on one of mine .00025" in 10" .025mm in 1M
[02:31:23] <archivist> in general levels do not measure angle, clinometers do
[02:33:04] <archivist> and then you may see minutes and seconds of a degree
[02:37:28] <archivist> can estimate to 30 seconds on mine calibrated in degrees/minutes
[02:45:08] <archivist> or use an encoder with a 360000 count resolution
[07:05:08] <jthornton> zeeshan|2, are you adding the turbos?
[07:20:14] <norias> oi
[07:24:14] <Jymmm> pcw_home: wake up
[08:26:47] <dirty_d> if you were ID thread milling something with a pitch diameter of 0.75" and you found its too tight, and you decide you want to take off another 0.001" you could run G51 X1.0013 Y0.0013 and re-run the thread mill program right?
[08:27:05] <dirty_d> oops Y1.0013
[08:27:25] <dirty_d> 0.751 / 0.750 = 1.0013
[08:28:41] <dirty_d> last tiem i thread milled i generated 5 programs each 0.001" bigger then the pervious
[08:28:46] <dirty_d> tahts kinda annoying
[08:30:17] <gromits> A little HAL logic help (to get your morning started ;-) I have a collet opener/closer. I have two solenoids to control it. I can either let the user control them (ie, you MUST close one before opening the other, you MUST insure the spindle isn't running before issuing collet open, etc., etc). OR I can do logic in hal such that issuing a collet open does the right thing (ie, make sure...
[08:30:19] <gromits> ...spindle isn't on or ignore, deactivate closer before activating opener, etc).
[08:31:46] <gromits> So, for collet close my logic needs to: 1) set collet open to false (close opener solenoid), 2) set collet close to true (open closer solenoid), 3) wait 10s, 4) set collet close to false (take air off cloer solenoid), 5) start a 10 minute timer, 6) when timer expires go to #2.
[08:33:58] <dirty_d> i didnt notice a timer when i did my hal stuff
[08:34:38] <gromits> For collet open: 1) check spindle on (if so ignore command), 2) set collet close to false (close closer solenoid), 3) set collet open to true (open opener solenoid), 4) wait 3 seconds, 5) set collet open to false (take air off opener solenoid).
[08:34:47] <dirty_d> but i think you can do this easily in C
[08:36:09] <gromits> Also, if collet open gets called, it should reset all the collet close stuff (ie, don't want timer to cause it to close)
[08:36:36] <gromits> I'd rather do it in hal if possible....
[08:37:07] <dirty_d> whats the point of the 10 minute timer?
[08:37:28] <gromits> I am doing it (sort of) in custom M-codes at the moment but that is frot with danger
[08:37:53] <FinboySlick> Sounds like something that you could do in ladder. This isn't a part of linuxcnc that I'm very familiar with though.
[08:37:59] <gromits> The collet closer needs to have 10s of air applied every 10minutes to ensure the closer stays closed
[08:38:08] <dirty_d> ahh
[08:38:32] <dirty_d> cant just leave the air on?
[08:38:42] <dirty_d> or is the leaking annoying?
[08:39:19] <FinboySlick> Also, if you can, check the spindle encoder to see if it's spinning rather than to see if the spindle is powered.
[08:39:22] <gromits> You CAN leave the air on, but yes it is a bit annoying, and seems like a waste since it doesn't HAVE to be
[08:41:10] <gromits> there is a timedelay component (works like a time delay relay) in HAL...
[08:41:52] <dirty_d> http://linuxcnc.org/docs/2.7/html/man/man9/timedelay.9.html
[08:41:56] <dirty_d> yeayea
[08:42:37] <dirty_d> just set on delay to 10min and off delay to 0 i guess
[08:43:44] <dirty_d> sounds a little trickier than what i had to do
[08:45:39] <cradek> sequencing and timers and solenoids, oh my
[08:45:53] <cradek> fwiw, I agree, ladder is good at these things
[08:46:29] <gromits> Hmm, I also don't see a reset on the timedelay component so I couldn't stop it...
[08:46:48] <JT-Shop> ladder...
[08:47:00] <gromits> perhaps ladder is the better option. I have been successful in not using it. Until now...?
[08:47:37] <JT-Shop> it's easy... once you know how
[08:47:48] <gromits> isn't that always the way
[08:48:14] <JT-Shop> sometimes it's still hard once you know how like writing in troff
[08:48:26] <gromits> indeed :-)
[08:49:10] <gromits> ok, ill return in a some number of (read many) hours after having learned ladder enough to ask any questions at all. thanks.
[08:50:01] <JT-Shop> seen my tutorial on ladder?
[08:50:47] <gromits> no, where?
[08:51:05] <JT-Shop> hmm, it seems to be down at the moment
[08:51:36] <JT-Shop> opps a copy and paste error on my web site
[08:51:41] <gromits> what is the link (when it's up)?
[08:52:38] <JT-Shop> site is up but I screwed up the linuxcnc menu lol http://gnipsel.com/linuxcnc/ladder/
[08:53:19] <gromits> thanks. off to read.
[09:07:59] <archivist> dirty_d, I regularly mod a program rerun till fits
[09:08:48] <dirty_d> archivist, if its cam created there are too many lines to manually change
[09:09:00] <dirty_d> theres no reason G51 wouldnt work right?
[09:09:19] <archivist> well I use inside rear of skull and have sensible variables :)
[09:10:46] <archivist> last time I did an internal thread I used the lathe anyway, was working to the inner flat as well as fiddling diameter
[09:11:41] <dirty_d> hmm
[09:12:06] <dirty_d> i do all my cad/cam at home and just run the code on the crappy cnc computer
[09:12:26] <dirty_d> and the shop is 15min away, so i need to have my shit together first, lol
[09:12:59] <archivist> I do my coding on the machine I use at the time
[09:14:49] <dirty_d> i only do for simple stuff
[09:14:56] <dirty_d> but i guess thread milling is simple
[09:15:27] <archivist> it is if you cheat and use a rotary :)
[09:15:41] <dirty_d> i have none of that fancy stuff
[09:15:52] <archivist> I was doing that before the helical path existed
[09:16:29] <dirty_d> how was there a time helical interpolation didnt exist at the same time as cnc control?
[09:16:32] <dirty_d> or was taht before cnc
[09:17:30] <dirty_d> seems silly if it did
[09:17:43] <dirty_d> it can alraedy move in a circle, and alraedy move up and down, so just do both at the same time, lol
[09:18:31] <dirty_d> but i guess if it were controlled by the equivilent of a calculator it could be tricky
[09:47:33] <norias> uh...
[09:47:36] <norias> you'd be surprised
[09:47:59] <norias> not all cnc controllers can do 3 axiis at the same time
[09:48:04] <norias> or do it well, if they can
[10:12:55] <JT-Shop> raining
[10:27:45] <CaptHindsight> 30's last night
[10:28:09] <CaptHindsight> was near 90 Monday
[10:37:41] <dirty_d> removing bearings like thsi damages them right? https://youtu.be/aec19QVTfwo?t=440
[10:37:53] <dirty_d> the bearing splitter is pulling on the outer race
[10:41:04] <archivist> dont have a lot of choice when bearings are up close
[10:42:09] <dirty_d> so its not possible to remove them without damage?
[10:42:17] <dirty_d> crap, there goes that plan
[10:43:25] <archivist> note he could also tapped the middle thread to send a shockwave down
[10:43:52] <dirty_d> yea
[10:43:56] <dirty_d> maybe it wont damage them
[10:44:09] <dirty_d> i guess the metal could be hard enough not to deform from the pressure
[10:44:52] <dirty_d> i have a crank with good bearings and a screwed up taper part where the flywheel goes on, and a good crank with bad outer bearings
[10:45:01] <dirty_d> so gonna just try to swap
[10:45:33] * JT-Shop can powder coat without a flashlight now
[10:45:39] <archivist> the heat can damage surface hardening I usually only use heat on rusted crap
[10:46:18] <dirty_d> yea i dont plan on heat if it can be avoided
[10:46:29] <dirty_d> maybe heat up the other bearing in oil before i put it on
[10:46:41] <archivist> and one does not care for the bearing as much as the crank
[10:47:00] <dirty_d> yea, i was just hoping new bearings wouldnt be needed
[10:47:32] <archivist> and splastit bukket bench!
[10:47:58] <dirty_d> actualyl they're only $11
[10:48:08] <dirty_d> and its not even my stuff, just helping a friend
[11:05:27] <dirty_d> http://www.skf.com/group/products/maintenance-products/mechanical-tools-for-mounting-and-dismounting/bearing-pullers/external-pullers/strong-back-pullers/index.html
[11:05:35] <dirty_d> "The firm grip behind the bearing's inner ring reduces the force required to dismount the bearing"
[11:05:43] <dirty_d> i cant see how that can possibly contact the inner race
[11:06:09] <dirty_d> http://www.skf.com/binary/21-33775/MEC0035V_NG_tcm_12-33775.png
[11:06:22] <dirty_d> the flange thing is tapered, it would contact the outer race first
[11:06:51] <archivist> you can use that plate reversed
[11:08:11] <dirty_d> but it would still have to push on the outer race first
[11:09:16] <dirty_d> well it depends how its mounted i guess
[11:09:19] <dirty_d> im my case it would
[11:09:45] <archivist> the flat side on the reverse, the outer has some freedom
[11:10:17] <archivist> but usually the bearing can take some load elastically
[11:13:50] <archivist> a large part of the problem is if "design for repair" even crossed anybodies mind
[11:20:58] <dirty_d> probably not
[11:40:50] <MattyMatt> http://www.ebay.co.uk/itm/3-phase-converter-SIEI-1-1KW-220-240V-/291463558324 dammit I snoozed I loozed
[11:42:43] <dirty_d> snost and lost
[11:44:10] <MattyMatt> back to the homebrew. I guess 400V caps rule out a 3 phase input option?
[11:44:41] <SpeedEvil> MattyMatt: yes
[11:45:53] <MattyMatt> what do you get DC if you put 415V (3x 240V) through 6 diodes?
[11:47:03] <SpeedEvil> If you mean what do you get if you have a common neutral 415V with 240V between legs - ~600
[11:47:14] <dr0w> is 415V a rms value?
[11:47:18] <SpeedEvil> yes
[11:47:44] <SpeedEvil> Err - +-600, rather
[11:48:06] <MattyMatt> so even 600V caps would be marginal
[11:48:20] <SpeedEvil> Actually - no
[11:48:52] <SpeedEvil> It's between 600 and 400 or so. I can't do the phasor maths in my head
[11:49:18] <MattyMatt> at these voltages, vacuum tubes for the halfbridges might be in order
[11:49:21] <ssi> 3x240v is actually 3x208V isn't it?
[11:49:23] <SpeedEvil> ...
[11:49:35] <SpeedEvil> There is however no reason you can't use two caps in series
[11:49:53] <ssi> blah 3phase makes my head hurt :D
[11:49:55] <SpeedEvil> 600 or more V switches are readily available
[11:50:06] <MattyMatt> in UK 3 phase was always refered to as 415V, when 1ph was 240V
[11:50:06] <SpeedEvil> even up to 1500V are cheap - SiC FETs
[11:50:07] <ssi> if you put two caps in series you need a bleeder resistor network in parallel so the caps equalize
[11:50:09] <SpeedEvil> well, cheapish
[11:50:16] <SpeedEvil> ssi: yes
[11:50:33] <ssi> common tube amp trick :D
[11:51:02] <ssi> 450V caps are about as high voltage as you can get without spending bux
[11:51:15] <MattyMatt> nice point about series. plan A is 6x 220uf 400V in parallel, because they're cheap (like ATX)
[11:51:17] <SpeedEvil> http://www.digikey.com/product-detail/en/IXBT20N360HV/IXBT20N360HV-ND/5227730 - that's surprisingly reasonable.
[11:51:28] <SpeedEvil> 3600V/70A/$40
[11:52:10] <MattyMatt> bleeder network could also be the virtual ground at center
[11:52:54] <SpeedEvil> dependant on stuff, if you can get at the individual motor windings, and connect them to h-bridges, you've now got a lot more voltage to playw ith
[11:53:10] <MattyMatt> that'd halve the Vds the mosfets would ever see, afaics
[11:53:23] <SpeedEvil> you don't use FETs usually at high Vds
[11:53:27] <SpeedEvil> IGBTs are better
[11:53:31] <SpeedEvil> (usually)
[11:53:48] <SpeedEvil> Exceptions are if you absolutely need high switching speed
[11:56:37] <MattyMatt> 2n3055, if you absolutely need cheap :)
[11:57:16] <MattyMatt> 6 per 2a. big heatsink
[11:58:15] <SpeedEvil> MattyMatt: not so great at 3600V
[11:58:19] <MattyMatt> 2A per phase, that's not insubstantial watts I think
[11:59:16] <MattyMatt> I'm only making a motor driver. I presume clamping diodes will protect the transistors from anything outside rectified mains
[11:59:57] <Jymmm> http://www.mouser.com/ProductDetail/International-Rectifier/IRLB3034PBF/?qs=9%252bKlkBgLFf0jZeWnRhawEQ%3D%3D
[12:01:05] <Jymmm> 10... in parallel =)
[12:01:33] <MattyMatt> in series shirley, to share the voltage. these can only take 40V
[12:02:03] <MattyMatt> lotsa amps tho
[12:02:17] <Jymmm> MattyMatt: Aw, come on, we want 3430 amps capacity =)
[12:02:23] <MattyMatt> maybe for the kiddies, I should run mine at a less lethal voltage
[12:02:59] <MattyMatt> but transformers are so expensive, and homebrew variacs are so dangerous
[12:03:24] <Jymmm> MattyMatt: Ok, 5 parallel, 5 series... 200V @ 1715A
[12:03:40] <MattyMatt> expense multiplies
[12:03:52] <MattyMatt> I should give in and buy a chinese one
[12:04:17] <MattyMatt> they generally work at first, which is a concept I like
[12:06:13] <MattyMatt> has any other fool made variac/transformer cores out of bean cans?
[12:06:57] <Jymmm> http://www.ebay.co.uk/itm/TECO-EV-HP-240V-3-PHASE-INVERTER-CONVERTER-WATCHMAKERS-LATHE-MILL-COOLENT-PUMP-/151514702131?pt=LH_DefaultDomain_3&hash=item2346fae133
[12:07:10] <SpeedEvil> I keep meaning to make a proper variac.
[12:07:17] <SpeedEvil> SMPS, current limiting.
[12:07:31] <SpeedEvil> 0-1.5* input
[12:08:48] <MattyMatt> Jymmm is Teco especially trustworthy? because there's a 1HP one cheaper in the links below
[12:09:39] <Jymmm> MattyMatt: I have ZERO clue on Teco or ph converters - they could be a toaster for all I know.
[12:10:44] <SpeedEvil> I rely on tesco for all my grocery needs.
[12:11:11] <archivist> shop around lots cheaper, except for transport cost
[12:11:22] <Timbo> so I have a taig micromill and I'm thinking I should probably add some home switches to it
[12:11:29] <Timbo> why should I not use hall effect sensors?
[12:11:36] <MattyMatt> I should just buy one of those matched VFD and spindles sets. I've heard BLDC isn't quite like an AC induction motor
[12:11:53] <Timbo> seems to be some division of opinion on repeatability
[12:12:24] <MattyMatt> that one I missed was coming from Usk for £5.67 :)
[12:14:45] <MattyMatt> you don't need repeatability finer than the resolution of your steppers/encoders
[12:15:41] <archivist> backlash too
[12:16:10] <Timbo> that's what I figured
[12:16:19] <MattyMatt> even if you take care to always home from the same direction?
[12:16:47] <Timbo> I mean, do I really care if the axes are off by half a millimetre anyway?
[12:16:59] <MattyMatt> easily done if the home is also the endstop
[12:17:25] <Timbo> just seems like hall effect is a whole lot simpler (in some ways)
[12:17:43] <MattyMatt> precise homing might let you get away with fixtures etc, for repetetive jobs
[12:17:50] <Timbo> mmm, true
[12:17:58] <archivist> Timbo, make your code unidirectional like you would use a manual machine and you can remove some of the errors
[12:18:10] <cradek> Timbo: it depends on how you want to use homing. if it's just to establish reasonable soft limits, a mm is fine. if it's to be able to come back to a half-finished job later and have it repeat, a mm is pretty huge
[12:18:25] <Timbo> cradek: yeah, the former raelly
[12:18:33] <cradek> so then decide what you need and do it!
[12:18:38] <Timbo> ok!
[12:18:41] <cradek> !!
[12:18:43] <cradek> haha
[12:19:07] <Timbo> it's weird though, some people claim hall effect is /better/ than microswitches
[12:19:18] <Timbo> others say much worse
[12:19:27] <MattyMatt> what kind of chips are you making?
[12:19:31] <cradek> they are probably both right depending on the particular switches
[12:19:35] <Timbo> very little real actual data
[12:19:49] <Timbo> MattyMatt: chips?
[12:19:59] <MattyMatt> if steel, then hall's magnet is vulnerable
[12:20:00] <archivist> both have hysteresis
[12:20:10] <Timbo> MattyMatt: ah true, hadn't thought of that
[12:20:16] <archivist> both affected by dirt
[12:20:24] <Timbo> wouldn't be doing steel very often, if at all
[12:20:40] <MattyMatt> if huge amounts of sawdust, opto and mech switch are more vulnerable
[12:20:41] <cradek> proxes like are normally used on machines don't need magnets
[12:20:42] <CaptHindsight> http://www.popsci.com/brain-controlled-bionic-legs-are-here-no-really brains are still a long ways off
[12:20:59] <cradek> I don't know if they're hall or something else, but they don't have magnets
[12:21:11] <Timbo> cradek: hmm yeah, I saw one guy use those
[12:21:12] <archivist> capacitive I believe
[12:21:27] <cradek> and they're oil and coolant tight, no moving parts
[12:21:32] <cradek> a lot going for them
[12:21:33] <FinboySlick> CaptHindsight: We all know a few people in need of a prosthetic brain.
[12:21:33] <Timbo> think he was planning on "upgrading" to opto though, so I assume he wasn't happy with something
[12:21:39] <Timbo> worth exploring though
[12:23:29] <archivist> opto suffers from dirt and sun shining through a window
[12:23:37] <MattyMatt> if my Z was faster, I'd consider autohoming
[12:24:22] <Timbo> looks like I should be reading this http://www.cnczone.com/forums/open-source-cnc-machine-designs/101878-cnc-forum.html
[12:24:26] <cradek> my 1970s lathe uses proxes for all limits and they still work
[12:24:29] <MattyMatt> how about arc welding? that might be bad too
[12:24:48] <cradek> it uses them for homing too (plus index of course)
[12:24:58] <cradek> that's the best setup
[12:25:45] <alex4nder> MattyMatt: like, frying components?
[12:26:32] <MattyMatt> nope, just the arc in the same shop, overwhelming the optos, and the unattended machine crashes while homing
[12:26:43] <alex4nder> ah yah
[12:27:42] <MattyMatt> I'm doing optos in my lathe spindle, but I'm putting them inside the headstock where it's safe and dark
[12:32:39] <MattyMatt> http://www.ebay.co.uk/itm/seco-boring-bar-/201347507728 left handed boring bar anyone?
[12:49:15] <DaPeace> hello :-)
[12:51:02] <DaPeace> anyone here who could quickly help me with dual-stepper-config? i have 2 stepper for the x-axis and need help. if i try to setup 2x x-dir + 2x x-step in stepperconf only one is working.
[12:52:02] <archivist> does stepconf know about a gantry type machine
[12:53:42] <DaPeace> hmm? did you speak to me?
[12:54:04] <archivist> yes
[12:54:26] <DaPeace> ah. ok.. im not sure.. where do i need to add that?
[12:54:42] <archivist> when you chose your machine basic type
[12:55:17] <archivist> cant remember if it does know
[12:56:01] <DaPeace> hmm. ok. so i should try to reconfigure the whole machine.. i thought maybe i only add 2x x-dir + x-step to the config.. that didnt work
[12:58:03] <archivist> there is more than one way of setting up gantry machines /me never done one
[12:59:55] <DaPeace> ah ok.. i will have a look… ive used the machine already but i hooked up 2 steppers to one driver.. now ive added larger stepper and the driver is not capable to drive 2 of that large one.. and there is no way to grab one outputsignal and put it on both drivers
[13:00:31] <Jymmm> pcw_home: ping
[13:00:47] <pcw_home> Hi jymmm
[13:00:50] <cpresser> DaPeace: there is a gantrykins kinematic for that
[13:01:09] <cpresser> DaPeace: http://linuxcnc.org/docs/2.7/html/man/man9/gantrykins.9.html
[13:01:16] <Jymmm> pcw_home: got a shopping list for you (this week only)...
[13:01:38] <cpresser> DaPeace: however, i am not sure if its possible to do this in stepconf. most likeley you will have to edit the .hal files manually
[13:01:51] <Jymmm> pcw_home: http://www.frys.com/product/8299536?site=sr:SEARCH:MAIN_RSLT_PG
[13:02:24] <Jymmm> pcw_home: http://www.frys.com/product/8000524?site=sr:SEARCH:MAIN_RSLT_PG
[13:02:50] <Jymmm> pcw_home: That BT speaker is VERY good
[13:03:21] <pcw_home> $3.00?
[13:03:32] <Jymmm> yep
[13:03:37] <Jymmm> pcw_home: http://www.frys.com/product/7537696?site=sr:SEARCH:MAIN_RSLT_PG
[13:04:23] <Jymmm> pcw_home: It's better that my more expensive BT "stereo" speakers; louder and more bass
[13:05:42] <Jymmm> pcw_home: the 18650 is soldered to that pwr pack
[13:06:23] <DaPeace> thanks cpresser. i think it will not be possible to do that in stepperconf.. its that not really fine cause its really hard to check out the speed-limits of the stepper with hal-config-files.. i will read a little. mybe i get it..
[13:10:38] <JT-Shop> DaPeace, I just looked a config created by stepconf and it correctly connects xstep and xdirection to two pins each
[14:00:03] <Aero-Tec2> how to find location of tool table?
[14:03:08] <shapeoko-noob> hi all
[14:03:29] <shapeoko-noob> how i can cut PVC sheets?
[14:03:57] <shapeoko-noob> what is the reomendd feed rate and spindle speed
[14:10:16] <JT-Shop> go to onshrud for feed and speed data
[14:10:26] <JT-Shop> you need special end mills to cut it
[14:11:06] <JT-Shop> Aero-Tec2, do you mean where is the file?
[14:11:26] * JT-Shop thinks he can stop using acid to clean parts now
[14:14:38] <SpeedEvil> https://www.youtube.com/watch?v=4Sr6EGtBONM - how to pick up aluminium blocks.
[14:14:50] <SpeedEvil> Also known as 'my arm is considerably larger than yours'
[14:16:58] <Aero-Tec2> JT-Shop, yes the file
[14:17:03] <Aero-Tec2> think I found it
[14:17:37] <Aero-Tec2> on the sim comp it was hard to find
[14:17:57] <Aero-Tec2> think I should have no problems with he real one
[14:18:10] <Aero-Tec2> thanks
[14:18:46] <JT-Shop> yea the sim configurations are very confusing with sym links and weird stuff
[14:19:15] <malcom2073> Heh thats a lotta luminum
[14:21:17] <SpeedEvil> I suppose it's 'only' $5M worth. But selling at half that price - if you've got the salvage equipment, and you don't take too long...
[14:21:30] <malcom2073> Heh
[14:22:04] <DaPeace> JT-Shop:
[14:22:14] <DaPeace> read your comment a little late..
[14:23:01] <DaPeace> problem is that i can add 2 or more stepper with same direction but if i test the drives only the first is moving
[14:23:21] <JT-Shop> testing in the stepconf wizard?
[14:23:49] <DaPeace> yes
[14:24:06] <DaPeace> if i try to move the stepper i only get one moving.. the first in the list
[14:24:29] <JT-Shop> yea, stepconf is limited just test it in Axis
[14:25:28] <DaPeace> ok. i will try out.. stepperconf needs some rework… im getting crazy with that piece of software..
[14:26:20] <JT-Shop> it was only intended to get a basic 3 axis machine up and going quick
[14:26:58] <DaPeace> jep.. would be nice if it could for example leave changes in the config-files and not rewrite everything everytime you start it…
[14:27:22] <DaPeace> adjusting the speeds of the machine is kinda tricky without the stepper-conf-tool
[14:27:36] <JT-Shop> why is that?
[14:29:10] <DaPeace> im changing parts of my machine since some month and everytime i change something i have to add backlash manually, adding my hal-files manually and that procedure everytime i change something in the config-tool
[14:29:44] <cradek> it was never intended to be used past an initial setup for these reasons
[14:30:02] <cradek> you should stop doing the thing that hurts
[14:30:19] <JT-Shop> why is it hard to adjust speeds?
[14:31:16] <JT-Shop> wow the inital commit was in 2007 and contained 1500 lines of python code plus others
[14:32:00] <DaPeace> because i leave stepper-conf running for a while on one axis with maximum speed and 30 or 40cm left<->right and thats something i cant really do without it.. maybe writing some gcode would be possible
[14:32:13] <cpresser> DaPeace: have a second set of stepconf-config-files. use them to test you speeds. then copy those values manually to your 'real' config
[14:32:51] <cpresser> that way stepconf wont overwrite your your config
[14:33:36] <DaPeace> ive put everything in hal-files a can simply add after stepconf changed my old ones.. but adding backlash for ex. is only possible the manual way..
[14:33:41] <JT-Shop> you can test axis settings in Axis
[14:33:59] <DaPeace> i use gmoccapy. thats more "machine-like"
[14:34:17] <JT-Shop> nevermind then
[14:34:38] <JT-Shop> you should ask the developer to add emcalib.tcl to gmoccapy
[14:34:50] <DaPeace> whats that?
[14:35:25] <JT-Shop> calibration program, if you have the settings in the ini file it gathers them up so you can test and change them
[14:35:45] <DaPeace> oh.. ok. and in axis its already included?
[14:35:53] <JT-Shop> yes
[14:36:03] <DaPeace> where do i find it?
[14:36:32] <JT-Shop> Machine > Calibration in Axis
[14:36:33] <DaPeace> because for adjusting i dont have a problem with axis.. i only like gmoccapy for working..
[14:36:55] <DaPeace> ah ok. i will have a look. maybe that would help me to get the axes to the max.
[14:37:11] <DaPeace> thanks for the help
[14:37:40] <JT-Shop> I find that acceleration ends up being 10-20 times max velocity
[14:38:00] <DaPeace> i have one more question.. i use tb6600-chips to drive my stepper. does anybody know if the maximum of 4.5A is for one or for 2 phase?
[14:38:59] <JT-Shop> looks like a stepconf configuration will have scale and stepgen_maxaccel in calibration
[14:41:46] <DaPeace> i will try to get my machine back running tomorrow.. i did the cable-work for the whole cabinet now and have many things to adjust.. including the 2 stepper-per-axis and a dead driver for z-axis… thanks for the help. will head for the couch now. cya
[14:42:11] <mozmck> DaPeace: according to the datasheet I found that is 4.5A per phase.
[14:43:25] <mozmck> But that is max, and not necessarily achievable depending on the setup and heatsinking.
[15:01:37] <Crom> trying to decide whether to go usb or parallel on the new laser controller board.
[15:02:00] <jdh> Parallel
[15:02:11] <Jymmm> parallel
[15:02:31] <malcom2073> optical!
[15:02:32] <Crom> http://www.ebay.com/itm/361240665467
[15:02:53] <Jymmm> arduino based?!
[15:03:04] <Jymmm> fuck that
[15:03:09] <malcom2073> Lol
[15:03:12] <Jymmm> hang on (will take me a moment)
[15:03:13] <malcom2073> that's garunteed to be amusing
[15:03:33] <malcom2073> With any luck it's using GRBL, and not their own homebrew stuff, but that comes along with its own issues.
[15:03:45] <Jymmm> Crom: http://szret.en.alibaba.com/product/603137733-213963543/high_quality_co2_laser_control_system_PH_02.html
[15:04:03] <_methods> never thought i'd ever see anyone say "hopefully its using grbl"
[15:04:12] <malcom2073> Haha
[15:04:19] <malcom2073> _methods: There *are* worse things in the world ;)
[15:04:35] <Jymmm> http://www.aliexpress.com/popular/ph-02-laser-controler.html
[15:04:42] <_methods> mach3?
[15:04:46] <jdh> what do yiu use to control the usb thing?
[15:04:49] <Crom> hmm $250 vs $26
[15:05:03] <Jymmm> Crom: It's self contained
[15:05:12] <Crom> inkscape laser extension
[15:05:15] <malcom2073> jdh: Typically gcode senders, they send the gcode over the usb/serial link
[15:06:25] <jdh> example?
[15:06:34] <Crom> inkscape laser extension
[15:06:44] <Crom> is a gcode generator/sender
[15:06:59] <malcom2073> jdh: https://github.com/winder/Universal-G-Code-Sender
[15:07:01] <jdh> gotcha
[15:07:03] <malcom2073> jdh: Any reprap based software as well
[15:07:33] <jdh> uh huh.
[15:08:53] <shapeoko-noob> there is an API to linux cnc?
[15:09:20] <_methods> yeah C
[15:09:24] <shapeoko-noob> I want to read the coordinates and send coordinates
[15:09:24] <_methods> lol
[15:09:27] <_methods> the C api
[15:10:14] <shapeoko-noob> what is the C api?
[15:10:15] <cpresser> shapeoko-noob: you can do lots of stuff in python-hal-modules
[15:15:04] <Crom> Jymmm, $26 and it's all I need... X, Y, PWM for Laser and available stepper driver for Z table
[15:15:32] <XXCoder> I do want laser cnc but laser seems hard lol
[15:15:36] <XXCoder> or expensive
[15:16:50] <Crom> 40w is like <$600
[15:17:10] <XXCoder> enough to cut thick paper?
[15:17:13] <XXCoder> and size?
[15:17:16] <Crom> + another $26 for a controller
[15:18:00] <Crom> I've only the moshidraw board so it's raster right now
[15:18:43] <Crom> I've "cut" 1/4" re running a single line
[15:23:11] <malcom2073> there's the $700 blue box ebay specials, that with new electronics apparently make pretty decent 40w laser cutters
[15:24:31] <XXCoder> example ebay entry?
[15:27:22] <SpeedEvil> http://www.ebay.co.uk/itm/20W-Fabulous-DMX512-DJ-Laser-LED-RGB-Stage-Lights-Crystal-Ball-Party-Club-/281691747789?pt=LH_DefaultDomain_3&hash=item419622f5cd
[15:27:41] <SpeedEvil> http://www.ebay.co.uk/itm/LASER-ENGRAVING-ENGRAVER-MACHINE-40W-CUTTER-HIGH-SPEED-CUTTING-TOOL-HIGH-GRADE-/251840669689?pt=LH_DefaultDomain_3&hash=item3aa2dfa7f9
[15:27:44] <SpeedEvil> more seriosuly
[15:27:56] <malcom2073> ^^ Yeah
[15:28:01] <XXCoder> lol
[15:28:28] <malcom2073> SpeedEvil: You had that bookmarked didn't you?
[15:28:42] <malcom2073> Lol high speed cutting tool
[15:28:43] <malcom2073> that's awesome
[15:28:43] <XXCoder> not bad actually
[15:28:49] <XXCoder> SpeedEvil: both of em I bet lol
[15:28:56] <SpeedEvil> MattyMatt: no - I just searched 20w laser cutter
[15:35:26] <XXCoder> SpeedEvil: thanks
[15:37:00] <SpeedEvil> - to be clear - I have no experience with that vendor
[15:37:16] <XXCoder> yeah not planning to buy right away
[15:37:21] <XXCoder> probabky not soon either
[15:37:27] <XXCoder> gonna get my cnc router to work first
[16:33:52] <Deejay> gn8
[17:28:49] <CaptHindsight> Crom: is the Moshidraw board that Japanese controller board in the low cost Chinese laser cutters/engravers?
[17:29:56] <CaptHindsight> http://lh3.googleusercontent.com/-TXmc50SJI2M/TqKX-Q3dUwI/AAAAAAAAAuk/8CujTH5v_oo/s912/IMG_8904.JPG this one ^^^
[17:31:34] <CaptHindsight> I've seen the 40W CO2 laser engravers on ebay for as low as $400
[17:31:42] <malcom2073> They're getting cheaper and cheaper
[17:32:15] <CaptHindsight> ^^ that board has a moshisoft silk screen
[17:33:09] <CaptHindsight> http://www.cnczone.com/forums/general-laser-engraving-cutting-machine-discussion/138554-software.html he bothered to rework this the same as I did with the cheap routers
[17:33:18] <CaptHindsight> hardly worth the time
[17:34:53] <CaptHindsight> http://www.ebay.com/itm/40W-CO2-Laser-Cutter-Engraver-Cutting-Machine-Support-Corel-Draw-W-Cooling-Fan-/161700544336
[17:35:37] <CaptHindsight> comes with an aquarium pump and other near useless attachments
[17:36:23] <malcom2073> hah
[17:37:23] <CaptHindsight> I'm surprised that it deosn't come with one of those wind up monkeys with fans instead of cymbals as a smoke removal fan
[17:38:02] <malcom2073> Negative Nancy
[17:38:55] <CaptHindsight> Gullible Gary
[17:39:06] <Valen> moooornin all
[17:39:19] <CaptHindsight> is it winter yet Valen?
[17:39:26] <Valen> getting there
[17:39:32] <Valen> been warm the past few days
[17:39:32] <malcom2073> Gullible Gary is so much happier though :P
[17:39:47] <Valen> so what motors do people pair with an 8i20?
[17:39:51] <CaptHindsight> ignorance is a bliss
[17:40:14] <malcom2073> If this is ignorance, I'll take it
[17:41:21] <CaptHindsight> Valen: isn't that the 3 phase AC servo board?
[17:41:29] <Valen> yeah 400v
[17:41:36] <Valen> I'm only finding 48v servos thoush
[17:41:43] <CaptHindsight> parker
[17:42:56] <Valen> let me perhaps rephrase, I'm only finding 48v servos when you limit the price to something that won't cause my father heart attacks
[17:43:13] <CaptHindsight> http://www.ebay.com/itm/Parker-SMHA601051-45112ID654-Brushless-AC-440W-Servo-Motor-/261315002837
[17:43:25] <CaptHindsight> Valen: what size do you need?
[17:44:09] <CaptHindsight> andy found some Omron ones that were very low priced
[17:44:13] <Valen> nothing too dramatic, I'm thinking size 34 might be a way to go
[17:44:19] <CaptHindsight> nema23 size
[17:44:43] <Valen> its for a half sheet router, we want good acceleration, we always seem to wind up making tiny things
[17:47:09] <MattyMatt> could you use a chinese spindle as a servo?
[17:47:21] <Valen> they are induction motors aren't they?
[17:47:45] <MattyMatt> not sure of the diff tbh
[17:48:01] <Valen> one has magnets one doesn't
[17:48:14] <Valen> I was looking at these http://www.automationtechnologiesinc.com/products-page/nema34/nema34-dc-brushless-motor-kl34bls-98-dual-shaft
[17:48:32] <Valen> which seem pretty OK, but 48 volts rather than 400 volts ;->
[17:48:40] <MattyMatt> how about chunky hobbyking ones?
[17:51:43] <Valen> again they aren't going to be high voltage
[17:52:10] <Valen> I mean I could run those keling ones, 33A is just about inside the 8I20 spec
[17:52:30] <Valen> but it feels wrong to only use ~10% of the voltage available lol
[17:52:59] <MattyMatt> keep the caps comfy
[17:53:48] <MattyMatt> it's like hifi amps, you don't run at full power
[17:58:19] <Valen> pshaw servo's max out all the things!
[17:58:36] <Valen> (I'd rather run more volts and less amps to be honest)
[18:02:47] <MattyMatt> http://www.ebay.com/itm/Custom-Motor-Inc-3-Phase-230v-Brushless-Servo-Motor-CM891-5Q26-110-/181123752739
[18:05:32] <MattyMatt> http://www.ebay.com/itm/Parker-Compumotor-servo-motor/131512757866
[18:06:07] <MattyMatt> 340V 2.6A
[18:07:26] <MattyMatt> you are in US?
[18:07:37] <Valen> australia
[18:07:48] <MattyMatt> yeah I shoulda known that :)
[18:08:07] <MattyMatt> oh well, those look good for an axis
[18:08:16] <Valen> wow an american on ebay that will actually post internationally
[18:08:38] <Valen> put 2 on X then one on Y and Z looks pretty good
[18:08:42] <Valen> price seems ok too
[18:08:48] <CaptHindsight> well they have streamlined the customs forms down to under 1 hour now
[18:08:59] <MattyMatt> yeah shipping to UK doesn't look like a killer either, but I can't afford 8i20s
[18:09:05] <CaptHindsight> whats your shoe size by the way :)
[18:10:37] <Valen> 10 ½
[18:11:26] <Valen> and I wear http://www.blundstone.com/au/work-safety-boots/xfoot-safety-boots/style-143 these boots
[18:11:34] <MattyMatt> the couplings on those motors looks like the same kind I use. I don't think they're very standard tho
[18:11:39] <CaptHindsight> the post office doesn't want to ship internationally unless you provide a local telephone number
[18:11:50] <Valen> http://www.blundstone.com/au/work-safety-boots/xfoot-safety-boots/style-142 (these ones for dressing up)
[18:11:51] <MattyMatt> but it'd save me £5 per motor if they were :)
[18:12:07] <CaptHindsight> how did packages ever make it overseas in the past?
[18:12:18] <MattyMatt> on a fair wind
[18:12:18] <Valen> we are probably going to do a belt drive reduction on it
[18:12:57] <MattyMatt> belt drive = ok for the encoder to be on the motor?
[18:13:01] <Valen> here to send something internationally, you write an extra line on the address part of the package, and perhaps tick some boxes on a customs form
[18:13:14] <Valen> actually it should make it work better in terms of the PID loop
[18:13:28] <Valen> our current one has direct drive motors and linear scales for feedback
[18:13:42] <Valen> it doesn't tune that nicely tbh
[18:14:46] <MattyMatt> how would it work with an encoder? would you let the servo position itself then doble check with the linear scale for fine position?
[18:14:56] <CaptHindsight> Valen: https://cns.usps.com/cfo/ShippingInformationAction_input 4 pages of questions
[18:15:29] <Valen> CaptHindsight: 1st page is addresses, you kinda need those
[18:15:41] <Valen> second page is how much you want to spend on shipping it
[18:15:51] <Valen> 3rd page is customs
[18:16:02] <Valen> and 4th page is looking at all the crap you just wrote
[18:16:23] <CaptHindsight> and when you get to page 4 the website freezes and you have to start over again
[18:16:47] <CaptHindsight> unless you use Win8 and IE
[18:16:58] <Tom_itx> then you get redirected to a pron site
[18:16:58] <Valen> they won't show me the customs form without filling everything else out
[18:17:25] <CaptHindsight> half the time I end up filling them out by hand
[18:17:41] <Valen> right, i found a copy of the form
[18:17:52] <Valen> they want a qty and value of the shipped items
[18:18:08] <Valen> that isn't particularly arduous lol
[18:18:17] <CaptHindsight> when it works
[18:18:33] <CaptHindsight> thats why people don't like to ship international on ebay
[18:18:55] <Valen> because a website is crap?
[18:19:08] <CaptHindsight> and it's even worse at the post office
[18:19:32] <Valen> how so?
[18:19:40] <CaptHindsight> stnad inline to watch the clerk bitch and complain that the info won't enter into the screens
[18:19:49] <CaptHindsight> stand in line ...
[18:20:03] <Valen> you can't get a bit of paper and stick it onto the box after writing on it?
[18:20:28] <CaptHindsight> oh sure, bu the new forms only have a small area for the ship to address
[18:20:38] <CaptHindsight> I have to write in 3 point
[19:05:27] <zeeshan|2> http://www.atpturbo.com/mm5/graphics/00000001/Catalog%20Images/Flanges/Steel/ATP-FLS-084_450.jpg
[19:05:41] <zeeshan|2> is there an easy way to hold a square blank that igotta machine this out of
[19:05:47] <zeeshan|2> i dont wanna make a jig
[19:05:51] <zeeshan|2> i only need 2 for my car
[19:06:12] <Tom_itx> sure
[19:06:25] <Tom_itx> you not catchin on yet?
[19:06:35] <zeeshan|2> its stainless
[19:06:42] <Tom_itx> bolt it with clamps on the perimeter
[19:06:50] <Tom_itx> mill the middle and holes first
[19:06:55] <zeeshan|2> yes
[19:06:58] <zeeshan|2> and then
[19:07:08] <Tom_itx> cut the perimeter last leaving maybe .003 - .005 and punch it out
[19:07:14] <zeeshan|2> hm
[19:07:22] <zeeshan|2> how will i hold it when machining the perimiter?
[19:07:33] <zeeshan|2> without using a sacraficial block
[19:07:35] <Tom_itx> it will hold itself
[19:07:50] <Tom_itx> well you need a plate under it
[19:07:56] <zeeshan|2> im saying
[19:08:01] <Tom_itx> remember we had that discussion already
[19:08:02] <zeeshan|2> when im doiung the perimeter, i cant hold it from the outside
[19:08:10] <Tom_itx> why not?
[19:08:15] <Tom_itx> the blank isn't that big?
[19:08:16] <zeeshan|2> cause the cutter will eat the toe clamp
[19:08:37] <zeeshan|2> i guess you either gotta slot the contour..
[19:08:41] <zeeshan|2> or bolt it against a plate
[19:08:44] <zeeshan|2> theres no way around it
[19:08:53] <Tom_itx> pretty much
[19:08:54] <zeeshan|2> =/
[19:09:00] <Tom_itx> you gotta hold it some how
[19:09:21] <Tom_itx> put a tapped hole in the center and bolt it down there to cut the perimeter
[19:09:28] <Tom_itx> or 2 of the holes
[19:09:32] <zeeshan|2> like here tom.
[19:09:38] <zeeshan|2> lets say i do this: toe clamp outside, drill the 4 holes
[19:09:54] <zeeshan|2> then use the 4 holes to bolt it against a sacraficial plate.
[19:10:03] <Tom_itx> mkay
[19:10:04] <zeeshan|2> i finish machining the center hole and outside
[19:10:10] <zeeshan|2> now i wanna do my next flange
[19:10:15] <zeeshan|2> do i just drill the 4 holes
[19:10:16] <Tom_itx> you may as well do the center while you do the holes
[19:10:21] <zeeshan|2> and then use them to line it up as best as possible ?
[19:10:29] <zeeshan|2> its just going to be slightly out.
[19:10:35] <zeeshan|2> cause the machine will have lost reference
[19:10:42] <Tom_itx> why?
[19:10:53] <zeeshan|2> because im relying on the bolt holes to bring the second flange into place
[19:10:54] <Tom_itx> make a repeatable reference
[19:10:58] <zeeshan|2> the bolt holes have clearance
[19:12:15] <Tom_itx> if you drill the holes for the next one they should still align
[19:12:38] <Tom_itx> and once you blow the tapped holes out and bolt it, it should align just like the first one
[19:12:41] <zeeshan|2> but the holes for the next one
[19:12:44] <zeeshan|2> will have clearance also
[19:12:52] <zeeshan|2> so when i try to bring it into the sacraficial plate with the tapped hole
[19:12:57] <zeeshan|2> they wont be 100% aligned to machine
[19:13:03] <zeeshan|2> its like i need to reset it
[19:13:29] <zeeshan|2> im thinking the way around it is this:
[19:13:42] <zeeshan|2> since im using a 1/2" cutter, and it has like 1.5" cutting length
[19:13:48] <zeeshan|2> just stack two of the flanges and drill them together.
[19:13:54] <zeeshan|2> and machine all this nonsense together
[19:14:07] <Tom_itx> can't machine the step that way
[19:14:14] <zeeshan|2> well the step
[19:14:19] <zeeshan|2> ill do the one flange first
[19:14:30] <zeeshan|2> but for th e second flange, ill have the hole to realign the machine
[19:14:49] <zeeshan|2> bit more work
[19:15:05] <zeeshan|2> wish machining was a bit easier :P
[19:15:16] <Tom_itx> you're making it hard
[19:15:47] <Tom_itx> once you drill the holes and bolt it down it's not gonna move
[19:16:00] <zeeshan|2> its not about movement
[19:16:04] <zeeshan|2> its about losing position
[19:16:07] <zeeshan|2> relative to the machine
[19:16:07] <Tom_itx> if you're worried, dowel 2 of them then drill the dowels out later
[19:16:23] <zeeshan|2> hmm that'd work
[19:16:24] <zeeshan|2> shoulder bolts
[19:16:41] * Tom_itx smacks zeeshan|2 with a clue bat
[19:16:47] <zeeshan|2> im tired
[19:16:51] <zeeshan|2> been working at school all day today
[19:16:54] <zeeshan|2> rather than typical slacking :P
[19:23:22] <Tom_itx> how'd those other parts turn out?
[19:23:29] <zeeshan|2> which ones
[19:23:30] <zeeshan|2> the barbs?|
[19:23:39] <Tom_itx> the ones you turned to mill the bottom off
[19:23:53] <zeeshan|2> ah
[19:23:57] <zeeshan|2> i just grabbed them in the vise
[19:24:01] <zeeshan|2> with a tig wire in between
[19:24:04] <zeeshan|2> seemed to hold them fine lol
[19:24:17] <zeeshan|2> skimmed the top till it was like 20 tho thick
[19:24:21] <zeeshan|2> then broke the pieces off
[19:24:31] <zeeshan|2> fishy business :P
[19:24:34] <Valen> what is the name of the way of mounting ballnuts such that wobble etc in the screw isn't translated to the machine?
[19:31:15] <gromits> I have read the classic ladder documentation, tutorials, etc. I kind of get it, but am having problems getting started, mostly trying to relate in my head how the relays, etc in the gui get related to actual pins. Can I play with it live while Axis (and the classic ladder gui) is running?
[19:34:36] <skunkworks> gromits: yes
[19:34:55] <skunkworks> there is a classic ladder config,
[19:35:03] <skunkworks> iirc
[19:39:42] <gromits> I have CL running (not in front of me but at the shop) and have a mylathe.clp file. So check my thinking.... I can create a rung that has a NO relay which gets set to be the HAL variable called collet-close. I string that to an output that is set to hm2.5i25.0.0.output-11 (or somesuch), and when the input is triggered the output gets set. I set those relationships in the HAL file, or do...
[19:39:43] <gromits> ...I do it in the CL interface?
[20:08:31] <JuzCnc> Hi guys, Is it recommand to have linuxcnc-dev version as the same version linuxcnc debs?
[20:10:49] <Crom> if your futznig with things
[20:10:50] <Valen> MattyMatt: what were you using as your search terms when you found those motors?
[20:11:11] <Valen> searching for "Servo motor" is surprisingly unhelpful
[20:11:15] <Crom> I don't have -dev installed on this machine
[21:12:58] <Valen> are mesa's 7i29's going to come back into stock at some point?
[22:00:29] <JuzCnc> Hi I am currently running the lucid linuxcnc package, if I were to update linux kernel for onboard drivers. would that be a problem for linuxcnc?
[22:14:03] <cradek> you betcha
[22:14:18] <cradek> if you change the kernel you have to compile rtai and linuxcnc to match it
[22:14:50] <cradek> probably easier to move to wheezy, if it supports your hardware, or else just replace the hardware
[22:28:17] <JuzCnc> thanks, would keep that as final option but first would still want to fight with the system before giving up. ;) if I backport a display port driver them to lucid would they work cos I am having pretty bad latency could be cause by the nvidia graphic card
[22:36:01] <cradek> this is for a video card!? just use a different one. try ten, they're cheap or free
[22:36:22] <cradek> I have a stash of matrox millenium II pci cards, they always work
[22:37:01] <cradek> unless your time is free!
[22:37:24] <cradek> if you install the matching header package, you can in theory build drivers against that kernel, but jeez it's old
[23:05:39] <JuzCnc> thanks cradek, you are right. really regretting getting a high end pc to do machining
[23:30:10] <alex4nder> hmm