<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.element14.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Forum - Recent Threads</title><link>https://community.element14.com/products/manufacturers/multicomp-pro/f/forum</link><description /><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><lastBuildDate>Mon, 01 Jun 2026 08:48:49 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://community.element14.com/products/manufacturers/multicomp-pro/f/forum" /><item><title>I built a browser-based control panel for our Multicomp Pro bench gear — MP711001 PSU + MP730027 DMM + MP71077x DC Load</title><link>https://community.element14.com/thread/57003?ContentTypeID=0</link><pubDate>Mon, 01 Jun 2026 08:48:49 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:df5200b7-4b0f-4a73-b124-639a94ea1c13</guid><dc:creator>mayermakes</dc:creator><slash:comments>9</slash:comments><comments>https://community.element14.com/thread/57003?ContentTypeID=0</comments><wfw:commentRss>https://community.element14.com/products/manufacturers/multicomp-pro/f/forum/57003/i-built-a-browser-based-control-panel-for-our-multicomp-pro-bench-gear-mp711001-psu-mp730027-dmm-mp71077x-dc-load/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;I recently did another Lab equipment upgrade (video to follow on Element14presents) and wanted to get access to the new devices via my network. this quickly got a bit out of hand.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s called &lt;strong&gt;lab_UI&lt;/strong&gt; and it&amp;#39;s a browser-based control and data-logging panel that talks to your hardware over your local network &amp;mdash; no proprietary software, no USB drivers, just Python and a web browser.&lt;br /&gt;All devices are connected via an ethernet hub to my local network.&lt;/p&gt;
&lt;p&gt;GitHub: &lt;a class="underline underline underline-offset-2 decoration-1 decoration-current/40 hover:decoration-current focus:decoration-current" href="https://github.com/mayermakes/lab_UI" rel="noopener noreferrer nofollow" target="_blank" data-e14adj="t"&gt;https://github.com/mayermakes/lab_UI&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;img alt="image" style="max-height:360px;max-width:640px;" src="https://community.element14.com/resized-image/__size/1280x720/__key/communityserver-discussions-components-files/74/Bildschirmfoto-vom-2026_2D00_05_2D00_30-14_2D00_23_2D00_44.png"  /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:150%;"&gt;The project has two main parts:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;lab_api&lt;/strong&gt; &amp;mdash; a Python driver package with one module per instrument. Each driver handles the raw network communication (TCP for the PSU and DMM, UDP for the DC Load) and exposes clean Python methods: set voltage, enable output, take a measurement, and so on.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;server.py + lab_control.html&lt;/strong&gt; &amp;mdash; a Flask server that wraps those drivers as a REST API, and a single-file HTML/JS frontend that talks to it. You run the server on the machine that&amp;#39;s physically connected to your network (or the same bench PC), then open the UI from any browser on the same LAN &amp;mdash; laptop, tablet, whatever.&lt;/p&gt;
&lt;h2&gt;How it works technically&lt;/h2&gt;
&lt;p&gt;When you start &lt;code&gt;server.py&lt;/code&gt;, it binds to port 5000 and initialises a &lt;code&gt;DeviceManager&lt;/code&gt; that holds references to all three drivers. Connections to the instruments are lazy &amp;mdash; the TCP/UDP sockets aren&amp;#39;t opened until the first actual API call hits that device. If a socket drops mid-session it resets and retries once before returning an HTTP 500, so transient network hiccups don&amp;#39;t kill your session.&lt;/p&gt;
&lt;p&gt;All three devices and the HTML frontend are served from that single port. The API follows a clean REST structure:&lt;/p&gt;
&lt;ul&gt;
&lt;li class="font-claude-response-body whitespace-normal break-words pl-2"&gt;PSU endpoints live under &lt;code&gt;/api/psu/channel/&amp;lt;1&amp;ndash;4&amp;gt;/...&lt;/code&gt; &amp;mdash; you can set voltage, set current limit, toggle output, and read back actual values per channel independently.&lt;/li&gt;
&lt;li class="font-claude-response-body whitespace-normal break-words pl-2"&gt;Multimeter endpoints are under &lt;code&gt;/api/mm/measure/&amp;lt;mode&amp;gt;&lt;/code&gt; &amp;mdash; modes include &lt;code&gt;dc_voltage&lt;/code&gt;, &lt;code&gt;ac_voltage&lt;/code&gt;, &lt;code&gt;dc_current&lt;/code&gt;, &lt;code&gt;ac_current&lt;/code&gt;, &lt;code&gt;resistance&lt;/code&gt;, &lt;code&gt;continuity&lt;/code&gt;, &lt;code&gt;diode&lt;/code&gt;, &lt;code&gt;capacitance&lt;/code&gt;, and &lt;code&gt;frequency&lt;/code&gt;.&lt;/li&gt;
&lt;li class="font-claude-response-body whitespace-normal break-words pl-2"&gt;DC Load endpoints are under &lt;code&gt;/api/dcload/&lt;/code&gt; &amp;mdash; you set the operating mode (CC, CV, CP, or CR), send a setpoint, engage/disengage the load, and read back measured voltage and current.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Thread safety is handled with a &lt;code&gt;threading.Lock&lt;/code&gt; around all driver access, so the auto-polling frontend (which can fire requests every 1, 2, 5, or 10 seconds across all three devices simultaneously) won&amp;#39;t cause race conditions.&lt;/p&gt;
&lt;p&gt;The live chart in the UI plots PSU voltage, PSU current, DMM reading, load voltage, and load current on a shared time axis, keeping up to 120 samples. You can hide individual series, clear history, or export everything as a CSV at any time.&lt;/p&gt;
&lt;p&gt;There&amp;#39;s also a &lt;strong&gt;Config Manager&lt;/strong&gt; that saves complete instrument setups &amp;mdash; server URL, all setpoints, modes, and channel selection &amp;mdash; to browser localStorage and lets you export/import them as JSON. Handy for quickly switching between recurring test configurations.&lt;/p&gt;
&lt;h2&gt;Practical measurement scenarios&lt;/h2&gt;
&lt;p&gt;Here are a few workflows where having all three instruments coordinated like this actually changes how you work:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;PSU output characterisation / load regulation&lt;/strong&gt; Set the PSU to a target rail (say 5 V / 2 A on CH1), put the DC Load in CC mode at a series of current steps, and watch the PSU&amp;#39;s actual output voltage in the live chart. The load current readback and PSU voltage readback are plotted together, so you can see how much the rail sags under load without manually writing anything down. Export to CSV and you&amp;#39;ve got a load-regulation curve.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Battery / supercapacitor discharge profiling&lt;/strong&gt; Put the device under test between the PSU (as a charge source on a separate channel) and the DC Load in CC or CP mode. Poll voltage and current at your chosen rate and the live chart builds a discharge curve in real time. The CSV export gives you the raw data for further analysis.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Power supply efficiency testing&lt;/strong&gt; Use the multimeter in DC voltage mode to measure input voltage at a precise point (useful when you need a third measurement point independent of the PSU&amp;#39;s own readback), and use the load to set the output power demand. With all three polled simultaneously at the same rate, you get correlated input/output measurements for computing efficiency.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Multi-rail DUT bring-up&lt;/strong&gt; The PSU has four independent channels. You can configure each rail (e.g. 3.3 V, 5 V, 12 V, &amp;minus;12 V) with its own current limit, save that as a named config, and bring them all up in sequence without touching the instrument front panel. If something trips a current limit you&amp;#39;ll see it immediately in the chart.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Automated script testing via the REST API&lt;/strong&gt; Because the whole thing is just HTTP, you can drive it from a Python script, a Jupyter notebook, or even a shell script with curl. The API reference in the repo documents every endpoint with request/response examples. This makes it easy to build simple parametric sweeps &amp;mdash; iterate a voltage setpoint, trigger a measurement, log the result &amp;mdash; without needing VISA or any instrument-specific library on the client.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://github.com/mayermakes/lab_UI/blob/main/lab_api/demo.py" rel="noopener noreferrer nofollow" target="_blank" data-e14adj="t"&gt;You can try an example via demo.py in this repo&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It should be quite easy to add drivers for more Instruments / include them in the UI, but of course a rewrite to a more &amp;quot;modular&amp;quot; UI will likely be the next step ( in case I aquire more gear to Automate)&lt;br /&gt;currently MP711001 PSU , MP730027 DMM, MP71077x DC Load are supported. the Driver for an Arbitrary Waveform generator is only working for channel 1 at the moment.&lt;br /&gt;maybe someone reading this post knows how to correctly address channel 2&amp;nbsp;&lt;a id="" href="https://github.com/mayermakes/MP750513_python" rel="noopener noreferrer nofollow" target="_blank" data-e14adj="t"&gt;https://github.com/mayermakes/MP750513_python&lt;br /&gt;https://github.com/mayermakes/MP750513_python/tree/multi-channel&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Obviously the whole project made use of Ai for writing docs etc. the device drivers took a lot of manual tweaking as the devices all behave a bit differently and use different protocols but getting Ai tools to write test scripts that try out possible command structures for SCPI commands helped a lot. this apporach might work for many other devices, so Ideally I hope people contribute drivers for their own devices over time.&lt;br /&gt;&lt;br /&gt;Hope this helps.&lt;br /&gt;Clem&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>MP720019 PC Oscilloscope software download?</title><link>https://community.element14.com/thread/56839?ContentTypeID=0</link><pubDate>Thu, 09 Apr 2026 16:17:05 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:b2f1bb9e-b70f-4c85-b65a-093902bcf33a</guid><dc:creator>genebren</dc:creator><slash:comments>4</slash:comments><comments>https://community.element14.com/thread/56839?ContentTypeID=0</comments><wfw:commentRss>https://community.element14.com/products/manufacturers/multicomp-pro/f/forum/56839/mp720019-pc-oscilloscope-software-download/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;A friend of mine has picked up a used MP720019 PC Oscilloscope but does not have access to load the supplied software from the CD (no CDrom drive).&amp;nbsp; Does anyone know of a link to the software that would help get him up and running?&amp;nbsp; I have looked, but so far, I have had no luck (their website is providing any useful information).&amp;nbsp; Thanks in advance for any assistance.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>DC electronic load MP710773 request for information</title><link>https://community.element14.com/thread/55560?ContentTypeID=0</link><pubDate>Wed, 19 Feb 2025 08:21:14 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:d7d2fd73-4dfe-4a40-bf57-2301921fb231</guid><dc:creator>ipant</dc:creator><slash:comments>2</slash:comments><comments>https://community.element14.com/thread/55560?ContentTypeID=0</comments><wfw:commentRss>https://community.element14.com/products/manufacturers/multicomp-pro/f/forum/55560/dc-electronic-load-mp710773-request-for-information/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Dear Friends,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Hello, hope everyone is fine.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I am interested in the DC electronic load MP710773 and I would like to ask the following, if anyone could assist.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;I cannot find any information on the technical files for the data that it can export: Voltage, Current, Battery capacity ?&lt;/li&gt;
&lt;li&gt;Does it come with its own software environment in order to store the results or it exports a CSV file?&lt;/li&gt;
&lt;li&gt;What exactly is the U disk&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Thanking you All in advance,&lt;/p&gt;
&lt;p&gt;Best regards.&lt;/p&gt;
&lt;p&gt;Ioannis&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>What are you using to reduce and prevent static when working on kit and projects?</title><link>https://community.element14.com/thread/54755?ContentTypeID=0</link><pubDate>Wed, 26 Jun 2024 13:56:49 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:8fa4df11-a319-45eb-818c-853542529fb5</guid><dc:creator>cstanton</dc:creator><slash:comments>11</slash:comments><comments>https://community.element14.com/thread/54755?ContentTypeID=0</comments><wfw:commentRss>https://community.element14.com/products/manufacturers/multicomp-pro/f/forum/54755/what-are-you-using-to-reduce-and-prevent-static-when-working-on-kit-and-projects/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Multicomp Pro now&amp;nbsp;&lt;a id="e14-product-link-0a14c" data-at-areainteracted="rte-content" data-at-type="click" data-at-link-type="link" href="https://referral.element14.com/OrderCodeView?fsku=4312959,4312961,4312962,4312963,4312964,4312965&amp;nsku=86AK3061,86AK3062,86AK3063,86AK3064,86AK3065,86AK3066&amp;COM=e14c-multicomp-ionfans&amp;CMP=e14c-multicomp-ionfans&amp;osetc=e14c-multicomp-ionfans" data-at-label="PRODUCT_BUY_KIT" class="e14-embedded e14_shopping-cart-far e14-link" onclick="event.preventDefault();e14.func.displayProduct(e14.meta.user.country, this, 'embedded-link', e14.func.getProductLinkJSON('0a14c'));" data-farnell="4312959,4312961,4312962,4312963,4312964,4312965" data-newark="86AK3061,86AK3062,86AK3063,86AK3064,86AK3065,86AK3066" data-comoverride="e14c-multicomp-ionfans" data-cmpoverride="e14c-multicomp-ionfans" data-cpc="" data-avnetemea="" data-avnetema="" data-avnetasia="" &gt;has a series of products&lt;/a&gt; &amp;nbsp;available for you to use on your bench&amp;nbsp;top to reduce static while you&amp;#39;re working with its ion fans.&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:360px;max-width:640px;" alt="MP741063" src="https://uk.farnell.com/productimages/large/en_GB/4312959-40.jpg" /&gt;&lt;img loading="lazy" style="max-height:360px;max-width:640px;" alt="MP741064" src="https://uk.farnell.com/productimages/large/en_GB/4312961-40.jpg" /&gt;&lt;/p&gt;
&lt;p&gt;These are available on our&amp;nbsp;EU and APAC stores, they do not have US plugs supplied with them.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;h3 id="mcetoc_1i1ad91g80"&gt;Bill of Materials&lt;/h3&gt;
&lt;p&gt;&lt;/p&gt;
&lt;table class="e14-product-bom-main"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;th&gt;Product Name&lt;/th&gt;
&lt;th&gt;Manufacturer&lt;/th&gt;
&lt;th&gt;Quantity&lt;/th&gt;
&lt;th&gt;&lt;a id="e14-product-link-c8e12" data-at-areainteracted="rte-content" data-at-type="click" data-at-link-type="button" href="https://referral.element14.com/OrderCodeView?fsku=4312959,4312961,4312962,4312963,4312964,4312965&amp;nsku=86AK3061,86AK3062,86AK3063,86AK3064,86AK3065,86AK3066&amp;COM=e14c-multicomp-ionfans&amp;CMP=e14c-multicomp-ionfans&amp;osetc=e14c-multicomp-ionfans" data-at-label="PRODUCT_BUY_KIT" class="e14-embedded e14_shopping-cart-far e14-button" onclick="event.preventDefault();e14.func.displayProduct(e14.meta.user.country, this, 'embedded-link', e14.func.getProductLinkJSON('c8e12'));" data-farnell="4312959,4312961,4312962,4312963,4312964,4312965" data-newark="86AK3061,86AK3062,86AK3063,86AK3064,86AK3065,86AK3066" data-comoverride="e14c-multicomp-ionfans" data-cmpoverride="e14c-multicomp-ionfans" data-cpc=",,,,," data-avnetemea="" data-avnetema="" data-avnetasia="" &gt;View Products&lt;/a&gt; &lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MULTICOMP PRO MP741063 Static Eliminator AC Ion Fan, Benchtop, 240V, 15W&lt;/td&gt;
&lt;td&gt;MULTICOMP PRO&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;&lt;a id="e14-product-link-bd968" data-at-areainteracted="rte-content" data-at-type="click" data-at-link-type="button" href="https://referral.element14.com/OrderCodeView?fsku=4312959&amp;nsku=86AK3061&amp;COM=e14c-multicomp-ionfans&amp;CMP=e14c-multicomp-ionfans&amp;osetc=e14c-multicomp-ionfans" data-at-label="PRODUCT_POPUP_OPEN"class="e14-embedded e14_shopping-cart-far e14-button" onclick="event.preventDefault();e14.func.displayProduct(e14.meta.user.country, this, 'embedded-link', e14.func.getProductLinkJSON('bd968'));" data-farnell="4312959" data-newark="86AK3061" data-comoverride="e14c-multicomp-ionfans" data-cmpoverride="e14c-multicomp-ionfans" data-cpc="undefined" data-avnetemea="" data-avnetema="" data-avnetasia="" &gt;Buy Now&lt;/a&gt; &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MULTICOMP PRO MP741064 Static Eliminator AC Ion Fan, Benchtop, Remote Control, 240V, 20W&lt;/td&gt;
&lt;td&gt;MULTICOMP PRO&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;&lt;a id="e14-product-link-a6cfc" data-at-areainteracted="rte-content" data-at-type="click" data-at-link-type="button" href="https://referral.element14.com/OrderCodeView?fsku=4312961&amp;nsku=86AK3062&amp;COM=e14c-multicomp-ionfans&amp;CMP=e14c-multicomp-ionfans&amp;osetc=e14c-multicomp-ionfans" data-at-label="PRODUCT_POPUP_OPEN"class="e14-embedded e14_shopping-cart-far e14-button" onclick="event.preventDefault();e14.func.displayProduct(e14.meta.user.country, this, 'embedded-link', e14.func.getProductLinkJSON('a6cfc'));" data-farnell="4312961" data-newark="86AK3062" data-comoverride="e14c-multicomp-ionfans" data-cmpoverride="e14c-multicomp-ionfans" data-cpc="undefined" data-avnetemea="" data-avnetema="" data-avnetasia="" &gt;Buy Now&lt;/a&gt; &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MULTICOMP PRO MP741063 STATIC ELIMINATOR AC ION FAN, 240V, 15W ROHS COMPLIANT: YES&lt;/td&gt;
&lt;td&gt;MULTICOMP PRO&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;&lt;a id="e14-product-link-5c9bc" data-at-areainteracted="rte-content" data-at-type="click" data-at-link-type="button" href="https://referral.element14.com/OrderCodeView?fsku=4312962&amp;nsku=86AK3063&amp;COM=e14c-multicomp-ionfans&amp;CMP=e14c-multicomp-ionfans&amp;osetc=e14c-multicomp-ionfans" data-at-label="PRODUCT_POPUP_OPEN"class="e14-embedded e14_shopping-cart-far e14-button" onclick="event.preventDefault();e14.func.displayProduct(e14.meta.user.country, this, 'embedded-link', e14.func.getProductLinkJSON('5c9bc'));" data-farnell="4312962" data-newark="86AK3063" data-comoverride="e14c-multicomp-ionfans" data-cmpoverride="e14c-multicomp-ionfans" data-cpc="undefined" data-avnetemea="" data-avnetema="" data-avnetasia="" &gt;Buy Now&lt;/a&gt; &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MULTICOMP PRO MP741068 ION LAUNCHER, STATIC ELIMINATOR DC FAN ROHS COMPLIANT: NA&lt;/td&gt;
&lt;td&gt;MULTICOMP PRO&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;&lt;a id="e14-product-link-77c52" data-at-areainteracted="rte-content" data-at-type="click" data-at-link-type="button" href="https://referral.element14.com/OrderCodeView?fsku=4312963&amp;nsku=86AK3064&amp;COM=e14c-multicomp-ionfans&amp;CMP=e14c-multicomp-ionfans&amp;osetc=e14c-multicomp-ionfans" data-at-label="PRODUCT_POPUP_OPEN"class="e14-embedded e14_shopping-cart-far e14-button" onclick="event.preventDefault();e14.func.displayProduct(e14.meta.user.country, this, 'embedded-link', e14.func.getProductLinkJSON('77c52'));" data-farnell="4312963" data-newark="86AK3064" data-comoverride="e14c-multicomp-ionfans" data-cmpoverride="e14c-multicomp-ionfans" data-cpc="undefined" data-avnetemea="" data-avnetema="" data-avnetasia="" &gt;Buy Now&lt;/a&gt; &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MULTICOMP PRO MP741069 ION EMITTING NEEDLE, STATIC DC FAN ROHS COMPLIANT: NA&lt;/td&gt;
&lt;td&gt;MULTICOMP PRO&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;&lt;a id="e14-product-link-0f74c" data-at-areainteracted="rte-content" data-at-type="click" data-at-link-type="button" href="https://referral.element14.com/OrderCodeView?fsku=4312964&amp;nsku=86AK3065&amp;COM=e14c-multicomp-ionfans&amp;CMP=e14c-multicomp-ionfans&amp;osetc=e14c-multicomp-ionfans" data-at-label="PRODUCT_POPUP_OPEN"class="e14-embedded e14_shopping-cart-far e14-button" onclick="event.preventDefault();e14.func.displayProduct(e14.meta.user.country, this, 'embedded-link', e14.func.getProductLinkJSON('0f74c'));" data-farnell="4312964" data-newark="86AK3065" data-comoverride="e14c-multicomp-ionfans" data-cmpoverride="e14c-multicomp-ionfans" data-cpc="undefined" data-avnetemea="" data-avnetema="" data-avnetasia="" &gt;Buy Now&lt;/a&gt; &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MULTICOMP PRO MP741070 ION LAUNCHER, STATIC ELIMINATOR AC FAN ROHS COMPLIANT: NA&lt;/td&gt;
&lt;td&gt;MULTICOMP PRO&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;&lt;a id="e14-product-link-a73e6" data-at-areainteracted="rte-content" data-at-type="click" data-at-link-type="button" href="https://referral.element14.com/OrderCodeView?fsku=4312965&amp;nsku=86AK3066&amp;COM=e14c-multicomp-ionfans&amp;CMP=e14c-multicomp-ionfans&amp;osetc=e14c-multicomp-ionfans" data-at-label="PRODUCT_POPUP_OPEN"class="e14-embedded e14_shopping-cart-far e14-button" onclick="event.preventDefault();e14.func.displayProduct(e14.meta.user.country, this, 'embedded-link', e14.func.getProductLinkJSON('a73e6'));" data-farnell="4312965" data-newark="86AK3066" data-comoverride="e14c-multicomp-ionfans" data-cmpoverride="e14c-multicomp-ionfans" data-cpc="undefined" data-avnetemea="" data-avnetema="" data-avnetasia="" &gt;Buy Now&lt;/a&gt; &lt;/td&gt;
&lt;/tr&gt;
&lt;tr class="xs-hide"&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Do you use this kind of hardware when you&amp;#39;re&amp;nbsp;working on electronics? What do you think of them? Let us know in the comments below.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>