<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: pads to pick and place file in EAGLE Forum (Read-Only)</title>
    <link>https://forums.autodesk.com/t5/eagle-forum-read-only/pads-to-pick-and-place-file/m-p/9505099#M9070</link>
    <description>&lt;P&gt;for these i added custom attributes and modified my pick and place ULP, so say add NOPNP or FORCEPNP as an attribute and then have the script spot them and export them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;// Do Not place&lt;BR /&gt;if ( E.value == "dnp" || E.value == "DNP" )&lt;BR /&gt;{ return 0; }&lt;BR /&gt;&lt;BR /&gt;// Specifically set yes to PNP&lt;BR /&gt;if ( E.attribute["FORCEPNP"] )&lt;BR /&gt;{ return 1; }&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;// Zero Ohm jumpers ( 0 OHM resistors usually )&lt;BR /&gt;if ( E.value == "zeroohm" )&lt;BR /&gt;{ return 0; }&lt;/P&gt;&lt;P&gt;// Ignore Test PADS&lt;BR /&gt;if ( !strstr ( E.value, "TESTPAD" ) )&lt;BR /&gt;{ return 0; }&lt;/P&gt;&lt;P&gt;if ( E.value == "" )&lt;BR /&gt;{ return 0; }&lt;/P&gt;&lt;P&gt;// Ignore Stand Offs&lt;BR /&gt;if ( !strstr ( E.value, "STAND-OFF" ) )&lt;BR /&gt;{ return 0; }&lt;/P&gt;&lt;P&gt;if ( !strstr ( E.value, "STANDOFF" ) )&lt;BR /&gt;{ return 0; }&lt;/P&gt;&lt;P&gt;// Jumpers&lt;BR /&gt;if ( !strstr ( E.value, "JUMPER" ) )&lt;BR /&gt;{ return 0; }&lt;/P&gt;&lt;P&gt;// Specifically set no to PNP&lt;BR /&gt;if ( E.attribute["NOPNP"] )&lt;BR /&gt;{ return 0; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;whole script is here, heavily modded the DP one for the neoden 4.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/charlie-x/neoden4" target="_blank"&gt;https://github.com/charlie-x/neoden4&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 10 May 2020 15:51:13 GMT</pubDate>
    <dc:creator>charliex2</dc:creator>
    <dc:date>2020-05-10T15:51:13Z</dc:date>
    <item>
      <title>pads to pick and place file</title>
      <link>https://forums.autodesk.com/t5/eagle-forum-read-only/pads-to-pick-and-place-file/m-p/9504598#M9069</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i am new to Eagle PCB but i made a good progress of developing my first PCB and i do have a question&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have several SMD parts on TOP layer and when&amp;nbsp; generate Pick &amp;amp; Place file i can see them listed and their X/Y but i also have some pads (that goes thru all layers like 2x20 Header and tactile switches) is there a way to make this show in the pick &amp;amp; place files ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;my pick &amp;amp; place machine have the ability to place them (headers , tactile ) automatically&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 10 May 2020 05:45:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/eagle-forum-read-only/pads-to-pick-and-place-file/m-p/9504598#M9069</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-10T05:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: pads to pick and place file</title>
      <link>https://forums.autodesk.com/t5/eagle-forum-read-only/pads-to-pick-and-place-file/m-p/9505099#M9070</link>
      <description>&lt;P&gt;for these i added custom attributes and modified my pick and place ULP, so say add NOPNP or FORCEPNP as an attribute and then have the script spot them and export them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;// Do Not place&lt;BR /&gt;if ( E.value == "dnp" || E.value == "DNP" )&lt;BR /&gt;{ return 0; }&lt;BR /&gt;&lt;BR /&gt;// Specifically set yes to PNP&lt;BR /&gt;if ( E.attribute["FORCEPNP"] )&lt;BR /&gt;{ return 1; }&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;// Zero Ohm jumpers ( 0 OHM resistors usually )&lt;BR /&gt;if ( E.value == "zeroohm" )&lt;BR /&gt;{ return 0; }&lt;/P&gt;&lt;P&gt;// Ignore Test PADS&lt;BR /&gt;if ( !strstr ( E.value, "TESTPAD" ) )&lt;BR /&gt;{ return 0; }&lt;/P&gt;&lt;P&gt;if ( E.value == "" )&lt;BR /&gt;{ return 0; }&lt;/P&gt;&lt;P&gt;// Ignore Stand Offs&lt;BR /&gt;if ( !strstr ( E.value, "STAND-OFF" ) )&lt;BR /&gt;{ return 0; }&lt;/P&gt;&lt;P&gt;if ( !strstr ( E.value, "STANDOFF" ) )&lt;BR /&gt;{ return 0; }&lt;/P&gt;&lt;P&gt;// Jumpers&lt;BR /&gt;if ( !strstr ( E.value, "JUMPER" ) )&lt;BR /&gt;{ return 0; }&lt;/P&gt;&lt;P&gt;// Specifically set no to PNP&lt;BR /&gt;if ( E.attribute["NOPNP"] )&lt;BR /&gt;{ return 0; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;whole script is here, heavily modded the DP one for the neoden 4.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/charlie-x/neoden4" target="_blank"&gt;https://github.com/charlie-x/neoden4&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 10 May 2020 15:51:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/eagle-forum-read-only/pads-to-pick-and-place-file/m-p/9505099#M9070</guid>
      <dc:creator>charliex2</dc:creator>
      <dc:date>2020-05-10T15:51:13Z</dc:date>
    </item>
  </channel>
</rss>

