exxos blog - random goings on

Blogs & guides and tales of woo by forum members.
User avatar
exxos
Site Admin
Site Admin
Posts: 28354
Joined: 16 Aug 2017 23:19
Location: UK

Re: exxos blog - random goings on

Post by exxos »

:WTF:

https://www.alibaba.com/product-detail/ ... 1e42FUyegd

Hope shipping to UK isn't £1,641.25 :shock: :shock: :shock: :shock:
User avatar
rubber_jonnie
Site Admin
Site Admin
Posts: 14890
Joined: 17 Aug 2017 19:40
Location: Essex

Re: exxos blog - random goings on

Post by rubber_jonnie »

exxos wrote: 12 Sep 2023 15:32
rubber_jonnie wrote: 12 Sep 2023 15:27 Neat. Can it do SMD? Can't tell from the vid and description.
I've seen videos of it (or similar) doing SOT23 type packages. I think you can get different tips for stuff. But I would probably use paste for that stuff anyway.

The first potential issue I see is that it does not specify from what I can tell, what size of solder you have to use. Generally I am using 0.7mm... But will that go through the tube with the type of drive it has...

All the listings are literally all over the place. Give different model numbers and give no clues what they represent. Cannot see minimum solder thickness either.. It is always a bit of a nightmare trying to find specifications for China stuff :(
Sounds really quite difficult to get specs. I also wonder how the solder behaves when it's being squeezed through the feed rollers. Seems to be fine, but as you say, the thickness etc makes a difference to how it'll feed.
Collector of many retro things!
800XL and 65XE both with Ultimate1MB,VBXL/XE & PokeyMax, SIDE3, SDrive Max, 2x 1010 cassette, 2x 1050 one with Happy mod, 3x 2600 Jr, 7800 and Lynx II
Approx 20 STs, including a 520 STM, 520 STFMs, 3x Mega ST, MSTE & 2x 32 Mhz boosted STEs
Plus the rest, totalling around 50 machines including a QL, 3x BBC Model B, Electron, Spectrums, ZX81 etc...
User avatar
rubber_jonnie
Site Admin
Site Admin
Posts: 14890
Joined: 17 Aug 2017 19:40
Location: Essex

Re: exxos blog - random goings on

Post by rubber_jonnie »

exxos wrote: 12 Sep 2023 16:09 :WTF:

https://www.alibaba.com/product-detail/ ... 1e42FUyegd

Hope shipping to UK isn't £1,641.25 :shock: :shock: :shock: :shock:
Wow, that shipping effectively doubles the price!! Have a look on Amazon, that's where I got my re-flow machine.
Collector of many retro things!
800XL and 65XE both with Ultimate1MB,VBXL/XE & PokeyMax, SIDE3, SDrive Max, 2x 1010 cassette, 2x 1050 one with Happy mod, 3x 2600 Jr, 7800 and Lynx II
Approx 20 STs, including a 520 STM, 520 STFMs, 3x Mega ST, MSTE & 2x 32 Mhz boosted STEs
Plus the rest, totalling around 50 machines including a QL, 3x BBC Model B, Electron, Spectrums, ZX81 etc...
User avatar
sporniket
Site sponsor
Site sponsor
Posts: 1164
Joined: 26 Sep 2020 21:12
Location: France

Re: exxos blog - random goings on

Post by sporniket »

hum, just searched "open source soldering robot" on google, got that :

User avatar
exxos
Site Admin
Site Admin
Posts: 28354
Joined: 16 Aug 2017 23:19
Location: UK

Re: exxos blog - random goings on

Post by exxos »

sporniket wrote: 12 Sep 2023 21:32 hum, just searched "open source soldering robot" on google, got that :
Interesting. Might be worth a go considering price of a proper one. I'd have to see what's involved converting Gerber to gcode. Probably using absolute possitioning might be almost simple.
User avatar
exxos
Site Admin
Site Admin
Posts: 28354
Joined: 16 Aug 2017 23:19
Location: UK

Re: exxos blog - random goings on

Post by exxos »

Spied these 3D printers on evilbay.

https://www.ebay.co.uk/itm/394771743273

Thinking it might be worth getting one with the intention of fitting a soldering iron to it.

I'm not sure how well the head will work pulling solder though as I use 0.7mm. Though all the printer crap I've collected so far, I do have a spring loaded bearing which should grip the solder.

I'd probably have to bypass or hack the firmware assuming I'm not using the head heater sensor.

I'll also have to study the Gerber data to see if there is any simple way to convert to gcode.
User avatar
exxos
Site Admin
Site Admin
Posts: 28354
Joined: 16 Aug 2017 23:19
Location: UK

Re: exxos blog - random goings on

Post by exxos »

Did a simple 3 VIA test.

Capture.PNG

Code: Select all

%
M48
M72
T01C0.03937
%
T01
X5050Y5050
X15050Y5050
X25050Y5050
M30

The first fire should be at location 0,0, then 2.54,0 then 5.08,0

I'm not sure where it gets 5050,5050 from. Obviously the X coordinate is increasing by 100 each time, so 100=2.54mm :shug: I assume it must be in mills.

Really need some way of exporting this into millimetres really..

EDIT

GERBER_RS274X_33MM apparently is the one to use but is even more confusing...

Code: Select all

%
M48
M71
T01C1.000
%
T01
X1283Y1283
X3823Y1283
X6363Y1283
M30
EDIT2:

Ah ok so 3823 - 1283 = 2540. So 2.54mm. Must be x 1000 for some reason :shrug:

I guess I could move the heads to the physical location on the print bed and pretty much just dump the gerber data into Gcode data.
You do not have the required permissions to view the files attached to this post.
User avatar
exxos
Site Admin
Site Admin
Posts: 28354
Joined: 16 Aug 2017 23:19
Location: UK

Re: exxos blog - random goings on

Post by exxos »

Right "Friend A.I" wrote the first conversion script.

Starts like:

Code: Select all

X1283Y1283
X3823Y1283
X6363Y1283
Now exports:

Code: Select all

G92 X1.283 Y1.283
G92 X3.823 Y1.283
G92 X6.363 Y1.283
This will need to use absolute positioning , but the head should theoretically now moved to the three via locations.

What I will do tomorrow is see if I can get it to exclude some "solder" on those 3 locations :) as to how much solder is actually used the solder joint is somewhat of a mystery :lol: I guess I will just set an arbitrary number of 3mm or something for now.
User avatar
exxos
Site Admin
Site Admin
Posts: 28354
Joined: 16 Aug 2017 23:19
Location: UK

Re: exxos blog - random goings on

Post by exxos »

Does anyone know how to zero the printer's current position?

Supposedly it is done with

Code: Select all

G92 X0 Y0 Z0 
but the display on the printer still shows whatever location number it is currently at.

For example I home the printer and it actually homes outside of the physical print bed. That in itself is not actually a problem, but I want to move XY to 50,50 and then reset that to 0,0 on the display.

There also seems to be M206 but nothing I tried seems to reset the actual displayed coordinates :(
User avatar
Icky
Site Admin
Site Admin
Posts: 4375
Joined: 03 Sep 2017 10:57
Location: UK

Re: exxos blog - random goings on

Post by Icky »

Wouldn't there be a need to glue or fix some components down before being soldered otherwise they would move.

Return to “MEMBER BLOGS”

Who is online

Users browsing this forum: ClaudeBot and 15 guests