#linuxcnc | Logs for 2012-03-14

Back
[01:59:19] <mrsun> hmm, this cutter radius compensation, is that working good? :)
[01:59:54] <mrsun> very nice to be able to have just one ngc file and put any cutter i want realy to cut it, just change the tooltable .. or am i thinking wrong here? :)
[02:06:58] <KimK> mrsun: You are correct. And you have two popular methods to choose from.
[02:07:11] <mrsun> KimK, ok ?
[02:08:32] <KimK> mrsun: (1) The part profile or "East Coast" method. Program the part profile and all the entries in the tool table will be very close to the true tool diameter.
[02:09:28] <KimK> mrsun: (2) The tool path or "West Coast" method. Program the actual tool path (with a specific tool diameter in mind) and all the entries in the tool table will be very close to zero.
[02:09:45] <mrsun> ahh
[02:10:04] <KimK> Your choice!
[02:10:13] <mrsun> so even if i have one that is programmed for a specefic tool diameter, say 4mm if cutter compensation is on i can just add a -0.4 if the tool is .4 mm less then 4mm ?
[02:11:15] <KimK> Yes, exactly. Great for "regrinds" (resharpened tools).
[02:14:05] <mrsun> only problem is when adding cutter comp to already existing files the entry moves etc .. :/
[02:16:05] <KimK> In method 1 the tool table clearly shows what is going on, which is great, but it's potentially a lot of information for a bored/tired machine operator. In method 2 the tool table does not reveal anything about the programmed tool diameter, but all the entries should be near zero, so it's easier for a bored/tired operator to avoid mis-entries.
[02:19:58] <mazafaka> mrsun: you need correct entry moves if you use cutter radius compensation. otherwise, the tool may cut the detail sometimes at the end of the moves where the trajectory changes.
[02:20:50] <mazafaka> mrsun: e.g. line and then arc, and the tool moves next to the line till its end while it is already cutting the arc a little bit
[02:21:31] <mazafaka> Visuslise the G-code in EMC and watch thoroughly onto the real trajectory of the tool.
[02:23:41] <mazafaka> in fact, you can manually add arc for an entry move, and check how far the tool goes at the last element in the end
[02:28:00] <mazafaka> in the end of the program
[03:01:31] <Loetmichel> mornin'
[03:02:41] <DJ9DJ> moin
[03:10:38] <mazafaka> morning? Evening!
[03:20:37] <DJ9DJ> nope, not here :)
[03:20:44] <DJ9DJ> its about 9am
[03:25:46] <Loetmichel> mazafaka: you are living behind the iron curtain.... ure its dark there ;-)
[03:25:50] <Loetmichel> sure
[03:27:01] <DJ9DJ> hehe
[03:29:24] <Loetmichel> grrr. my dell streak cellphone has a firmware bug... battery below 1%: no charge in the phone... you have to get the battery out, put it on a external charger/Psu for 2 minutes, then back in the phone: charging... annoying... what do the ppl do who havent got a jiustable PSU ;-=)
[03:29:28] <Loetmichel> ?
[03:30:28] <DJ9DJ> buy a new battery? ;)
[03:30:50] <Loetmichel> maybe
[06:23:24] <mazafaka> "(3:16:19 PM) Loetmichel: mazafaka: you are living behind the iron curtain.... ure its dark there ;-)"
[06:28:00] <Loetmichel> mazafaka: am i wrong?
[06:31:07] <DJ9DJ> hehe, mazafaka is using the Vilnius IRC server, Loetmichel :D
[06:31:54] <Loetmichel> is he?
[06:32:15] <Loetmichel> tatsache
[06:32:19] <Loetmichel> oh
[06:32:27] <Loetmichel> factt
[06:32:49] <Loetmichel> hmm, should i visited him as i was in vilnius last week?
[06:32:51] <Loetmichel> ;-)
[06:32:53] <DJ9DJ> hehe
[06:32:55] <Loetmichel> +have
[06:37:34] <mazafaka> Loetmichel: it was only 3:00 PM
[06:38:23] <mazafaka> you would see this: http://www.flickr.com/photos/ilyagalkin/6952213451/in/photostream
[06:38:30] <mazafaka> but I'm in Russia
[06:39:12] <mazafaka> a big mess
[06:41:50] <mazafaka> it's spring and I sometimes come home at dinner, everything becomes dirty.
[06:54:30] <SadMan> what offsets/coord system does touch off set?
[06:56:23] <jthornton> the one you pick
[06:57:24] <SadMan> hm, g54 as i thought
[07:06:26] <jthornton> I don't understand your question, what are you trying to do?
[07:09:49] <SadMan> i'm trying to use a simple probe (a piece of pcb), what i want it to do is do g38.2 and when it trips, do equivalent of me doing manually touch off on z axis with value 1.5 (that's the height of pcb)
[07:09:57] <SadMan> so z0 would be on top of the piece
[07:15:50] <awallin> "By pressing "Touch Off" or the END key, the "G54 offset" for the current axis is changed so that the current axis value will be the specified value"
[07:16:21] <awallin> so check what the current G54 z-offset is, and then load the negative of that with G10 ?
[07:16:36] <SadMan> it seems that i need g53 z
[07:16:43] <SadMan> no idea how to get that
[07:17:48] <awallin> hmm the current G54 z-offset is in variable #5223
[07:18:22] <SadMan> but i'm probably setting offset against g53 (machine coords)
[07:18:27] <SadMan> but i could be wrong
[07:19:13] <awallin> yes, the offset is against machine coordinates. you would use g53 for moving (g0 g1 etc) in machine coordinates - if you want to do that..
[07:20:11] <SadMan> i want to find out current g53 z so i can set the negative to g54 z
[07:20:15] <SadMan> that should give me 0
[07:22:16] <awallin> the current position of the machine, in g53 coordinates, might be available as a set of variables
[07:22:46] <awallin> but you could also calculate the current g53 position as a g54-offset + current-position
[07:22:51] <SadMan> i found variable only for g54+
[07:22:55] <SadMan> variables
[07:23:00] <awallin> so what you want is g54-offset + probe-result ?
[07:23:49] <SadMan> hm, g38.2 is probably setting something too, that could be useful
[07:24:08] <awallin> yes, the result of the probe is in a variable, see docs
[07:24:12] <jepler> the sample nc file tool-length-proble.ngc does this sort of thing
[07:24:28] <SadMan> is there somewhere a list of variables?
[07:24:30] <SadMan> can't google one
[07:24:36] <Jymmm> hi jepler ltns
[07:24:43] <awallin> there should be a great big table of variables somewhere !?
[07:24:56] <jepler> it uses g43.1 z[difference between old and new tool length] to set the height for the second tool.
[07:25:49] <jepler> so it's not quite the same thing, but it shows how to use the variables that result from probing
[07:27:18] <jepler> there's also G10 L20 which sets a g5x coordinate system to a calculated value -- e.g., g10 l20 p1 z0 changes the g54 coordinate system such that the current z is 0
[07:27:30] <jepler> http://linuxcnc.org/docs/html/gcode_main.html#sec:G10-L20
[07:29:38] <jepler> the numbered parameters that store information about the g5x coordinate system are given here, but beware that they are always in inifile units, not gcode units, so doing calculations based off of them is really not possible to do correctly: http://linuxcnc.org/docs/html/gcode_main.html#sub:G54-to-G59.3:
[07:30:11] <jepler> and the parameters where the probe result is stored are mentioned here http://linuxcnc.org/docs/html/gcode_main.html#G38.x%20Straight%20Probe
[07:30:30] <jepler> I'm 99% sure they're in the gcode units that are active at the time of the probe, though I don't see that the docs explicitly say this.
[07:32:02] <jepler> this is a bit disorganized; in the 2.5 docs the structure has been changed a little bit and there is one section which is intended to give all the numbered parameters that have special meaning for linuxcnc. but be careful using this documentation for 2.4.x, as some items are new in the development version that will be linuxcnc 2.5. http://linuxcnc.org/docs/2.5/html/gcode/overview.html#_parameters_variables_a_id_sec_parameters_a
[07:33:05] <SadMan> g10 l20 p1 seems to do the job
[07:33:07] <SadMan> thank you!
[07:33:08] <awallin> yes, that was what I was looking for. The 2.5 (dev) used to be the top link on the docs page. now the top link is to 2.4...
[07:51:52] <awallin> if these parameters are in INI-units and not g-code units then maybe there should be a warning about that in the docs? http://linuxcnc.org/docs/2.5/html/gcode/overview.html#_parameters_variables_a_id_sec_parameters_a
[07:58:38] <mrsun> mazafaka, hmm ok =)
[08:07:44] <JT-Shop> what is and INI unit and a G code unit?
[08:15:01] <SadMan> JT-Shop: you set mm or inch in .ini but you can override it in g-code using g20/g21
[08:15:12] <SadMan> but you'll still have "native" units in some variables
[08:15:13] <JT-Shop> yep
[08:22:23] <ssi> morn
[08:22:43] <ssi> cross your fingers that I get a mesa box today
[08:22:45] <ssi> neeeed it
[08:28:30] <ssi> the garbage man sounds exactly like the ups man D:
[09:48:52] <ssi> aww jeez
[09:49:12] <ssi> I put DIN rail in my power box to mount my VFDs on
[09:49:24] <ssi> got the GE 1/4hp vfd today for my coolant pump, and it doesn't mount on rail :/
[09:49:32] <ssi> now I gotta cut the rail down
[09:50:57] <pcw__> DIN rail adapter?
[09:51:22] <ssi> eh it's faster to cut the rail down and screw this to the box than buy and wait on an adapter
[09:52:05] <ssi> I guess I can't complain too much about a $33 vfd :P
[10:12:41] <Devilholk> Anyone know how big of a project it would be to PC control a emcoturn 140 with emcotronics T1 control?
[10:15:31] <cradek> you'd have to tell us more about it to get a meaningful answer
[10:15:52] <cradek> I see it's a lathe with a turret
[10:16:28] <cradek> what kind of motors/encoders/drives/etc does it have?
[10:17:35] <Devilholk> It uses 5 pahse steppers
[10:17:45] <Devilholk> I dont have much info about it actually
[10:17:55] <Devilholk> I was hoping that somebody in here would be experienced with a similar machine
[10:18:09] <Devilholk> Since I suspect, it may be a big project, if i
[10:18:19] <Devilholk> I'm the first one doing it to that kind of machine
[10:18:37] <Devilholk> So it was a shot in the dark
[10:18:42] <cradek> it will depend on your skills more than the particular machine
[10:19:00] <cradek> steppers are trivially easy if it has a standard interface like quadrature or step/dir to the drives
[10:19:22] <cradek> you'll probably need to do some ladder programming to run the turret
[10:19:32] <Devilholk> The drivers may be easy to RE otherwise, they use 74xxx chips for stuff
[10:19:51] <Devilholk> But I suspect everything is serial inside
[10:19:51] <cradek> you'll have to understand the wiring of the lathe fairly well to interface to its limit and home switches and other sensors
[10:19:59] <Devilholk> True
[10:20:16] <Devilholk> Assume I can control all motors, read all switches and encoders
[10:20:16] <cradek> you'll want an encoder on the spindle to enable threading, it may or may not have one already
[10:20:46] <cradek> do you have full schematics for it already?
[10:20:52] <Devilholk> Then I could more or less just configure LinuxCNC for it?
[10:20:59] <Devilholk> No
[10:21:08] <Devilholk> I'm just pondering the possibilities
[10:21:10] <cradek> you should get them if at all possible
[10:21:17] <Devilholk> Its hard to get any information about this machine
[10:21:30] <Devilholk> Its like Emco themselves dont know how they work anymore
[10:21:40] <cradek> then that will be your biggest problem, not software config :-/
[10:22:29] <Devilholk> Maybe it would be easier to remove the stepper drivers and get new ones for those too
[10:23:15] <cradek> very minimum you will need to find out, either by finding docs, or by inspection: what is the interface to the stepper drives, interface to the spindle drive, what kind of feedback from the spindle, how does the estop chain work
[10:23:21] <Devilholk> Damn it I wish I could afford this thing and fix it up instead of f-ing about with it. It has lost its memory and it doesnt know its a lathe anymore
[10:23:56] <cradek> 5 phase stepper drives are not easy to find and if yours work and have a normal interface, that would be just money thrown away
[10:24:19] <Devilholk> I guess I could interface the stepper motor drivers fairly easy
[10:24:19] <cradek> do not remove or replace parts until you fully understand what you have and you have a plan
[10:24:29] <Devilholk> I have to scopes to watch data with =)
[10:25:01] <Devilholk> Yeah, right now, since I dont own it but have to fix it, I'm just trying to load in new data in it
[10:28:46] <Devilholk> Appears that the parity for serial communication does not work as usualy parity >.<
[10:44:04] <mozmck> Devilholk: you might post on the mailing list as there are people who read that but are not on irc.
[10:59:01] <ssi> cradek: are you using the original GE servo amps on your HNC?
[11:04:11] <cradek> yes
[11:05:06] <ssi> what about the 90v supply
[11:05:09] <ssi> using the stock one?
[11:06:23] <cradek> yes
[11:06:50] <ssi> there's something in the servo amp manual about a +/-15V bias supply
[11:07:02] <ssi> but the control has a +/-12v supply, and I wasn't sure if that was being used as the bias supply or what
[11:07:21] <cradek> I used +-12 on mine
[11:07:36] <ssi> a modern one?
[11:07:39] <ssi> or the stock one
[11:07:46] <ssi> the stock one is freakin enormous heh
[11:07:47] <cradek> I think I used a pc power supply for that
[11:07:50] <ssi> gotcha
[11:08:03] <ssi> the reason I asked is, yesterday the machine was running for awhile
[11:08:14] <ssi> and all of a sudden it let a bunch of smoke out of the control
[11:08:20] <cradek> ouch
[11:08:20] <ssi> out of the blue, no interaction caused it
[11:08:26] <ssi> and I can't find what smoked
[11:08:28] <ssi> everything still works ;)
[11:08:34] <cradek> electrolytic cap
[11:08:35] <ssi> I'm guessing bad caps, heated up
[11:08:38] <cradek> sure
[11:08:47] <cradek> funny that it still works :-)
[11:08:50] <ssi> anyway, point is I want to try to remove as much of that as possible
[11:08:57] <ssi> debating about keeping the 90v supply
[11:09:05] <cradek> yours is HNC with the huge GE control?
[11:09:10] <ssi> yeah
[11:09:22] <ssi> I've got full manuals and schematics for all of it
[11:09:25] <cradek> I've got some parts if you need them :-)
[11:09:30] <ssi> schemes for the control, even schemes for the U-store memory unit :P
[11:10:00] <cradek> the 90v supply is a transformer and bridge rectifier
[11:10:11] <cradek> can't imagine why you'd discard that
[11:10:24] <cradek> the main caps are on the servo amps themselves
[11:10:28] <ssi> gotcha
[11:10:42] <ssi> yea and they're huge
[11:10:43] <ssi> heh
[11:11:06] <Devilholk> mozmck: thanks for the tip
[11:11:14] * Devilholk just got the freaking machine running
[11:11:22] <ssi> so the 90v supply's transformer is probably a 220v primary, since the cabinet takes 220v
[11:11:44] <ssi> I guess I can use a PC supply that'll take 220v as input
[11:12:04] <cradek> yes the 90v transformer is (remarkably) single phase 220
[11:12:16] <cradek> pretty much all PC supplies will take 220 I think
[11:12:21] <ssi> yeah probably so
[11:17:19] <ssi> I figured out how to get the turret to index in MDI mode on the GE control yesterday
[11:17:26] <ssi> works perfectly
[11:18:08] <ssi> and I removed my spindle brake
[11:18:11] <ssi> haven't tested it yet
[11:29:52] <cradek> I'm pretty shocked your control works. did you just get the machine?
[11:30:25] <cradek> mine would mdi but I couldn't get it to run a tape, and the U-stor was dead
[11:34:47] <cradek> someone had added a BTR but I don't think it was complete either
[11:53:45] <ssi> cradek: I picked it up weekend before last
[11:53:59] <ssi> cradek: the guy I bought it from was using it in production somewhat recently
[11:54:26] <ssi> cradek: I don't have any tapes so I can't verify that it'll run one
[11:54:38] <ssi> i was considering trying to get a tape punch and do some tape programming
[11:54:41] <ssi> but I couldn't find one cheap enough
[11:56:00] <cradek> I guess I'm glad mine didn't work - it made the decision to replace it very easy
[11:58:02] <ssi> oh I certainly want to replace mine
[11:58:08] <ssi> I just wanted to play with the tape :)
[11:58:21] <ssi> programming for that dinosaur looks miserable
[12:00:21] <cradek> yes
[12:15:44] <Loetmichel> re @ home
[12:30:17] <mrsun> hmm, i should make a dremel mount for the mill so i can grind the shank of my endmills :P
[12:36:38] <mrsun> tho do not like grinding on stuff like that, abrasive :/
[12:36:51] <mrsun> but its the only thing i can control with any kind of accuracy
[12:38:00] <archivist> dremel bearings dotn make for good grinding
[12:38:13] <archivist> been there done that
[12:38:56] <mrsun> archivist, the result isnt to important i guess, as long as a i get a good "corner" at the flutes of the end mill
[12:39:09] <mrsun> maybe even that isnt to important =)
[12:39:27] <mrsun> i just want to be able to cut deeper then the end mill is intended for :P
[12:40:56] <archivist> get long series endmills
[12:41:38] <mrsun> archivist, more expensive :(
[12:41:43] <mrsun> sweden sucks at tools ...
[12:41:52] <mrsun> have to order from abroad to get any descent prices
[12:42:05] <mrsun> stuff that others pay like $10 for we pay like 30 - 40$
[12:42:09] <mrsun> stupid country
[12:42:20] <archivist> but grinding a relief will make it more flexible
[12:43:12] <mrsun> archivist, wont long series be atleast as flexible as me grinding of .2mm to get the shank to not rub against the material ? :P
[13:17:18] <ssi> mrsun: spin index on a surface grinder!
[13:19:46] <micges> hi all
[13:20:29] <micges> someone know about good DC servo driver with step input? (like UHU)
[13:21:13] <JT-Shop> you have dc servos and need drives?
[13:21:22] <JT-Shop> gecko 320 I think does that
[13:21:49] <micges> exactly
[13:21:49] <pcw__> Granite also
[13:23:30] <IchGuckLive> in europ there ar so view drivers available
[13:31:02] <pcw__> any reason to choose step/dir over PWM/DIR or analog?
[13:31:04] <pcw__> with step/dir you need to tune the drives position loop (sometimes windows only utility)
[13:31:06] <pcw__> and you don't know the following error
[13:31:08] <pcw__> (unless you feed the encoder back to the drive and LinuxCNC)
[13:38:37] <micges> yes there is windows only utility :)
[13:39:53] <djdelorie> micges: bldc or brushed dc?
[13:40:18] <micges> and no, no specific reason, simmilar machine fixed by us was running on UHU servos
[13:40:33] <micges> brushed
[13:43:28] <micges> pcw__: so you mean that 7i40 could be used?
[13:44:31] <awallin> OT: has anyone dove test-coverage with gcov? I get a lot of .gcov files, but lcov seems to want .gcda files ??
[13:45:45] <djdelorie> gcc produces the .gcda files itself during the compile
[13:45:59] <djdelorie> there's a -f option for it, -fprofile-generate perhaps
[13:46:27] <awallin> oh ok, I'm probably running lcov in the wrong directory..
[13:47:07] <awallin> yep, now I got something!
[13:57:28] <skunkworks__> hello?
[13:57:36] <skunkworks__> logger[psha]_:
[13:57:37] <logger[psha]_> skunkworks__: Log stored at http://psha.org.ru/irc/%23linuxcnc/2012-03-14.html
[13:57:43] <skunkworks__> oh - I am on.
[13:57:47] <ssi> woooooooo mesa gear came :D
[13:57:59] <skunkworks__> yay! I love mesa gear
[13:58:02] <ssi> me too!
[13:59:45] <skunkworks__> what did you get?
[14:00:05] <ssi> a 5i23 and a 7i49
[14:00:14] <ssi> plus two 7i42TA's should be here tomorrow
[14:00:20] <frysteev> does that mean the reolver drivers are done now?
[14:00:30] <ssi> haha I hope so!
[14:00:31] <frysteev> er resolver
[14:00:39] <ssi> I didn't realize there might not be drivers :P
[14:01:00] <frysteev> thats why i havent ordered one yey KimK and crew were still wroking on them last i checked
[14:01:07] <frysteev> (im planning on one for my orbot arm
[14:02:37] <ssi> got any links to info about the work they're doing?
[14:03:11] <frysteev> no, only talked to them in here, i believe it was some HAL voodoo they were doing
[14:03:36] <ssi> I hope I didn't paint myself into a corner :P
[14:04:03] <frysteev> ssi: let me know how it goes, cuz i want to order one, its just a priority 2 project lately
[14:04:43] <micges> Andy added resolver driver, I don't know about status but it shoud work
[14:04:47] <frysteev> ssi: you dont need resolvers, open loop with servos will be fine. what coupld possibly go wrong? :P
[14:04:51] <ssi> hahah
[14:05:20] <frysteev> sweet
[14:05:36] <frysteev> ssi: let me know how all the resolver tuning goes
[14:07:16] <IchGuckLive> micges: where are the uhu servos from
[14:07:49] <ssi> frysteev: I certainly will
[14:08:35] <frysteev> ssi: what kind of machine is it?
[14:09:01] <cncbasher> resolvers work fine on the 7i49
[14:09:13] <ssi> frysteev: hardinge HNC
[14:09:25] <cncbasher> but getting into the voodo thats another story
[14:09:36] <ssi> which voodoo
[14:09:45] <cncbasher> yes
[14:10:01] <cncbasher> also supported in pncconf now
[14:10:14] <ssi> nice
[14:10:24] <frysteev> cool. my ASEA IRB6 has resolvers, planning on swapping out the POS cpu in it for emc
[14:10:26] <micges> IchGuckLive: closed software for UHU is from germany
[14:10:31] <cncbasher> at least with the 7i49 , cant say for any other as thats all i have used
[14:10:37] <micges> rest is open source
[14:11:32] <ssi> cncbasher: you're using the 7i49 on your hardinge?
[14:12:16] <cncbasher> no not on the hardinge , it's another machine
[14:12:49] <ssi> I can't remember now, do you have an HNC or a CHNC
[14:13:04] <ssi> i think the chnc was encoders, but I don't remember
[14:17:44] <frysteev> resolvers are cool. i sorta get how they work. but i tried to figure out the a/d to convert them and it hurt my head
[14:18:04] <frysteev> then i decided the 7149 was cheaper then my mental health
[14:22:00] <IchGuckLive> micges: thanks i know but you said uhu servos i never seen this
[14:22:30] <micges> servos I mean drivers :)
[14:25:00] <IchGuckLive> i got 10 faulhabers in stock but never seen one run O.o
[14:26:35] <IchGuckLive> ok thanks till tomoroww
[14:39:40] <frysteev> has anyone used EMC in a conversion, but merely as a fornt end?
[14:39:45] <frysteev> er front.
[14:40:14] <frysteev> leaving an old motion controller or such, and just using emc to monitor and control it overall?
[14:40:49] <cradek> linuxcnc doesn't really work that way
[14:41:08] <cradek> unless you have an old system with 3 jogwheels and you put motors on them or something...
[14:41:22] <frysteev> hehe,
[14:43:25] <frysteev> its more of a theorerical i know. just curious, one of my machines works, but programming it takes forever, thinking about making it run in Direct Control Mode, and Has EMC control it that way.
[14:43:49] <alex4nder> what's the benefit in doing that?
[14:44:24] <frysteev> 1 to see if can be done, and 2, cost
[14:44:55] <cradek> what is 'Direct Control Mode'?
[14:45:30] <frysteev> you can control is live, althogh slowly via serial.
[14:46:24] <cradek> frankly my 3-jogwheel system sounds better
[14:46:48] <frysteev> but the machine has a ton of i/o that would be pricey to replicate, i can setup the i/o to drive the machine essentiaqlly like a stepper, pulse each pin for axis movement
[14:47:11] <frysteev> cradek: i like it, it makes me chinc of the cnc etch a sketches
[14:47:35] <alex4nder> frysteev: so you'd just drive your I/O like it were a standard stepper drive?
[14:47:44] <alex4nder> with no feedback
[14:47:56] <frysteev> possibly,
[14:48:08] <frysteev> but i could do feedback to
[14:48:17] <alex4nder> well then you'd just have a stepper machine, to start.
[14:48:20] <alex4nder> and you could build off of that.
[14:48:38] <frysteev> just wondering if it makes ance sence to try it.
[14:48:54] <cradek> nope :-)
[14:48:55] <frysteev> then emy would only have to read and write a few digitial i/o to the beg machine
[14:49:01] <frysteev> :P
[14:49:25] <frysteev> yeah, i know ill end up on the mesa order page
[14:49:30] <alex4nder> haha
[14:51:29] <frysteev> its for hobby fun anwyays, not a commerical shop
[15:01:41] <ssi> frysteev: is this the arm you're talking about?
[15:26:25] <JT-Shop> frysteev: atm EMC runs my spindle on the BP and the rest is Anilam... but not for long
[16:24:05] <frysteev> yo
[16:52:53] <DJ9DJ> gn8
[17:32:44] <ssi> ugh the computer on my little lathe is getting flaky
[17:32:47] <ssi> locking up right after startup
[18:30:21] <craynerd> I`m totally confused as to what PSU I need for this cnc setup. I know I want 24v max (TB6560 driver will blow above this) and I need about 6-8A ideally. I`m confused about "switching" "floating"...
[18:30:53] <craynerd> I have a couple of very cheap lab supplies, both run variable to 13v and are good to 8.5A. Would these be OK run in series?
[18:32:19] <Tom_itx> i don't think i would run them in series
[18:33:31] <Tom_itx> http://www.kelinginc.net/SwitchingPowerSupply.html
[18:37:34] <craynerd> will running them in series not give me 12v ?
[18:37:37] <craynerd> 24 sorry
[18:37:45] <craynerd> if both set to 12v of course
[18:37:49] <Thetawaves> i would get a cheap 15amp 24v metal frame psu on ebay
[18:38:32] <Tom_itx> craynerd, they would need floating grounds to work like that i believe
[18:39:07] <Thetawaves> most psus do
[18:39:10] <Tom_itx> you're more than welcome to prove me wrong though
[18:39:19] <Thetawaves> they usually have +- and ground
[18:39:22] <Thetawaves> or red black and green
[18:39:35] <craynerd> ok I see
[18:40:53] <craynerd> I`m currently running just 12v at 5A, with 3x 2A stepper on it
[18:41:01] <craynerd> I`m running at 75% current
[18:41:14] <craynerd> but they are running real slow!
[18:41:40] <craynerd> I`m just thinking that I could even get away with a laptop charger , I have one here 19-22v at 4.6A
[18:42:06] <Thetawaves> you are drawing 5A but you expect to be able to use a 4.6a psu?
[18:42:34] <craynerd> surely that would be if I was working them all at full pelt all the time.
[18:42:56] <Thetawaves> full pelt all the time would be 6A no?
[18:43:09] <craynerd> sorry, to be clear... my supply is 12v 5A... I`m not necessarly drawing 5A
[18:43:38] <craynerd> full pelt at 75% current... 75% of 6A no?
[18:43:40] <Thetawaves> if you want to randomly loose power, and randomly loose steps because of inadequate power, be my guest
[18:44:09] <craynerd> lol, your taking this very personal...be cool, I`m a noob getting my head around it!
[18:44:24] <Thetawaves> then do it properly
[18:44:32] <craynerd> My wallet isn`t wadded
[18:44:50] <Thetawaves> a 10A psu is ~20$ on ebay
[18:45:10] <craynerd> 24v?
[18:45:22] <Thetawaves> i'll show you the ones i use to run my servos
[18:45:36] <craynerd> I`m in the UK...I hope they are as cheap here.
[18:47:47] <craynerd> is a switching supply ok then? is that what I`m after?
[18:51:19] <Thetawaves> well they have both 10 and 15a for 25$
[18:51:53] <Thetawaves> craynerd, a switching supply is fine
[18:52:42] <Thetawaves> sometimes there are issues running huge inductive loads off of cheap switching supplies with bad filters
[18:53:12] <Thetawaves> but in that case you can just put a huge capacitor across the outputs of the psu and achieve good filtering on your own
[18:53:39] <craynerd> what size cap are you talking?
[18:54:06] <Thetawaves> minimum probably 10 or 20 uf
[18:54:13] <craynerd> ok
[18:54:26] <craynerd> just trying to ebay one now...will post link before I buy!
[18:54:44] <Thetawaves> thats a wild guess, as i have no numbers to run the math with
[18:55:01] <Thetawaves> but you can just try larger capacitors...
[18:55:43] <Thetawaves> craynerd, i found the listing i got mine from
[18:55:50] <Thetawaves> it was 40$ buy it now with free shipping
[18:56:00] <Thetawaves> because 25$ + shipping was more than 40$
[18:56:21] <craynerd> http://www.ebay.co.uk/itm/CNC-Servo-Step-Motor-Driver-AC-DC-Power-Supply-24V-10A-/150773418921?pt=UK_BOI_Industrial_Automation_Control_ET&hash=item231acbcba9
[18:56:43] <Thetawaves> isn't that like 70 bucks
[18:56:44] <craynerd> £33 .. what is that..like $50-60
[18:56:45] <Thetawaves> damn
[18:56:50] <craynerd> yes.. something like!
[18:57:25] <craynerd> I can bring in from China but I`ll get stung on import duty..at which point it is just as cheap to buy from the UK and it saves waiting 3 weeks!
[18:57:48] <Thetawaves> really?
[18:58:11] <craynerd> yep
[18:58:12] <Thetawaves> i understand you with the waiting 3 weeks part
[18:59:07] <craynerd> will it is a real pain. I purchased an ER32 chuck before Christmas... £20 instead of £55. I waiting 3 weeks and then got charged about £18 import! I`d rather have spent the £55 and got it in a few days
[18:59:13] <craynerd> will = well
[18:59:34] <Thetawaves> haha
[18:59:36] <craynerd> sorry...i`m tired, my sentences are starting to make little sense!
[19:00:13] <Thetawaves> well in the mean time your lab psus will do the trick?
[19:00:52] <Thetawaves> otherwise you're back to scrounging at least 7A power supply
[19:01:06] <craynerd> humm, bugger lol
[19:01:36] <Thetawaves> ..and its not easy to build multiamp power supplies
[19:02:49] <craynerd> no..neither do I dare. I will mod most things but not keen on electricity at high voltage and current!
[19:03:45] <Thetawaves> craynerd, do the english electronic stores have anything within reasonable price range?
[19:04:33] <craynerd> haha.. if ebay cheapest is £33, maplin or Farnell will seriously be near £60-100
[19:06:37] <Thetawaves> my understanding of money is that 33$ buys you the same amount of regular stuff in america as 33 pounds buys you in england
[19:06:45] <Thetawaves> so maybe 33pounds is a good price?
[19:09:21] <Thetawaves> yeah 40$ plus your import fees puts you squarely in 60$ range
[19:09:33] <Thetawaves> craynerd, get the 33 pound, it's a steal
[19:10:19] <craynerd> OK
[19:10:37] <Thetawaves> i buy stuff from china all the time
[19:10:48] <Thetawaves> they *always* lie about cost of the item
[19:10:54] <craynerd> do you have an import duty?
[19:11:29] <Thetawaves> it is low, and you don't have to pay if item value is 100 or under
[19:11:34] <Thetawaves> or some rules like that
[19:12:02] <Thetawaves> i have bought machine tools from china, and they only cost 100$ according to the customs label
[19:12:03] <Thetawaves> :D
[19:12:14] <craynerd> http://www.ebay.co.uk/itm/DC-24V-10A-240W-Output-Switch-Power-Supply-LED-Driver-Strip-Light-Display-3-/200725151314?pt=UK_BOI_Electrical_Test_Measurement_Equipment_ET&hash=item2ebc26be52
[19:12:28] <craynerd> that look ok then?
[19:13:01] <Thetawaves> looks good to me
[19:13:38] <craynerd> presume they are obvious to hook up?
[19:14:15] <Thetawaves> yes, but i strongly urge you to dress it 'properly'
[19:14:33] <Thetawaves> 120vac or 240vac is deadly
[19:14:34] <craynerd> I notice there isn`t a plug cable dangling out! I take it there are just two (three with earth) terminals input and then the ground and 24v outputs
[19:14:49] <craynerd> sure. What do you chaps tend to do?
[19:14:57] <craynerd> i,e how do you house it?
[19:14:58] <Thetawaves> there will be neutral, positive and ground for hooking to mains
[19:15:13] <Thetawaves> and then there will be three terminals for + and three terminals for -
[19:15:39] <Thetawaves> you have to put it in a box. or mount it on the wall with a cover
[19:16:29] <craynerd> ok, sounds simple
[19:17:48] <Thetawaves> use crimp terminals
[19:17:56] <Thetawaves> to terminate the mains wiring
[20:14:40] <PCW> Hmm LinuxCNC.org has gotten really slow
[20:28:05] <mikebronner> Hi guys, still working on the electrical wiring of my CNC router. EMC2 shows options for E-STOP pin outs. Are there e-stop mushroom buttons that will actually react to the setting of e-stop in EMC2?
[20:28:29] <mikebronner> (Or what else might the e-stop out be used for?)
[20:28:50] <jdhnc> a big red ESTOP light?
[20:29:28] <mikebronner> aaaaaaaaahhhh :) I like. Spinning red light complete with siren? hehe makes sense
[20:29:35] <ssi> SI-REEN
[20:30:18] <mikebronner> I'll add that at a later time, cool idea, thanks!
[20:36:32] <djdelorie> my controllers have an e-stop input that stops the motor immediately
[20:37:12] <djdelorie> (or will, once I write that routine... ;)
[20:38:07] <jdhnc> that shouldn't rely on the computer asserting a line
[20:39:09] <mikebronner> I plan on having my e-stop button do the same, but instead physically interrupting power and not relying on the PC.
[20:39:32] <djdelorie> yeah, "off" switch is on the checklist too
[20:40:13] <djdelorie> but if each controller has a separate motor power supply, and they take time to discharge their caps, you either need patience or a massively parallel kill switch
[20:40:32] <djdelorie> so, the more e-stop options you support the better :-)
[20:41:11] <djdelorie> amusingly enough, the mcu I'm using has inputs for estop in hardware...
[20:42:05] <mikebronner> indeed :) my breakout board has the same, so i'll hardwire the 120V to the driver board to be interrupted, as well as send a signal to my breakout board to notify EMC2 that estop was pressed.
[20:42:33] <mikebronner> and hopefully EMC2 then will shut down any operation on its end as well
[20:42:50] <djdelorie> I wired mine to *two* pins, so any one MCU can e-stop all three of them
[20:43:21] <djdelorie> also a separate "fault" output pin so you know which controller caused it
[20:43:39] <mikebronner> you can also achieve that by stringing the ESTOP buttons in a serial normally closed loop
[20:43:52] <mikebronner> ah, that makes sense if you need that level of detail
[20:44:15] <djdelorie> well, the one estop reason at the moment is "driver chip overheat" and I'd rather not have to figure out which one by touching them!
[20:44:35] <mikebronner> LOL, especially while running
[20:44:51] <djdelorie> I went with the short-to-ground option, so they're in parallel. Easier to do with an mcu pin.
[20:46:29] <djdelorie> but mostly, at the time I was designing the board, I didn't know what I might need so I put in some extras
[20:48:42] <mikebronner> gotta run … more wiring to work on :) thanks for all the advice
[21:25:07] <frysteev> woo just got an old cnc motion controller booted,
[21:33:02] <alex4nder> yoh
[21:34:43] <frysteev> i has a whopping 64k in it
[22:36:18] <ssi> lul
[22:45:45] <alex4nder> laf
[23:44:12] <CareBear\> fof