2014-01-26 00:03 wpwrak: 3mm metric 2014-01-26 00:04 I've measured it with a caliper 2014-01-26 00:04 bbiab 2014-01-26 00:12 kristianpaul has quit [Quit: leaving] 2014-01-26 00:12 kristianpaul has joined #qi-hardware 2014-01-26 00:15 ((USB is not realtime, hence, in order to make an USB CNC, you need...)) still doubting that quite a lot 2014-01-26 00:15 DocScrutinizer05: well, there's some isochronous shit 2014-01-26 00:15 but it's not easy 2014-01-26 00:16 wpwrak: okay, read the stuff you wrote 2014-01-26 00:16 you don't want to send real-time commands. just load a set of instructions and process them. if the pc stops unexpectedly, just bring the mill to a halt 2014-01-26 00:16 I think I want an adjustable collet 2014-01-26 00:16 I think wpwrak and me discussed it and I evaluated the maximum speed you can drive it 2014-01-26 00:17 viric has quit [Ping timeout: 240 seconds] 2014-01-26 00:17 and the maximum precision you can achieve (due to 'jitter' of USB) which you anyway only want to use in low speed mode 2014-01-26 00:17 it's always oust one max one step error 2014-01-26 00:17 just* 2014-01-26 00:18 viric has joined #qi-hardware 2014-01-26 00:18 you could get away with it but why take chances ? much easier to cat stuff.gcode >/dev/ttyUSB0 and be done with it 2014-01-26 00:18 and one (micro)step of steper should always be quite below what's max precision of your CNC 2014-01-26 00:19 else you also have to worry about other usb peripherals getting in the way, your process not getting scheduled in time, and all that 2014-01-26 00:19 errr, doesn't exactly same problem apply for realtime LPT? 2014-01-26 00:20 of course. that's why you need a dedicated pc for it :) 2014-01-26 00:20 if you put it all into the usb critter you can use your laptop 2014-01-26 00:20 and I still say that's nonsense 2014-01-26 00:21 well, what happens if you miss a deadline ? 2014-01-26 00:21 a general-purpose pc will sometimes do that, especially if your application involves usb. 2014-01-26 00:22 the max jitter mustn't exceed 50% of step time. IOW you mustn't have >+/-180° phase jitter 2014-01-26 00:22 (without usb you can have a separate real-time subsystem that will be relatively safe. but it can only talk "best effort" to the rest of the system) 2014-01-26 00:23 max step freq of any such stepper is well below say 5kHz 2014-01-26 00:23 what happens if you get the timing wrong ? 2014-01-26 00:23 how wrong? 2014-01-26 00:23 let's assume you can detect it and take corrective actions 2014-01-26 00:23 completely missing a step? 2014-01-26 00:23 wrong = let's say something prevents you from running for 10 ms 2014-01-26 00:24 or 100 ms. or whatever 2014-01-26 00:24 think of a usb bus reset 2014-01-26 00:24 wpwrak: DocScrutinizer05: EMC2 uses linux-rt kernel 2014-01-26 00:24 you'd need a linux-rt kernel even for usb one 2014-01-26 00:24 as long as you sync in with next or 2nd next step to a hard pace raster, nothing will happen. Motor is too slow (aka inert) to do anything bad with one or two wrong steps 2014-01-26 00:24 wolfspraul has joined #qi-hardware 2014-01-26 00:25 unless you offload the movement completely to the controller 2014-01-26 00:25 and then it basically needs a gcode interpreter 2014-01-26 00:25 sorry, that's nonsense 2014-01-26 00:25 you can run rt processes in any arbitrary standard linux 2014-01-26 00:25 whitequark: i think the gcode interpreter sounds like the way to go. find the subset you actually need. 2014-01-26 00:25 why does linux-rt kernel exist then? 2014-01-26 00:25 DocScrutinizer05: but they're not really RT ;-) 2014-01-26 00:26 wpwrak: simple subset of gcode can be implemented very quickly 2014-01-26 00:26 they are sufficiently RT for a low number of processes or even just one process 2014-01-26 00:26 a more interesting one which would be compatible with EMC2 is a tad more work, you'd need shit like expressions 2014-01-26 00:26 but it is not really hard 2014-01-26 00:26 whitequark: two different things. regular linux "rt" is high scheduling priority. but disabling interrupts or anything that doens't want to give up its time slice will still delay you 2014-01-26 00:26 DocScrutinizer05: ^ 2014-01-26 00:26 when you take care to have a driver in kernel to watch for the timing 2014-01-26 00:26 whitequark: the special rt kernels have a special subsystem that has complete priority over the regular kernel 2014-01-26 00:27 and EMC2 really runs on the border of possible jitter for my mill 2014-01-26 00:27 says who? 2014-01-26 00:27 EMC2? 2014-01-26 00:28 whitequark: you probably don't need all the bells and whistles from the beginning. and since you have the code, you can just compile it as a checker with which you can dry-run the jobs, see if there's anything you couldn't handle. 2014-01-26 00:28 wpwrak: of course 2014-01-26 00:28 wolfspra1l has quit [Ping timeout: 264 seconds] 2014-01-26 00:28 or just upload it to device and let it verify 2014-01-26 00:28 I'd want a higher-end F4 anyway for floating point 2014-01-26 00:28 that'll make NURBS splines and so very easy 2014-01-26 00:29 whitequark: yup. once you're confident, that's the way to go. have a nice big led to tell you when something it missing. or add a little OLED ;-) 2014-01-26 00:29 yeah 2014-01-26 00:29 if you get an F4 then an OLED would be fitting :) 2014-01-26 00:29 honestly guys, you sound like you know something about software but pretty much zilch about stepper motors 2014-01-26 00:30 rz2k has quit [] 2014-01-26 00:31 DocScrutinizer05: yes, but we know the sw rather well ;-) if a complex io subsystem linux usb is involved, things get messy. now i didn't try to do rt with usb but i did with ide. and while you can get very good results, you won't always win. 2014-01-26 00:31 ehehe 2014-01-26 00:32 of course when you think you can create a 1second metronome like "while true; do beep; sleep 1; done" then you get into trouble with stepper motors and persumed non RT properties of linux 2014-01-26 00:32 it's not a problem to run linux-rt today anyway 2014-01-26 00:32 debian has it 2014-01-26 00:33 look, amiga1000 did "realtime stepper motor" all the time, for floppy head positioning 2014-01-26 00:33 DocScrutinizer05: well, it essentially had an RTOS then 2014-01-26 00:33 linux is way more complex 2014-01-26 00:33 haha 2014-01-26 00:34 yeah, you for sure will fail when you think you can control your LPT or USB from a norma userland process directly 2014-01-26 00:34 no matter what scheduling you use 2014-01-26 00:35 toldya you need a kernel land module that runs with kernel prio to do the realtime stuff 2014-01-26 00:36 in fact user space is just fine as long as you request a real-time priority 2014-01-26 00:36 for example, this is in user space: http://downloads.qi-hardware.com/people/werner/ubb/vga/web/ 2014-01-26 00:37 GTA02 OS did FIQ for HDQ and for vibra PWM iirc. And each one worked fine as long as not both happened same time 2014-01-26 00:37 sure, but is the USB stack itself realtime? I betcha it's not 2014-01-26 00:37 (of course, ubb-vga does a great many ugly things ... ;-) 2014-01-26 00:38 of course it isn't 2014-01-26 00:38 now tell me that a 1GHz x86 ca't do what a S3C2442 with err 200MHz(?) been able to accomplish? 2014-01-26 00:38 and usb is easily upset 2014-01-26 00:38 it can, with linux-rt 2014-01-26 00:38 just plug in a usb device that has problems and boom 2014-01-26 00:38 heck, "the USB stack" is not even working for flashing 2014-01-26 00:40 I guess what you cal "the USB stack" does a lot in userland 2014-01-26 00:40 not in userland but in kernel threadlets 2014-01-26 00:40 tasklets 2014-01-26 00:40 besides, whitequark will need something to fill that monstrous f4 with. so there's every reason to have the gcode interpreter in there ;-) 2014-01-26 00:41 does USB use tasklets ? i never looked 2014-01-26 00:42 I remember it had 2014-01-26 00:42 err yep, worker thread or whatever, I seem to recall from musb_hdrc 2014-01-26 00:42 [khubd] ? 2014-01-26 00:42 worker thread is "user land" for me, though really it probably isn't 2014-01-26 00:43 yeah, worker threads in the kernel are pretty much like user space, as far a scheduling is concerned 2014-01-26 00:43 :nod: 2014-01-26 00:43 that's what I thought, though i never looked into it 2014-01-26 00:43 it's their purpose 2014-01-26 00:43 note that they can therefore also get "real-time" priority. but just be careful with that ... 2014-01-26 00:44 (waits for larsc to chime to in ;-) 2014-01-26 00:47 arielenter has joined #qi-hardware 2014-01-26 00:47 oh SHITE. Looked out the window and noticed the world got mouldy since I last did 2014-01-26 00:48 I like mildew only on cheese 2014-01-26 00:48 and some special sorts of salami 2014-01-26 00:49 your disconnected fridge has windows ? 2014-01-26 00:49 yeah 2014-01-26 00:49 and it's laaaarge 2014-01-26 00:49 they actually built my apartment inside that fridge 2014-01-26 00:51 (I think acid's kicking in) 2014-01-26 00:51 DocScrutinizer05 --> http://25.media.tumblr.com/vVmbDWseNi0vony2V6inpGjoo1_400.jpg 2014-01-26 00:52 lol, check out Kafka, do you think he needed any chemicals? 2014-01-26 00:53 actually, I dunno. Did he? 2014-01-26 00:54 did anyone in that era not ? 2014-01-26 00:54 I think he was legitimately crazy 2014-01-26 00:54 which is the same thing 2014-01-26 00:54 * whitequark <3 Kafka 2014-01-26 00:55 i don't. way too close to reality. 2014-01-26 00:56 http://de.wikipedia.org/wiki/Die_Verwandlung hmmmm 2014-01-26 00:57 http://de.wikipedia.org/wiki/Der_Bau 2014-01-26 00:57 well, my mildew is pretty close to reality then 2014-01-26 00:58 The Castle is amazing 2014-01-26 00:58 I've read it while doing a certain paperwork-intensive process 2014-01-26 00:58 and I think pondering about what's "home2 and "freedom" for a bird that never lands is not any weirder than http://de.wikipedia.org/wiki/Der_Bau 2014-01-26 00:58 it's like wanting to kill yourself, but now also in your fantasies 2014-01-26 01:01 arielenter has quit [Quit: Leaving.] 2014-01-26 01:26 dandon has quit [Ping timeout: 272 seconds] 2014-01-26 01:27 dandon_ has joined #qi-hardware 2014-01-26 01:27 dandon_ is now known as dandon 2014-01-26 02:11 okay 2014-01-26 02:11 magic smoke HAS escaped from the spindle board. 2014-01-26 02:15 some guy from forums reported the same thing 2014-01-26 02:15 so it's likely not me 2014-01-26 02:17 the transformer is HOT 2014-01-26 02:17 I can't touch it, it's that hot 2014-01-26 02:21 aha, I'm inclined to think that the transformer was breakdown 2014-01-26 02:21 the spindle started to spin very quickly on a minimal setting, then there was some cracking noise and a funny smell 2014-01-26 02:22 except it's not the smell of exploded semiconductors, it's more the smell of fresh epoxy 2014-01-26 02:22 and a fuse is burned 2014-01-26 02:22 I'd say electrical breakdown of insulation in the transformer. guess it wasn't rated for 136V after all. 2014-01-26 02:23 oh, and there's nothing visibly burned or exploded or just hot on the spindle board. 2014-01-26 02:27 ah, no, there's a dead 7812 2014-01-26 02:29 INPUT shorted to GND... a very lucky mode of failure. burned the fuse and probably saved the rest of circuits 2014-01-26 02:37 yes. but it's hard to believe this been caused by a mere 20% "over"voltage 2014-01-26 02:38 sure. as I've said, some guy on the forums reported this board exploding, too, I've googled it by the board markings 2014-01-26 02:38 although in my case, if the 7812 exploded, it's certainly a big overvoltage 2014-01-26 02:38 I guess I can try to turn it on without load and measure the actual AC output of the transformer 2014-01-26 02:38 7812 is hardened for for input voltages up to 30V iirc, and should shut down on overtemp. And a transformer hardly ever breaks from overvoltage 2014-01-26 02:38 let's hope it doesn't burn my house down or something... reminds me I need to get a fire extinguisher 2014-01-26 02:39 there's a smoke alarm, but afaik it's not even plugged in, much less working 2014-01-26 02:39 russia, duh. 2014-01-26 02:41 when transformer is of abysmal quality, it might short a turn in primary coil (out of no particular reason), which in turn causes a short and massive temperature increase due to that, which shorts further turns in primary, reducing the number of active turns on primary, thus turning a e.g. 20:1 transformer into a 1:1 transformer 2014-01-26 02:42 in this case, will the transformer itself tend to burn down when I use it? 2014-01-26 02:43 I'd claim warranty repair at seller/manuf, clearly stating that you probed the input voltage with DVM and it been in allowable range for a 110V device 2014-01-26 02:43 transformers have nothing that burns 2014-01-26 02:43 I mean literally, in a fire 2014-01-26 02:43 they can get pretty hot 2014-01-26 02:43 insulation? 2014-01-26 02:43 but can't burn 2014-01-26 02:43 (except the very huge ones) 2014-01-26 02:44 oh okay. guess I'll just be quick then 2014-01-26 02:44 well, eventually isolation will evaporate and maybe create flamable fumes 2014-01-26 02:44 at maybe 300°C 2014-01-26 02:45 usually *every* transfomer is built in a way so it "fuses" out before anything like this ever happens 2014-01-26 02:46 also all transformer devices madatory have a real fuse in primary circuit 2014-01-26 02:46 it's connected directly to the mains 2014-01-26 02:46 which should blow as soon as a single turn in transformer shorts 2014-01-26 02:47 well, through a switch 2014-01-26 02:47 sometimes swirch has builtin fuse 2014-01-26 02:47 doesn't seem like such a switch 2014-01-26 02:47 often transformer has builtin fuse 2014-01-26 02:47 well, maybe 2014-01-26 02:47 pcercuei has quit [Quit: dodo] 2014-01-26 02:47 actually, hm, zero voltage on output 2014-01-26 02:47 often chinese build incredibly dangerous crap and still aren't shy to print "CE" on it 2014-01-26 02:48 either a fuse or just some of my plugs are shitty (they are) 2014-01-26 02:49 well, the *rest* of the device is built very well. good looking PCBs, nonshitty components, good soldering, all wires are accurately wrapped in cambric with the name of circuit printed 2014-01-26 02:49 like this: http://maemo.cloud-7.de/share-service/20121122_001.jpg 2014-01-26 02:49 components are from the official vendors (ir, nec, toshiba japan, etc) and not chinese generics 2014-01-26 02:49 hrm 2014-01-26 02:49 yeah, that's sad 2014-01-26 02:50 the above is prone to kill you with 220V when the 0.05mm plastc fail to isolate the PCB thruhole solderpoints from the Alu heatsink 2014-01-26 02:51 okay, I'm pretty positive the transformer is dead 2014-01-26 02:51 the autotransformer is buzzing like crazy when I plug the device in 2014-01-26 02:51 it never did before and looking as the load is disconnected entirely... yeah 2014-01-26 02:52 then you better don't 2014-01-26 02:52 yeah, DOA. 2014-01-26 02:52 :nod: 2014-01-26 02:52 a pity. ask for 50% refund 2014-01-26 02:52 get good transformer and new 7812 2014-01-26 02:53 I wonder if I need a good transformer, I've R/Ed the circuit mostly 2014-01-26 02:53 hehe 2014-01-26 02:53 it's absurdly simple. has 18V~ and 36V~ inputs 2014-01-26 02:53 sure you can go for any arbitrary 12V PSU given it's strong enough 2014-01-26 02:54 feeds 18V~ to 7812 and then there's a PWM made with a single 555 timer (no joke) 2014-01-26 02:54 ooh, what for are the 36V~? 2014-01-26 02:54 er, 18V rectified 2014-01-26 02:54 sure, told ya 2014-01-26 02:54 that's usualy meant to be 16V~ 2014-01-26 02:54 the 555 output is fed directly to an IRF740 power transistor gating the 36V rectified to the spindle 2014-01-26 02:55 for you it been 20 2014-01-26 02:55 7812 should cope with that 2014-01-26 02:55 aaah spindle 2014-01-26 02:55 yeah, ok. No problem to replace that shit with something homemade 2014-01-26 02:56 okay, tell me... 36V~ is what Vrms or Vp-p? 2014-01-26 02:56 and what does my DVM measure? 2014-01-26 02:56 what did you use to meter it? 2014-01-26 02:56 it's written on the transformer labe 2014-01-26 02:56 *label 2014-01-26 02:56 aaah, it's written "36V" there? 2014-01-26 02:56 :nod: 2014-01-26 02:56 yes, and on the PCB too 2014-01-26 02:56 then it's effective 2014-01-26 02:56 so Vrms right? 2014-01-26 02:57 err, basically 2014-01-26 02:57 and when I rectify and filter 18V~rms, I get what, 18V= ? 2014-01-26 02:57 well, what your DVM shows 2014-01-26 02:57 well, slightly less. assume an ideal rectifier 2014-01-26 02:57 nah, you get 18V*sqrt(2) iirc 2014-01-26 02:58 but Vrms is what power I'd get if I plug that into a resistor 2014-01-26 02:58 unless you have sufficient load 2014-01-26 02:58 so if I rectify it and plug it to the same resistor, I should get same power 2014-01-26 02:58 no? 2014-01-26 02:58 ah, that's what you mean by sufficient load 2014-01-26 02:58 yes, unless you have a buffer C 2014-01-26 02:58 there's a huge-ass cap, of course 2014-01-26 02:58 :nod: 2014-01-26 02:59 2200µF 50V 2014-01-26 02:59 then it's more like 22V= 2014-01-26 02:59 ah I see 2014-01-26 03:00 that explains why the input on the spindle board is marked 24V 2014-01-26 03:00 maybe even 25 2014-01-26 03:00 connected to rectifier output 2014-01-26 03:00 :nod: 2014-01-26 03:00 ok, so I need a 24V/50V power source 2014-01-26 03:00 err, the 36V are rectified and buffered? 2014-01-26 03:01 yep, the spindle is a DC motor 2014-01-26 03:01 the latter particularly 2014-01-26 03:01 yep, there are two smaller caps 2014-01-26 03:01 mhm 2014-01-26 03:01 22µF 2014-01-26 03:01 x2 2014-01-26 03:01 you said that's what type of 3-pin transistor? 2014-01-26 03:01 is it a transistor? 2014-01-26 03:01 power mosfet 2014-01-26 03:01 mhm 2014-01-26 03:02 yeah, makes sense 2014-01-26 03:02 honestly, i'd probably buold it in a similar way 2014-01-26 03:02 build 2014-01-26 03:02 ne555 is just fine for a PWM 2014-01-26 03:02 yeah, it's not a terribly designed board. just the fucking transformer *shakes fist* 2014-01-26 03:03 do you have a good 24V power source 2014-01-26 03:03 my adjustable source can give 24V 3A 2014-01-26 03:04 should be more than enough for steppers... but not spindle 2014-01-26 03:04 you could try the rest of board and spindle motor with any arbitrary ooops 12V source 2014-01-26 03:04 spindle is 200W so 4A 2014-01-26 03:04 DocScrutinizer05: (transformers have nothing that burns) rememeber that ICE fire ? ;-) 2014-01-26 03:04 wpwrak: that been alu 2014-01-26 03:04 wpwrak: he said "except really big ones" 2014-01-26 03:04 that too 2014-01-26 03:04 and those are likely quite big. well, surely bigger than mine 2014-01-26 03:04 ah, then you said "(except the very huge ones)". good :) 2014-01-26 03:05 big ones are oil cooled 2014-01-26 03:05 big ones are notorious to catch fire 2014-01-26 03:05 nasty 2014-01-26 03:06 whitequark: (official vendors) how can you tell ? ;-) 2014-01-26 03:06 wpwrak: properly looking laser engraving 2014-01-26 03:06 whitequark: you can operate spindle with 12V, just to see if it all still works 2014-01-26 03:06 plus usually if they're going to install counterfeit components, the rest of it is going to look like shit 2014-01-26 03:07 don't turn it up to full power 2014-01-26 03:07 DocScrutinizer05: or 24V 2014-01-26 03:07 err the 7812 is meant to provide 12V}, no? 2014-01-26 03:08 7812 is just for the 555+irf720 2014-01-26 03:08 sure you can attach 24V to the 36V~ branch 2014-01-26 03:08 so yeah... actually I think I even have a spare 7812 2014-01-26 03:08 so could fix it right now 2014-01-26 03:08 :nod: even better 2014-01-26 03:08 how's the steppers operated? 2014-01-26 03:09 separate board. didn't look at it close yet, lemme unscrew it 2014-01-26 03:10 I'm worried about your report of "sppindle shortly running at full speed on lowspeed setting" 2014-01-26 03:10 yeah, same 2014-01-26 03:10 DocScrutinizer05: (alu) the reports sounds as if before that came the oil from the transformers. but i guess it was all a jumbled mess ;-) 2014-01-26 03:10 might be caused by 12V branch going offline, leaving the MOSFET at always-closed 2014-01-26 03:11 wpwrak: yes, that's why I mentioned the oil 2014-01-26 03:11 use of oil starts at maybe 10kW transformers 2014-01-26 03:12 maybe even higher 2014-01-26 03:12 ok... toshiba tb6560ahq stepper drivers 2014-01-26 03:12 I guess the motors are powered by 36V as well? 2014-01-26 03:12 a lot of what looks like optocouplers, but can't quickly google the part# 2014-01-26 03:13 a 74HC chip, and something that looks like a high-power linear voltage regulator 2014-01-26 03:13 (counterfeit) don't count on it. sharism once got a nice patch of some fairly trivial chips. they were ordered as originals and looked credible enough. yet they were fakes. of course they only found out after making a batch of milkymist with them ... 2014-01-26 03:13 no, that board only has one 24VDC input 2014-01-26 03:13 yes, those definitely are optocouplers 2014-01-26 03:13 wow 2014-01-26 03:13 ok, those steppers are not as powerful 2014-01-26 03:14 ooh 2014-01-26 03:14 it's not a linear regulator 2014-01-26 03:14 SPSU? 2014-01-26 03:14 it's diodes inc AP1501, 150KHz,3A PWM BUCK DC/DC CONVERTER 2014-01-26 03:14 yep 2014-01-26 03:14 :-) 2014-01-26 03:14 there you are ! 2014-01-26 03:14 lemme look the output V 2014-01-26 03:15 wpwrak: that's not enough of them! 2014-01-26 03:15 ok... it steps down to 5V 2014-01-26 03:15 the fuck it needs 24V input for?! 2014-01-26 03:15 in the end you may be able to just use a pc power supply ;-) 2014-01-26 03:15 yes, I'm getting that feeling 2014-01-26 03:16 24V since it been there 2014-01-26 03:17 the motors need it 2014-01-26 03:17 mhmm 2014-01-26 03:17 lemme check where it gets the motor voltage 2014-01-26 03:17 use -12 V and +12 V ;-) 2014-01-26 03:17 wpwrak: PC PSUs have negligible current on -12V 2014-01-26 03:17 if it was 110V, the'd have used a SPSU with 110V input 2014-01-26 03:18 also this mosfet is connected in a way which requires a common ground... it doesn't have an isolated gate 2014-01-26 03:18 so no luck with that scheme. but nice try 2014-01-26 03:18 hmm? 2014-01-26 03:19 well, if you make -12 V your ground and -5 V your "+5 V", you're kinda almost there ;-) 2014-01-26 03:19 ooh, you mean because of PC PSU ground? 2014-01-26 03:19 DocScrutinizer05: well, it's the gate-source voltage which turns it on 2014-01-26 03:19 yes 2014-01-26 03:19 if the source is at -12V and the gate is at +12V... 2014-01-26 03:19 actually, it's out of AMR 2014-01-26 03:19 don't worry, what's PSU ground doesn't have to be steppercontrol GND 2014-01-26 03:19 which is 20V 2014-01-26 03:20 mm 2014-01-26 03:20 you might use 2 pcs 12V PC PSU in series 2014-01-26 03:20 DocScrutinizer05: anyway, PC PSUs can supply like 300mA on -12V 2014-01-26 03:20 two PSUs would work, yes 2014-01-26 03:20 it's kind of a shitty setup though 2014-01-26 03:20 and doesn't give 50V too 2014-01-26 03:20 make sure to power then both up properly before connecting secondary load 2014-01-26 03:21 and I don't have two of them 2014-01-26 03:21 and I can just use 24V output from my configurable supply 2014-01-26 03:21 yes, I'd try that 2014-01-26 03:22 what do the 50 V get mangled into ? 2014-01-26 03:22 should even work for spindle, at low RPM 2014-01-26 03:22 so... I think I should check whether the stepper board is dead first 2014-01-26 03:22 spindle motor 2014-01-26 03:22 with configurable PSU 2014-01-26 03:22 yes 2014-01-26 03:23 DocScrutinizer05: (refund) it would be hard to argue that 134V is within operating conditions 2014-01-26 03:23 since the block is clearly labeled as 110V-120VAC 2014-01-26 03:23 I wouldn't argue about that with them 2014-01-26 03:23 ah, gotcha 2014-01-26 03:24 that transformer is so massive, we're talking for an hour and it's still hot 2014-01-26 03:24 such a waste of metal 2014-01-26 03:24 hehe 2014-01-26 03:24 I could probably sell it for good $ 2014-01-26 03:24 well, it took it about 2 ? 3 ? hours to overheat ... 2014-01-26 03:25 no, I played with it for about 20 minutes this session 2014-01-26 03:25 when it actually *over*heated then you'd see that from outside 2014-01-26 03:25 and a few hours before that, but it got time to cool down 2014-01-26 03:26 ah. so you russians got a bit more careful after chernobyl :) 2014-01-26 03:26 and that particular usage pattern makes it *very* unlikely it overheated in 20min, after working 3h before 2014-01-26 03:26 hahaha 2014-01-26 03:26 never was this joke more appropriate 2014-01-26 03:26 DocScrutinizer05: okay ... became the dominant heating element in whitequark's vicinity :) 2014-01-26 03:27 ooooh, THAT's why the room was so hot 2014-01-26 03:27 that actually may make perfect sense 2014-01-26 03:27 [2014-01-25 20:53:43] occasional manual control of temperature of whole thing can't hurt, until you got familiar with it 2014-01-26 03:27 ;-) 2014-01-26 03:28 (I'm not serious about the room, it was just the A/C heating it up. But it might have contribued to the problem) 2014-01-26 03:28 (manual control) I did control it, without disassembling the block. the metallic case was a bit warm. 2014-01-26 03:28 since metal is a good heat conductor I decided the insides aren't particularly hotter 2014-01-26 03:29 then it's highly unlikely it overheated 2014-01-26 03:29 you usually also smell overheated trafo an hour before it becomes critical 2014-01-26 03:29 the metal transformer core is screwed to a metal pad which is screwed directly to the metal case with high contact area 2014-01-26 03:30 ah, no, there was definitely no smell, even seconds before breakdown 2014-01-26 03:30 and I smelled it very strongly immediately after 2014-01-26 03:30 so... what was it if not overheat? 2014-01-26 03:30 crappy isolation of winding wire 2014-01-26 03:31 the isolation should withstand the 5 times overvolatge at least before breakdown 2014-01-26 03:31 volatile components considered unnecessary unless proven otherwise ? 2014-01-26 03:31 wpwrak: volatile? 2014-01-26 03:32 stuff that escapes. under certain acceptable (unless proven otherwise) operating conditions :) 2014-01-26 03:33 when they used cheap wire to do the transformer coils, and that cheap wire then gets mechanical damage during sloppy manufacturing, then the isolation may break while manufacturing and finally breaks down shorting one wind 2014-01-26 03:33 or a few winds 2014-01-26 03:33 s/wind/turn/ 2014-01-26 03:33 DocScrutinizer05 meant: "or a few turns" 2014-01-26 03:33 right 2014-01-26 03:33 btw I can't get off the clamp of the transformer input wire off the terminal 2014-01-26 03:34 it's the same type of terminal like e.g. 12V terminals in cars 2014-01-26 03:34 often the contact wires are soldered to the thinner internal coil wide, and often those solder joints are sharp 2014-01-26 03:34 do they have some hidden latches or something? no amount of forces disconnects it 2014-01-26 03:34 what does it look like ? 2014-01-26 03:34 yes, they have a latch 2014-01-26 03:35 like this one: http://i571.photobucket.com/albums/ss160/4listing/BE_tem1/AU004-tem1-1.jpg 2014-01-26 03:35 in the center 2014-01-26 03:35 except it's on the power socket, like mains socket on a computer PSU 2014-01-26 03:35 either a bumb that fits into hole, or even a real latch 2014-01-26 03:36 usually bump though, that goes into the hole 2014-01-26 03:36 ah, I see it now. a bump. 2014-01-26 03:36 apply force 2014-01-26 03:36 already applying it, with a makeshift lever out of hex key 2014-01-26 03:36 seems like the connector would break first 2014-01-26 03:37 aha, got it off 2014-01-26 03:37 needed more force 2014-01-26 03:38 hmm, I could fit a small computer PSU in place of that enormous chunk of metal... 2014-01-26 03:38 maybe two 2014-01-26 03:39 pro tip: the other side of the hole in the male end is usually open 2014-01-26 03:39 a smal nail... 2014-01-26 03:39 ... in the head of whoever made that transformer... 2014-01-26 03:40 hehe 2014-01-26 03:41 also those plugs always are with two almost closed "tubes", each long side one. You can insert a nail into the "tube" and slightly bend it open. Plug falls off like a dead fly from the wall 2014-01-26 03:41 yep, that was my second option 2014-01-26 03:43 ok, in steady state it draws 4mA@24V and the LED on the board is glowing 2014-01-26 03:43 ok, I got a shiny new camera. Let's see how it performs 2014-01-26 03:43 wait, why exactly is there a LED in a completely black case? 2014-01-26 03:43 haha 2014-01-26 03:43 just for you ;-) 2014-01-26 03:44 it's the flashlight. now look for the camera. 2014-01-26 03:45 panda|x201 has joined #qi-hardware 2014-01-26 03:48 ok, with steppers connected the board tries to draw more than 2.5A of current without connected LPT 2014-01-26 03:48 I guess this means it's fucked too. 2014-01-26 03:50 what would be normal peak current ? 2014-01-26 03:50 wpwrak: hey, that's darkest night: http://maemo.cloud-7.de/share-service/DSCF0137.JPG 2014-01-26 03:50 well, as dark as it gets at night in a town, with cloudy sky 2014-01-26 03:51 actually no, that was just some initialization or something, idk 2014-01-26 03:51 it actually works 2014-01-26 03:51 and I verified I can use my PSU to drive all three steppers at full speed 2014-01-26 03:51 DocScrutinizer05: neat. lemme check the exif ... 2014-01-26 03:51 it even has some current left, about 1A 2014-01-26 03:52 good :-) 2014-01-26 03:52 kewl. 1/2 of the problems solved 2014-01-26 03:53 DocScrutinizer05: only 800 ISO, it says. maybe try to get a little higher. e.g., 3200. see how grainy it gets. 2014-01-26 03:55 auto mode, I just pointed and shot 2014-01-26 03:56 yeah, it says so :) 2014-01-26 03:56 except that you may have manually selected "Night scene". or maybe it figured that out on its own as well :) 2014-01-26 03:57 yes, auto mode 2014-01-26 03:58 it's a bit grainy, which is surprising for only 800 ISO. has a very nice "painting" effect on the branches, though 2014-01-26 03:58 it's a nice proof of the anti-shake 2014-01-26 03:59 1/8.5s "from the hip" 2014-01-26 04:01 the orangy WB is actually kinda correct, it looks even more orange than in the photo, thanks to Na-lamps 2014-01-26 04:07 same scene as seen by N900: http://maemo.cloud-7.de/share-service/20140126_002.jpg 2014-01-26 04:08 ah yes, there's a bit of a difference now ;-) 2014-01-26 04:09 I think yes there is :-) 2014-01-26 04:10 okay, no 7812's 2014-01-26 04:10 but I have an LM317 2014-01-26 04:10 hmm, should work too, with correcz circuit 2014-01-26 04:11 yea 2014-01-26 04:13 take care about note E in http://www.ti.com/general/docs/lit/getliterature.tsp?genericPartNumber=lm317&fileType=pdf 2014-01-26 04:13 (diodes) 2014-01-26 04:14 alas, i don't have any buildings with nice trees next door. but here's a view of the city: http://downloads.qi-hardware.com/people/werner/tmp/IMG_3253.JPG and then zooming into the lit area with the trees, some 100 m away: http://downloads.qi-hardware.com/people/werner/tmp/IMG_3257.JPG 2014-01-26 04:15 first was with the camera sitting on a my monitor and with delayed shutter release. for the second i held the camera but used the monitor as support. exposure 1 second, a bit too long for my unsteady hands. 2014-01-26 04:21 hmm. for night mode, i would have to get out a tripod. too much wind :-( 2014-01-26 04:24 beside the motion blur, it does look pretty good, though: http://downloads.qi-hardware.com/people/werner/tmp/IMG_3259.JPG 2014-01-26 04:25 should dial down the brightness a bit. that shop window in the middle looks like a gate to hell 2014-01-26 04:30 panda|x201 has quit [Ping timeout: 245 seconds] 2014-01-26 04:42 wolfspra1l has joined #qi-hardware 2014-01-26 04:47 wolfspraul has quit [Remote host closed the connection] 2014-01-26 04:48 ok, figured out the lm317 circuit, now to think of a way to put it on the pcb... 2014-01-26 04:48 none of the legs of lm317 are compatible with 7812's :( 2014-01-26 05:04 well, nothing that couldn't be fixed with some good ol' wirewrapping 2014-01-26 05:12 ... wow 2014-01-26 05:12 it's been 3 hours since I last used the board 2014-01-26 05:12 I've handled it for at least a hour, probed it, replaced a component on it 2014-01-26 05:12 screwed it back 2014-01-26 05:13 now I plug in the fuse and the LED on the daughterboard lights up, meaning that enormous 2200µF cap still had some charge 2014-01-26 05:13 I almost shat some bricks the moment I've seen it 2014-01-26 05:13 certainly wasn't expecting it. 2014-01-26 05:13 anyway. it's assembled back and ready to be tested... 2014-01-26 05:22 hrm 2014-01-26 05:22 555 doesn't appear to generate any waveforms 2014-01-26 05:22 but maybe my DVM simply cannot measure them 2014-01-26 05:45 *facepalm* 2014-01-26 05:45 http://i.imgur.com/6Wf0Az3.jpg 2014-01-26 05:46 K1 is the socket for the 2014-01-26 05:46 "spindle on" key 2014-01-26 05:46 D3 leads directly from unfiltered Vsource (bypassing 7812) to NE555's !RESET input 2014-01-26 05:47 I don't know why the fuck is it done that way, but the result is that NE555's likely fried 2014-01-26 05:47 fortunately it is not exactly a rare ic 2014-01-26 05:48 also I would be very glad if someone explained me how the contraption of C7 C8 D1 D2 Pr1 works 2014-01-26 05:49 Pr1 is a potentiometer, marked RED BLACK YELLOW 2014-01-26 05:49 (from pin 1) 2014-01-26 05:52 DocScrutinizer05: ok, put 25VDC on both input sockets. the SPINdle does not SPIN at all. 2014-01-26 05:52 and with this motivating discovery I'm off to bed 2014-01-26 06:05 actually no, I'm off to buy NE555 and 7812 and THEN I'm off to bed 2014-01-26 06:05 :-S 2014-01-26 06:05 yeah? 2014-01-26 06:06 well, let's hope the mosfet is ok 2014-01-26 06:06 right, might also want to buy a spare mosfet 2014-01-26 06:06 it's not going to drive me broke 2014-01-26 06:07 those mosfets are usually unkillable though 2014-01-26 06:08 :nod: 2014-01-26 06:09 wow, russian clones of 7812 (КР142ЕН8Б) are still sold 2014-01-26 06:09 lol 2014-01-26 06:09 I've been told that MTBF of those in field is ~1 month 2014-01-26 06:09 did you probe the voltage on that ne555? 2014-01-26 06:09 and they fail by shorting input to ground 2014-01-26 06:09 and imagine what that makes with an AA battery in a tight enclosure... yeah 2014-01-26 06:10 (voltage on ne555) it doesn't have anything on the output 2014-01-26 06:10 appears to be floating 2014-01-26 06:10 I meant VCC 2014-01-26 06:10 or do you mean input voltage from my makeshift 7812? 2014-01-26 06:10 it's 10.6V 2014-01-26 06:10 well within operating range 2014-01-26 06:10 yep 2014-01-26 06:10 ne555 has OC out, no? 2014-01-26 06:11 doesn't appear so 2014-01-26 06:11 it's push-pull 2014-01-26 06:13 have you tried shorting the D-S of mosfet? 2014-01-26 06:13 mm, no 2014-01-26 06:13 lemme try 2014-01-26 06:15 the spindle switches on and eats 1A@25V to 27V 2014-01-26 06:16 I mean, it eats 1A in that range of voltages and just spins faster when voltage is higher. 2014-01-26 06:16 sounds about correct 2014-01-26 06:16 yep 2014-01-26 06:16 it's rated 200W though... so should eat 4A@50V? 2014-01-26 06:19 what is DW1? 2014-01-26 06:19 errr, with load yes 2014-01-26 06:19 DW1? where? 2014-01-26 06:20 on mosfet gate 2014-01-26 06:20 next to C3 2014-01-26 06:20 oooh 2014-01-26 06:20 a glass diode-looking thing 2014-01-26 06:21 o.O 2014-01-26 06:21 will try to read markings now 2014-01-26 06:21 I mean, it has the same package as 1N4148 http://www.egyptuino.com/store/images/detailed/1/signal_diode.jpg 2014-01-26 06:21 dunno what exactly it is yet 2014-01-26 06:22 STmicro something1474 2014-01-26 06:22 prolly it *is* a 1N4148 2014-01-26 06:22 err 2014-01-26 06:23 that other thing realy is a 10R? 2014-01-26 06:23 maybe nit's a Zener then 2014-01-26 06:25 color coding on other thing doesn't make sense 2014-01-26 06:25 brown black black silver brown 2014-01-26 06:26 it's either 1Ω1% or 180Ω1% 2014-01-26 06:26 depending on the order 2014-01-26 06:27 you're talking about the thing at ne555 output? 2014-01-26 06:27 yes 2014-01-26 06:27 blue body cylindrical resistor 2014-01-26 06:27 according to layout/componentplacement it's 10R 2014-01-26 06:28 yeah, guess that is incorrect 2014-01-26 06:28 lemme measure it, actually. mosfet is as good as floating 2014-01-26 06:28 brown black black, solver 2014-01-26 06:28 silver 2014-01-26 06:28 10R 2014-01-26 06:28 indeed 2014-01-26 06:29 but the color coding doesn't match 2014-01-26 06:29 nuke the right brown 2014-01-26 06:29 10% 2014-01-26 06:29 right 2014-01-26 06:29 something I'm not aware of? weird encoding scheme? 2014-01-26 06:29 nah, maybe 1W 2014-01-26 06:29 ah. 2014-01-26 06:30 the body looks like 1/4W 2014-01-26 06:30 this stuff is not +really* standardized 2014-01-26 06:30 could even be a coil/choke :-o 2014-01-26 06:30 hahaha 2014-01-26 06:31 no, it's marked R2 2014-01-26 06:31 mhm 2014-01-26 06:31 what the heck is this huge blob next to the powerswitch? 2014-01-26 06:31 (K1) 2014-01-26 06:32 connector? 2014-01-26 06:32 right down from K1? yes, it's for the steppers daughterboard 2014-01-26 06:32 :nod: 2014-01-26 06:35 I still wonder how that shite works 2014-01-26 06:35 what's the PWM in/output for? 2014-01-26 06:35 unconnected 2014-01-26 06:35 mhm 2014-01-26 06:35 o.O 2014-01-26 06:35 you can set SW1 to left/right with a jumper 2014-01-26 06:35 like on PC motherboards 2014-01-26 06:35 it's set to "down", next to Pr1 2014-01-26 06:35 I suppose this selects the potentiometer controlled mod 2014-01-26 06:35 *mode 2014-01-26 06:36 ooh I see 2014-01-26 06:36 if you set it to "up" it would I guess get the PWM 2014-01-26 06:36 yes 2014-01-26 06:36 via optocoupler 2014-01-26 06:36 and on the stepper board there's actually an unpopulated PWM output 2014-01-26 06:38 DocScrutinizer05: I'm horrified to think what happens if you assert STOP 2014-01-26 06:38 my bet: EL817 explodes 2014-01-26 06:39 it's rated at 60mA cont, 1A peak 2014-01-26 06:39 haha 2014-01-26 06:39 a relais? 2014-01-26 06:40 relais? 2014-01-26 06:40 oh, relay 2014-01-26 06:40 I think EL817 must also be some sort of optocoupler or relais 2014-01-26 06:40 no. it's an optocoupler. BC817 with a LED pointing at base 2014-01-26 06:40 mhm 2014-01-26 06:41 it looks like it operates on spindle running or overloeded 2014-01-26 06:41 R3/R4 = 1R? 2014-01-26 06:41 yes 2014-01-26 06:42 then it will prolly start on 4A 2014-01-26 06:42 no no 2014-01-26 06:42 hm 2014-01-26 06:42 ah you're right 2014-01-26 06:42 so it signals overload 2014-01-26 06:42 I thought it was plugged in reverse direction 2014-01-26 06:43 that makes sense 2014-01-26 06:43 also not connected to anything :] 2014-01-26 06:43 sure, when PWN NC then STOP NC too 2014-01-26 06:43 right 2014-01-26 06:45 okay. can you explain how the contraption around Rp1 works? 2014-01-26 06:45 I have absolutely no idea 2014-01-26 06:46 err yeah 2014-01-26 06:47 that's the R that defines how fast the C of NE55 charges and discharges. Funny enough the split charge and discharge on both sides of same poti 2014-01-26 06:48 so the longer it's "on" the shorter it's "off" 2014-01-26 06:48 D1 and D2 must be "antiparallel" 2014-01-26 06:48 they are 2014-01-26 06:48 C is charging via D1 and discharging via D2 2014-01-26 06:49 ooooo, I understand 2014-01-26 06:49 so it's basically changing duty cycle with two diodes, one cap, one pot and one ne555 2014-01-26 06:49 that's cool 2014-01-26 06:49 without changing freq that is 2014-01-26 06:49 really clever 2014-01-26 06:50 nifty 2014-01-26 06:52 and PWM abuses NE555 as a schmitt trigger basically 2014-01-26 06:53 yeah 2014-01-26 06:54 I'm lost WTF D3 is doing 2014-01-26 06:54 oooh 2014-01-26 06:54 flyback diode for 7812 2014-01-26 06:56 hm 2014-01-26 06:56 ok, eaten it 2014-01-26 06:57 C8 is the freq 2014-01-26 07:04 jekhor has joined #qi-hardware 2014-01-26 07:07 mhm, can't seem to easily find dual 24V/48V power supply in .RU 2014-01-26 07:07 certainly not at these currents 2014-01-26 07:08 DocScrutinizer05: how hard it is, would you think, to make a mains 24V/48V switchmode supply myself? 2014-01-26 07:08 I don't really want another 3kg shitty transformer there which is likely to burn just as well! 2014-01-26 07:08 I recommend to NOT try that 2014-01-26 07:09 you think so? 2014-01-26 07:09 building SPSU is no witchcraft but annoyingly tricky 2014-01-26 07:10 well, I've built several. but for lower voltages. 2014-01-26 07:11 starts with transformer and doesn't end at low-ESR Cs 2014-01-26 07:11 okay, bad idea, I agree 2014-01-26 07:12 how about this: make a 48V->24V buck converter and use a single 48V off the shelf supply? 2014-01-26 07:12 or just buy it 2014-01-26 07:12 how about using two 24V off-the-shelf supplies 2014-01-26 07:13 too much shit to bother about 2014-01-26 07:13 really don't like this as a permanent solution 2014-01-26 07:13 what's the problem? 2014-01-26 07:14 24V+24V=48V 2014-01-26 07:14 need to carry two supplies, remember to plug them both in before enabling the device 2014-01-26 07:14 nah, they fit in where the transformer been 2014-01-26 07:14 two? unlikely 2014-01-26 07:15 well, maybe 2014-01-26 07:15 do you have a specific PSU in mind? 2014-01-26 07:15 laptop PSU? 2014-01-26 07:15 won't fit for sure. also, expensive 2014-01-26 07:16 also, not enough current, those I've seen were under 100W 2014-01-26 07:16 and spindle alone needs 200W... steppers eat about 50W 2014-01-26 07:16 Iseem to have seen them up to 3.5A 2014-01-26 07:16 with what voltage? 2014-01-26 07:17 well, I have no particular PSU in mind. not really 2014-01-26 07:17 let's say I don't know where or which PSU to get to satisfy my constraints 2014-01-26 07:17 never seen anything that'd fit 2014-01-26 07:18 also, 250W @ 48V = 5.2A 2014-01-26 07:18 alibaba probably right place to search for that kind of stuff 2014-01-26 07:18 mhm 2014-01-26 07:19 wait, aren't truck batteries 24V? 2014-01-26 07:20 FWIW 2014-01-26 07:20 ugh 2014-01-26 07:21 when the batteries are 24V, so are the chargers 2014-01-26 07:21 still need stepup to 48V 2014-01-26 07:21 and for 200W what I can find is $100+ 2014-01-26 07:24 okay, I kinda can see why they used the transformer now... 2014-01-26 07:25 http://www.ebay.com/itm/24V-4A-Pride-Mobility-Shopride-Scooter-Charger-Original-/121262069181?pt=Battery_Chargers&hash=item1c3bc855bd 2014-01-26 07:25 remember, spindle needs 4A @ 48V 2014-01-26 07:26 yeah 2014-01-26 07:26 thought of scooter/bike chargers already 2014-01-26 07:26 none have such enormous batteries 2014-01-26 07:27 ok, this actually looks not bad: http://www.ebay.com/itm/Logosol-LS-1148-Motion-Control-Device-DC-Power-Supply-48V-11A-24V-2-5A-600VA-/131101846353?pt=BI_Control_Systems_PLCs&hash=item1e86476b51 2014-01-26 07:27 hm, unknown whether it works or not 2014-01-26 07:27 "Functionality/Degree of Testing: Unit powers on and indicates “EMG”. We do not have the necessary resources to further test this unit. Power cable is not included." 2014-01-26 07:27 do you not have a damn multimeter 2014-01-26 07:28 http://www.ebay.com/itm/12V-24V-36V-48V-60V-72V-6A-outpout-110V-220V-LFP-LiFePO4-LimPO4-Battery-Charger-/121171228553?pt=LH_DefaultDomain_0&var=&hash=item1c365e3789 2014-01-26 07:29 not bad 2014-01-26 07:29 but, what about the battery charging circuit? 2014-01-26 07:31 I doubt is has much of a charging unit 2014-01-26 07:31 but dunno for sure 2014-01-26 07:34 http://www.ebay.com/itm/Cnc-Controller-Servo-Stepper-Motor-Driver-DC-Power-Supply-48v-5A-240W-37v-to-50v-/281250802334?pt=LH_DefaultDomain_0&hash=item417bdaaa9e 2014-01-26 07:35 that's pretty nice 2014-01-26 07:41 http://www.ebay.com/itm/ELECTROSTATICS-POWER-SUPPLY-MODEL-200-48V-4A-48-VOLT-AMP-/301080060743?pt=LH_DefaultDomain_0&hash=item4619c52347 2014-01-26 07:41 used and heavy 2014-01-26 07:42 the previous one wouldn't also fit into the case 2014-01-26 07:42 well, not that much of a problem 2014-01-26 07:43 http://www.ebay.com/itm/24V-Power-Supply-3A-Switching-Power-Adapter-72W-AC-to-DC-Transformer-New-Type-/111261108471?pt=LH_DefaultDomain_0&hash=item19e7adc8f7 2014-01-26 07:50 yep, looks about right 2014-01-26 07:50 WTF? http://www.ebay.com/itm/111044654415 LED monster 2014-01-26 07:50 wow 2014-01-26 07:50 510 leds 2014-01-26 07:51 http://www.ebay.com/itm/24V-3A-72W-Watt-AC-DC-Power-Adapter-for-adapter-connector-2-1-2-5-Charger-PSU-/350865927504?pt=LH_DefaultDomain_0&hash=item51b13d2d50 2014-01-26 07:52 http://www.ebay.com/itm/24V-3A-Switching-Power-Supply-AC-DC-Converter-New-/110638231175?pt=LH_DefaultDomain_0&hash=item19c28d6e87 2014-01-26 07:53 err sure. 10bucks, shipping 50 bucks 2014-01-26 07:53 $47 to here 2014-01-26 07:53 yeah 2014-01-26 07:53 I can route it through US actually 2014-01-26 07:53 would be $8 2014-01-26 07:54 okay. let's first wait and see what the CNC vendor responds 2014-01-26 07:55 if they just send me a new control block, awesome. otherwise I'm telling that this one burned 2014-01-26 09:39 wej has quit [Ping timeout: 245 seconds] 2014-01-26 09:40 wej has joined #qi-hardware 2014-01-26 09:56 wolfspra1l has quit [Quit: leaving] 2014-01-26 10:09 xiangfu has joined #qi-hardware 2014-01-26 10:09 wolfspraul has joined #qi-hardware 2014-01-26 10:17 xiangfu has quit [Ping timeout: 260 seconds] 2014-01-26 10:17 xiangfu has joined #qi-hardware 2014-01-26 10:30 jekhor has quit [Ping timeout: 252 seconds] 2014-01-26 10:56 FDCX has joined #qi-hardware 2014-01-26 10:58 xiangfu has quit [Ping timeout: 265 seconds] 2014-01-26 11:00 xiangfu has joined #qi-hardware 2014-01-26 11:04 bartbes has quit [Quit: No Ping reply in 180 seconds.] 2014-01-26 11:05 bartbes has joined #qi-hardware 2014-01-26 12:05 whitequark: you mentioned that someone else had the same problem. did he mention whether/how he solved it ? 2014-01-26 12:20 dos1 has joined #qi-hardware 2014-01-26 12:31 hello there 2014-01-26 12:34 I'm looking for a new soldering iron to replace a cheap 30W model I bought off ebay 2014-01-26 12:36 something with a fine tip, to be used for electronic parts, I'm thinking about a 60W model maybe 2014-01-26 12:36 any advice ? 2014-01-26 12:38 apelete: you should consider one with adjustable power. there are often situations where that is useful. that way, you can solder ic pins with low power, reducing risk of damage, and turn up the heat when doing things that have a lot of metal, e.g., connectors or ground planes 2014-01-26 12:40 wpwrak: will be using it to solder a serial line on this: http://apelete.seketeli.net/gcw-zero-board.jpg 2014-01-26 12:40 doing this on the ben nanonote was painful, that's why I'm thinking about trying with a better iron this time 2014-01-26 12:41 yeah, you want something decent 2014-01-26 12:42 especially if you don't expect this to be the only thing you'll ever do with the iron 2014-01-26 12:42 exactly 2014-01-26 12:44 wpwrak: would you mind pointing a specific model ? not sure about what is selling on ebay :-( 2014-01-26 12:47 Xytronic make good stations. maybe something like this one: http://www.howardelectronics.com/xytronic/lf3000.html 2014-01-26 12:48 or if you want cheaper, this: http://www.howardelectronics.com/xytronic/lf389D.html 2014-01-26 12:53 i general, http://www.howardelectronics.com have decent products, so you can use their catalog as a guide 2014-01-26 12:55 they cover the medium to high range in terms of price. so you won't find the ultra-cheap stuff that may or may not work. and they also have things with very scary prices :) 2014-01-26 12:56 wpwrak: do they ship to worldwide ? 2014-01-26 13:00 it looks great, I hope they do. I might go with the cheap LF-389D model 2014-01-26 13:01 jekhor has joined #qi-hardware 2014-01-26 13:01 you should be able to find some of these products also in europe 2014-01-26 13:09 they do ship worldwide. i bought my 988D from them many years ago. wasn't even too expensive (these things can be heavy, especially the bigger ones) 2014-01-26 13:14 wpwrak: problem is, the input power in europe is 220-240V 2014-01-26 13:18 jekhor has quit [Ping timeout: 245 seconds] 2014-01-26 13:30 jekhor has joined #qi-hardware 2014-01-26 13:32 rz2k has joined #qi-hardware 2014-01-26 13:51 pcercuei has joined #qi-hardware 2014-01-26 14:12 pcercuei: I wanted to ask about some constants in UBIBoot. My RAM chip bus width is 16bit, it has 4 banks, 13 bits for rows, 10 bits for cols. 2014-01-26 14:13 I'll set it like this: SDRAM_BW16 1; SDRAM_BANK4 1; SDRAM_ROW 13; SDRAM_COL 10. 2014-01-26 14:13 But there is also SDRAM_BANK40, SDRAM_ROW0, SDRAM_COL0. What should it be? 2014-01-26 14:18 I'm not sure, that code is not mine 2014-01-26 14:18 but it looks like reset values 2014-01-26 14:19 in board-a320.c, dmcr0 is calculated from SDRAM_BANK40, SDRAM_ROW0, SDRAM_COL0 2014-01-26 14:19 and REG_EMC_DMCR is first set to dmcr0, then to dmcr 2014-01-26 14:20 I'm don't know why it does that but it's probably needed 2014-01-26 14:21 so SDRAM_ROW0=11 and SDRAM_COL0=8 would be the minimal row/column number the SoC can handle 2014-01-26 14:21 which would make sense 2014-01-26 14:21 Looks like SDRAM_SMTH0 is SDRAM_SMTH - 1 2014-01-26 14:21 so just don't change those 2014-01-26 14:22 no, I think it's just a coincidence 2014-01-26 14:40 wpwrak: nice view from that camera 2014-01-26 14:41 Okay, I'll leave those values as they are. 2014-01-26 14:42 SDRAM_TRWL should be the value of "WRITE recovery time" from my datasheet 2014-01-26 14:52 apelete: they tend to have 220 V options 2014-01-26 14:58 wpwrak: you mean the stations actually come with 110 to 220V power regulators built in ? 2014-01-26 14:59 wpwrak: I found this http://www.rapidonline.com/Tools-Equipment/Xytronic-LF-389D-60W-Digital-Display-ESD-Safe-Soldering-Station-85-6780 2014-01-26 15:00 it seems to be the same one but with 220V instead of 110V 2014-01-26 15:00 I asked if it comes with a EU plug, will buy one depending on the reply 2014-01-26 15:02 apelete: looks good 2014-01-26 15:03 (110 vs. 220 V) no, they're usually for one voltage only. but howard often have (or at least had) a 220 V version, too. 2014-01-26 15:03 okay 2014-01-26 15:08 wpwrak: btw, what's the benefit of having a higher power iron (eg. 60W vs 45W or 30W) when one can set the temperature like on the Xytronic ? 2014-01-26 15:46 pcercuei: and what value should SDRAM_TREF be? My datasheet says: "Refresh period (8,192 rows) (tREF) max = 64 ms" 2014-01-26 15:53 porchao has quit [Quit: Leaving...] 2014-01-26 15:59 porchao has joined #qi-hardware 2014-01-26 16:05 pcercuei_ has joined #qi-hardware 2014-01-26 16:05 pcercuei has quit [Ping timeout: 240 seconds] 2014-01-26 16:15 dos1 has quit [Quit: Kabum!] 2014-01-26 16:24 dos1 has joined #qi-hardware 2014-01-26 16:47 xiangfu has quit [Remote host closed the connection] 2014-01-26 16:49 pcercuei_ has quit [Read error: Operation timed out] 2014-01-26 17:03 rz2k has quit [Read error: No route to host] 2014-01-26 17:04 jekhor has quit [Ping timeout: 240 seconds] 2014-01-26 17:22 CYB3R has quit [Ping timeout: 245 seconds] 2014-01-26 17:26 pcercuei has joined #qi-hardware 2014-01-26 18:04 rz2k has joined #qi-hardware 2014-01-26 18:10 apelete: more power = can heat up quicker, can recover from a heat loss more rapidly, can maintain higher temperatures, can heat larger areas 2014-01-26 18:11 apelete: the main real-life benefit is the ability to heat larger areas. e.g., if you need to solder things on a large ground plane that ground plane will suck up a lot of heat. but with 60 W you'll already have some flexibility 2014-01-26 18:12 e.g., mine has 60 W and i rarely have troubles with it getting too cold. besides, reasonable layouts avoid situations where you'd be forced to solder directly on a ground plane 2014-01-26 18:23 wpwrak: (similar problem) he's got a resistor and 555 blown out. I assumed the underlying problem was the same due to similar symptoms 2014-01-26 18:23 and no, the forum thread just dies 2014-01-26 18:23 *died 2014-01-26 18:26 hmm, pity. oh, and responses from .cn may take while due to CNY. 2014-01-26 18:26 wpwrak: wow, never thought about those technical details about soldering, quite a knowledge you've got there 2014-01-26 18:26 apelete: it's just what you notice as you solder a few things ;-) 2014-01-26 18:27 wpwrak: well, let's hope having a better tools will help me get better results, I was terrible last time on the nanonote 2014-01-26 18:27 wpwrak: ah, that's why the vendor doesn't respond... yeeeah 2014-01-26 18:27 s/tools/tool/ 2014-01-26 18:27 apelete meant: "wpwrak: well, let's hope having a better tool will help me get better results, I was terrible last time on the nanonote" 2014-01-26 18:28 when exactly it is this year? 2014-01-26 18:28 yeha, bad tools can make anything a nightmare. and often it's just so bad that you can't even get a clear picture of why you're having a problem 2014-01-26 18:29 whitequark: this week :) the new year started on the 24th, i think 2014-01-26 18:29 ok, then I will not start a ebay dispute when it suggests (at 28th)... give them the benefit of holidays 2014-01-26 18:29 it's one week right? 2014-01-26 18:30 yup 2014-01-26 18:35 Luke-Jr has quit [Excess Flood] 2014-01-26 18:36 Luke-Jr has joined #qi-hardware 2014-01-26 18:40 porchaso0 has joined #qi-hardware 2014-01-26 18:41 porchao has quit [Ping timeout: 260 seconds] 2014-01-26 18:53 wpwrak: what CAD do you use? librecad? 2014-01-26 19:03 porchao has joined #qi-hardware 2014-01-26 19:04 porchaso0 has quit [Ping timeout: 260 seconds] 2014-01-26 19:05 jekhor has joined #qi-hardware 2014-01-26 19:26 whitequark: fped, and in very hackish ways :) 2014-01-26 19:27 oh, for 2D. definitely fped. 2014-01-26 19:28 it lacks some common 2D CAD operations but being parametric makes up for that 2014-01-26 19:28 for 3D, things get messy, though. i plan to have a look at FreeCAD again for that. fped can do 3D (with a little help), but it's rather non-intuitive 2014-01-26 19:30 what you basically do is that you draw slices of the model. and then you give each a certain height. so it's kinda 2.5D. also, since you'll repeat some primitives a lot of times, the gui isn't very useful in this mode of operation. 2014-01-26 19:32 mm 2014-01-26 19:39 the killer feature is of course that it's parametric and that this is a "natural" part of the system 2014-01-26 19:40 isn't it, um, slightly unfinished? 2014-01-26 19:40 other cad systems often have several interfaces for the same task. then you can choose between "draw", "equation solver", etc. 2014-01-26 19:40 well, is anything ever finished ? :) 2014-01-26 19:41 last time I tried to use it, I found it rather incomprehensible 2014-01-26 19:41 maybe should make another try 2014-01-26 19:42 what did you expect to find but didn't ? 2014-01-26 19:42 some limitations as CAD come from it being meant to design footprints. that's why i didn't include overly fancy geometric operations. 2014-01-26 19:43 that was an overall feeling. well, I guess I'll give it another try 2014-01-26 20:02 hey guys 2014-01-26 20:33 _whitelogger has joined #qi-hardware 2014-01-26 20:33 whitequark has joined #qi-hardware 2014-01-26 20:37 wej has joined #qi-hardware 2014-01-26 20:38 DocScrutinizer05: actually, there IS a foss way to generate highly efficient toolpaths! 2014-01-26 20:38 https://code.google.com/p/libactp/ 2014-01-26 20:40 hey, nice 2014-01-26 20:40 wolfspraul has quit [Ping timeout: 245 seconds] 2014-01-26 20:41 yep! I'm currently evaluating various foss CADs/CAMs 2014-01-26 20:41 so far heekscad/heekscam looks the nicest 2014-01-26 20:42 wolfspraul has joined #qi-hardware 2014-01-26 20:43 I find it a tad difficult to understand what exactly been the parameters that resulted in a picture like the one on the URL you posted, but hey... 2014-01-26 20:44 you can guess what's the tool shape 2014-01-26 20:44 and what's the rationale for the path, resulting from that 2014-01-26 20:46 DocScrutinizer05: constant tool engagement angle 2014-01-26 20:46 and least amount of tool entries 2014-01-26 20:46 this allows to maximize speed within the tool's operating range, and reduce wear 2014-01-26 20:46 :nod: 2014-01-26 20:46 (TEA = the percentage of tool's circumference which is cutting at any given time) 2014-01-26 20:54 heekscad really doesn't want to install itself though 2014-01-26 20:54 dos1 has quit [Quit: Kabum!] 2014-01-26 20:55 dos1 has joined #qi-hardware 2014-01-26 21:19 whitequark: heeks is nice. but needs some work/was crashy last time i checked.. and it seems development moved on 2014-01-26 21:22 roh: yeah it appears so 2014-01-26 21:22 I don't really see any OSS on the level of heeks 2014-01-26 21:23 well, there's openscad, but it's a very different kind of software 2014-01-26 21:23 do you know anything? 2014-01-26 21:24 nope.. i thought the developers moved on to freecad plugins or so 2014-01-26 21:25 lekernel has joined #qi-hardware 2014-01-26 21:26 freecad looks kinda nice too 2014-01-26 21:27 havent used it or looked at it recently 2014-01-26 21:30 in the end basically all toolpathes i've used were composites of generated gcode and some manual editing 2014-01-26 21:30 yeah, I understood so much from what I read about gcode 2014-01-26 21:30 so far I'm searching for a good tool to make some of grunt work for me 2014-01-26 21:31 freecad does look like one, plus I guess heeks won't want to work on a crappy one 2014-01-26 21:31 openscam has a nice simulator 2014-01-26 21:31 jep 2014-01-26 21:32 i'd like to have some cam working on openscad data 2014-01-26 21:32 it's despite its name not a cam :D 2014-01-26 21:32 like parametric cam for parametric cad... best in one tool 2014-01-26 21:32 i know. 2014-01-26 21:32 ah 2014-01-26 21:32 and that simulator from openscam plays in there nicely 2014-01-26 21:35 looking at freecad, it definitely looks like a nice tool 2014-01-26 21:36 rz2k has quit [] 2014-01-26 21:38 the parametric bit seems to be "let's just add a python api and see how that works" 2014-01-26 21:53 paul_boddie has joined #qi-hardware 2014-01-26 22:00 I looked at the version of FreeCAD in Debian Sid the other day, but the Python stuff kept failing. 2014-01-26 22:00 Unfortunate when the export functions are written as Python extensions. 2014-01-26 22:00 I'm following this tutorial: http://freecad-tutorial.blogspot.ru/2011/09/engine-1-piston-pin-and-pin-ring.html 2014-01-26 22:01 So I started using OpenSCAD more seriously instead. 2014-01-26 22:01 so far I'm liking it a lot, it seems both powerful and quite understandable 2014-01-26 22:01 and I don't exactly like openscad's scripting approach 2014-01-26 22:01 [for me] textual programs work for abstract stuff like networks and algorithms, but not physical objects 2014-01-26 22:02 FreeCAD has some nice features, albeit confusingly presented. 2014-01-26 22:02 One thing that shows the difference between the two is the thing known as filleting where you smooth off edges. 2014-01-26 22:03 In FreeCAD there are two tools for that - you're not supposed to use "the wrong one", which I managed to avoid by chance - whereas in OpenSCAD it's an FAQ. 2014-01-26 22:04 I figured it out in OpenSCAD, anyway: you just cut a cylinder out of a block and then substract the remainder from whatever you want to fillet. 2014-01-26 22:05 But yes, there's a lot of sitting and thinking (and using your fingers to visualise things, "old school") with OpenSCAD. 2014-01-26 22:06 And I'm not sure how well suited it is to producing models that can be machined using traditional tools, although wpwrak may have something to say about that. 2014-01-26 22:07 (Wow, Ubuntu One not exactly "mission critical" stuff: http://freecad-tutorial.blogspot.no/2011/09/engine-1-piston-pin-and-pin-ring.html#comment-1212081032) 2014-01-26 22:08 s/.no/.com/ 2014-01-26 22:08 paul_boddie meant: "(Wow, Ubuntu One.comt exactly "mission critical" stuff: http://freecad-tutorial.blogspot.com/2011/09/engine-1-piston-pin-and-pin-ring.html#comment-1212081032)" 2014-01-26 22:08 * paul_boddie took a risk there with the regex! 2014-01-26 22:10 the fillet ting in openscad means of course that you can't just "fillet" an edge but that you have to consider the whole geometry. this can get messy. 2014-01-26 22:11 paul_boddie: haven't tried to real-life machine from either. only a bit from heekscad and then a lot with fped 2014-01-26 22:15 I was doing a design the other day, and I was generally thinking in terms of how you'd machine it. 2014-01-26 22:16 But I'm not sure if there are tools to try and convert the operations to actual machining operations. 2014-01-26 22:17 I think you'd have to declare such things explicitly, anyway, since CSG allows for some pretty strange stuff. 2014-01-26 22:18 As in that filleting where the machine would happily cut out the cube, but then flip out upon being told to "negate" it to round off edges. :-) 2014-01-26 22:18 Specify an antimatter cube to begin with... 2014-01-26 22:18 ah no, the cam part of the cad system should translate that ;-) 2014-01-26 22:19 antimatter cube is a possibility. but you need pretty strong containment fields ... 2014-01-26 22:19 Easier to go the 3D printer route at that point. ;-) 2014-01-26 22:22 3D printing still requires a CAM, but apparently it's much simpler to do 2014-01-26 22:23 dunno. both have their specialities. 2014-01-26 22:24 I guess that if you're just doing a layer-by-layer print then the STL file is good enough. 2014-01-26 22:25 you need to print supports and such 2014-01-26 22:32 I saw some 3D printing going on last weekend at a Maker Faire. It was quite the fashion. 2014-01-26 22:32 A lot of it seemed to involve mostly the same kind of MakerBot device or whatever it is called. 2014-01-26 22:34 (fashion) in what sense? 2014-01-26 22:35 Meaning that a lot of people was doing it. There was some other "maker" stuff going on, too, but 3D printing was all over the place. 2014-01-26 22:35 s/was/were/ 2014-01-26 22:35 paul_boddie meant: "Meaning that a lot of people were doing it. There were some other "maker" stuff going on, too, but 3D printing were all over the place." 2014-01-26 22:36 Grrr! qi-bot applies global search and replace without the "g" flag! 2014-01-26 22:38 These people were showing a simple-looking printer: http://blog.polarworks.no/ 2014-01-26 22:38 Not sure if it really cuts it, though. 2014-01-26 22:40 paul_boddie has quit [] 2014-01-26 22:42 jekhor has quit [Read error: Operation timed out] 2014-01-26 22:54 3d printing is nice. very versatile, quiet, clean. cnc milling on the other hand is: precise, takes many materials, but shapes are limited (no overhangs with a 3 axis mill), noisy, and produces copious amounts of dust 2014-01-26 22:57 so 3d printing is a bit more on the art side while cnc is more on the engineering side 2014-01-26 22:57 now divide potential art critics by the number of potential engineers and you have the ratio :) 2014-01-26 23:02 arielenter has joined #qi-hardware 2014-01-26 23:16 3d printing is great for prototyping, but you should not expect proper measurements with devices below a few thousand euros 2014-01-26 23:16 fdm isnt great at keeping tolerances down 2014-01-26 23:17 the powder and 'soup' style stuff is better on that.. but hey.. it has its usecases 2014-01-26 23:20 soup? 2014-01-26 23:20 SLS? 2014-01-26 23:32 yep. in its different variants 2014-01-26 23:32 power and liquid 2014-01-26 23:32 eh powder 2014-01-26 23:32 form1 stuff looks really impressive 2014-01-26 23:35 lekernel has quit [Quit: Leaving]