--
You received this message because you are subscribed to the Google Groups "OpenPnP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openpnp+u...@googlegroups.com.
To post to this group, send email to ope...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openpnp/f93df167-9e0d-44c6-892a-f8fd2701eb54%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Sequence:
Go to NozzleStart pos at SafeZ height
Go to NozzleStart pos. This is pos over nozzle
with Nozzle Holder spring full compressed.
Go to NozzleMid. Pos. This is same pos as
NozzleStart but different Z height, nozzle holder spring not compressed.
Go to NozzleEnd position, this moves out the nozzle horizontally from nozzle holder.
Go to SafeZ height. This raise up nozzle.
Unloading a nozzle is just the same in reverse order.
--
You received this message because you are subscribed to a topic in the Google Groups "OpenPnP" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/openpnp/AH4M4kZJ3ac/unsubscribe.
To unsubscribe from this group and all its topics, send an email to openpnp+unsubscribe@googlegroups.com.
To post to this group, send email to ope...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openpnp/3d9a267e-d721-4e4b-8293-fdb291bfccac%40googlegroups.com.
You received this message because you are subscribed to the Google Groups "OpenPnP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openpnp+u...@googlegroups.com.
To post to this group, send email to ope...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openpnp/CAJGcfUj%2BeoJQSdXoX415_-eGfmcNBUDCqftawV7jjUijAEQe7g%40mail.gmail.com.
<..>
Additionally: as mojalovaa1 mentioned, you can see the fourth movement in Juha's video. Just play it at 0,25 of normal speed and look at e.g. 00:10. To me it seems that Juha's software uses different paths for mounting and unmounting.
--
You received this message because you are subscribed to the Google Groups "OpenPnP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openpnp+u...@googlegroups.com.
To post to this group, send email to ope...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openpnp/62bbd651-0611-4049-bd64-9b9b278fca18%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "OpenPnP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openpnp+u...@googlegroups.com.
To post to this group, send email to ope...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openpnp/ccdaa278-331b-4a52-8f7d-7d79b15dc1bd%40googlegroups.com.
In case you implement the optional movement for Mojalovaa1 the initial and final end position should be moved only at safeZ height. The global nozzleChangerPos at beginning to unloading it even if no nozzle is loaded and at the end of nozzle loading. If you use location with NaN as default value the impact to actual nozze changer code is small. The reason for this is to not travel over the nozzles tail and accidentally bend loaded nozzles.
--
You received this message because you are subscribed to the Google Groups "OpenPnP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openpnp+u...@googlegroups.com.
To post to this group, send email to ope...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openpnp/53e47ee2-f975-4170-b357-96ca4f961f17%40googlegroups.com.
Can you add annother move, for the future to catch any necessity, as example that of mojavaa1 to avoid collisions.
Further are you willing to include two tweaks?
First, during nozzle change enable vacuum, ie after first move do a pick and after last move do a place.
This is for drivers that optimize travel speed based on the decision if there is components on the nozzle or not .
Second tweaks setting for advanced users to set speed.
In order to be compatible and hidden use rotation .
And because certain nozzles need special rotation value ,rotation should be the value up to two numbers after dot separator.without rounding.
Then two numbers for nozzle load speed and two numbers for nozzle unload speed.
The speed numbers are always percent and the value 1 is added for the final percentage, 99 become 100 and 0 becomes 1.
Example 00.002575. Rotation 0 deg and 26 percent load speed with 76 percent unload speed.
If both load speed and unload speed is zero use the default value.
Instead of calling
moveTo(nt.getChangerMidLocation(), getHead().getMachine().getSpeed() * 0.25);
Use
moveToChanger(nt.getChangerMidLocation(),load,getHead...*0.25)
were load and unload are final boolean.
--
You received this message because you are subscribed to the Google Groups "OpenPnP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openpnp+u...@googlegroups.com.
To post to this group, send email to ope...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openpnp/CAJGcfUhbzHxHF91pxruCGKjwWt5PVRV-RAaPeVKpXcsGrNhSYg%40mail.gmail.com.
Il 30/ott/2016 01:02 "Jason von Nieda" <ja...@vonnieda.org> ha scritto:
>
> Cri,
>
> These sound like good changes, but let me propose a different method:
>
> 1. Change the four locations to just be a list of locations. You can add as many as you want.
This is preferred method, I have not proposed it because of backward compatibility if existing user upgrade later.
> 2. Be able to set a speed per location. The speed will be applied when moving TO that location, whether it is for load or unload.
Ok
> 3. Add an option per location to turn vacuum on. So vacuum can be turned on and off for any given location.
It is not the vacuum actor but pick and place command, and it should blow out the nozzle too or in case of nozzle unload blow out the filter , in this case where no nozzle is beyond.
Remember, im returned to endposition on nozzle unload.
Boolean option that enable/disable pick and place option on begin and end of each single load/unload operation sounds good.
However why you want disable it, it should clean the nozzle and filter too. This is specially important if using nozzles with rubber for melf or special parts like LEDs that need stored on talkum during night.
PS:
Rotation is important too for special nozzles.
Additional proposal, not really urgent but if discussing about different interface it should be talked about.
Why not make the List on Machine.
Item0 is the changerStartPos and used only to calc the movement relative to it. Movement processing is started from 1.
Rotation could be the speed value TO that position.
On NozzleTip wizard only the NozzleChangerStartPos is configurable INCLUDING rotation. The other movements are derived from the general changerMotion List. Further configuration should allow nozzleTips on Machine/Head/Nozzle and the getNozzleTips should include all nozzleTips
that are NOT mounted. Planner need to be checked later or replanning if nozzle is not available to mount. Maybe then getAllNozzleTips and getMountedNozzleTips function should be available too, renamed like your preference.
I know this is more work but could resolve two issues. Shared NozzleTip problem and remove the need for calculator and paper when configuring nozzle changer.
> You received this message because you are subscribed to a topic in the Google Groups "OpenPnP" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/topic/openpnp/AH4M4kZJ3ac/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to openpnp+u...@googlegroups.com.
> To post to this group, send email to ope...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/openpnp/CA%2BQw0jw%3D480%2B_nqg5WLqwfYj%3D3nNo_GLzXRz%3DW5A9svRwV7ehQ%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openpnp/CAJGcfUhYN-hCBtZxpuxuM6dwrtks1FEFoA1Rz5v0L4tHqduG%3DQ%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "OpenPnP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openpnp+u...@googlegroups.com.
To post to this group, send email to ope...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openpnp/67372a16-9d10-4c2c-a88a-686d5f0def3b%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openpnp/6a2ee3d0-a872-4d02-82a0-b5ed170d1413%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to openpnp+unsubscribe@googlegroups.com.
To post to this group, send email to ope...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openpnp/6a2ee3d0-a872-4d02-82a0-b5ed170d1413%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "OpenPnP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openpnp+unsubscribe@googlegroups.com.
To post to this group, send email to ope...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openpnp/3B03EDA3-D787-4D86-8602-94644BB6795A%40mattbrocklehurst.co.uk.

To view this discussion on the web visit https://groups.google.com/d/msgid/openpnp/6a2ee3d0-a872-4d02-82a0-b5ed170d1413%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--You received this message because you are subscribed to the Google Groups "OpenPnP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openpnp+u...@googlegroups.com.
To post to this group, send email to ope...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openpnp/3B03EDA3-D787-4D86-8602-94644BB6795A%40mattbrocklehurst.co.uk.
To view this discussion on the web visit https://groups.google.com/d/msgid/openpnp/f16c8a03-c690-4eca-a1f0-8b81924efad1n%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openpnp/4f820a4f-8647-40c7-88a2-97c9818a3a2bn%40googlegroups.com.