<?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/"><channel><title>Multicomp Pro MP710086 DC Power Supply Review</title><link>/challenges-projects/project14/test-instrumentation/b/blog/posts/multicomp-pro-mp710086-dc-power-supply-review</link><description>Updated 19 May 2021: Section on SCPIUpdated 21 June 2021: Added pyvisa SCPI test I obtained and have been using a Multicomp Pro MP710086 Multicomp Pro MP710086 DC Power Supply for the last couple of months. My unit has 0 - 30V DC, 0 - 5A ou...</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Multicomp Pro MP710086 DC Power Supply Review</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/multicomp-pro-mp710086-dc-power-supply-review</link><pubDate>Wed, 30 Aug 2023 14:22:32 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5</guid><dc:creator>Yorick</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I do not have the MP710086 power supply but another Multicomp power supply: MP710509&lt;/p&gt;
&lt;p&gt;Thanks to this tutorial, I succesfully displayed the product information using Pyvisa framework, here is the python code:&lt;/p&gt;
&lt;p&gt;[embed:dc8ab71f-3b98-42d9-b0f6-e21e02a0f8e2:a19d7896-9023-456f-a113-33a112c760e8:type=python&amp;text=import%20pyvisa%0A%0Arm%20%3D%20pyvisa.ResourceManager%28%29%0Apower_supply%20%3D%20rm.open_resource%28%22ASRL%2Fdev%2FttyACM0%3A%3AINSTR%22%29%0Apower_supply.baud_rate%20%3D%20115200%0Apower_supply.query_delay%20%3D%200.1%0Apower_supply.called%20%3D%20False%0Apower_supply.timeout%20%3D%2010%0Apower_supply.read_termination%20%3D%20%20%27%5Cn%27%0Apower_supply.query_termination%20%3D%20%27%5Cn%27%0Apower_supply.write_termination%20%3D%20%27%5Cn%27%0Aprint%28f%22Device%20info%20%7Bpower_supply.query%28%27%2AIDN%3F%27%29%7D%22%29]&lt;/p&gt;
&lt;p&gt;This display: &lt;strong&gt;Device info MP710509 V1.1 SN:00001482&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Unfortunately, that is the only thing I am able to get from this power supply, here is the code when I am trying to set and read the voltage:&lt;/p&gt;
&lt;p&gt;[embed:dc8ab71f-3b98-42d9-b0f6-e21e02a0f8e2:d6a588d5-4d94-4e19-99f1-1a5c81d9210d:type=python&amp;text=import%20pyvisa%0A%0Arm%20%3D%20pyvisa.ResourceManager%28%29%0Apower_supply%20%3D%20rm.open_resource%28%22ASRL%2Fdev%2FttyACM0%3A%3AINSTR%22%29%0Apower_supply.baud_rate%20%3D%20115200%0Apower_supply.query_delay%20%3D%200.1%0Apower_supply.called%20%3D%20False%0Apower_supply.timeout%20%3D%2010%0Apower_supply.read_termination%20%3D%20%20%27%5Cn%27%0Apower_supply.query_termination%20%3D%20%27%5Cn%27%0Apower_supply.write_termination%20%3D%20%27%5Cn%27%0Aprint%28f%22Device%20info%20%7Bpower_supply.query%28%27%2AIDN%3F%27%29%7D%22%29%0Apower_supply.write%28%22VOLT%20%22%2Bstr%281%29%29%0Aprint%28f%22Voltage%20%7Bpower_supply.read_ascii_values%28%27MEAS%3AVOLT%3F%27%29%5B0%5D%7D%22%29%0A]&lt;/p&gt;
&lt;p&gt;I have the following trace:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Device info MP710509 V1.1 SN:00001482&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;Traceback (most recent call last):&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp; File &amp;quot;/home/ww_bum_evi_ci_agent1/tmp/yorick/EVI-SW.dhcom_image_generator4/step_impl/power_supply/mp710509.py&amp;quot;, line 14, in &amp;lt;module&amp;gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print(f&amp;quot;Voltage {power_supply.read_ascii_values(&amp;#39;MEAS:VOLT?&amp;#39;)[0]}&amp;quot;)&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp; File &amp;quot;/usr/local/lib/python3.10/dist-packages/pyvisa/resources/messagebased.py&amp;quot;, line 529, in read_ascii_values&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; block = self.read()&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp; File &amp;quot;/usr/local/lib/python3.10/dist-packages/pyvisa/resources/messagebased.py&amp;quot;, line 486, in read&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; message = self._read_raw().decode(enco)&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp; File &amp;quot;/usr/local/lib/python3.10/dist-packages/pyvisa/resources/messagebased.py&amp;quot;, line 442, in _read_raw&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; chunk, status = self.visalib.read(self.session, size)&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp; File &amp;quot;/usr/local/lib/python3.10/dist-packages/pyvisa_py/highlevel.py&amp;quot;, line 519, in read&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return data, self.handle_return_value(session, status_code)&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp; File &amp;quot;/usr/local/lib/python3.10/dist-packages/pyvisa/highlevel.py&amp;quot;, line 251, in handle_return_value&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; raise errors.VisaIOError(rv)&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;pyvisa.errors.VisaIOError: VI_ERROR_TMO (-1073807339): Timeout expired before operation completed.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I tried a lot of other &amp;quot;write&amp;quot; commands but that was pointless, it has no effect on the power supply. And every query commands I tried ended up with timeout error (excepting &amp;quot;&lt;span&gt;*IDN?&amp;quot;).&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Do you have any idea why this does not work for MP710509? I suspect a brand new command definition for this product (and I cannot find any documentation on the web!). Or maybe that is because it is a multi-channel power supply and I don&amp;#39;t know how to handle the specificities of this kind of product.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thank you very much!&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=11338&amp;AppID=215&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Multicomp Pro MP710086 DC Power Supply Review</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/multicomp-pro-mp710086-dc-power-supply-review</link><pubDate>Mon, 27 Sep 2021 00:46:27 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5</guid><dc:creator>edax</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;Hi Mr. Frank&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Good Day.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I wish to connect the Multicomp PRO MP710086 using the Serial Port at the rear.&lt;/p&gt;&lt;p&gt;However, I can observe the connection via my PC Device Manager but not able to communicate.&lt;/p&gt;&lt;p&gt;I have tried the following:&lt;/p&gt;&lt;p&gt;1. Cross switching the TX &amp;amp; RX cable - Pin 2 &amp;amp; 3&lt;/p&gt;&lt;p&gt;2. Tried connecting via Tera Term&lt;/p&gt;&lt;p&gt;3. Tried 2 other USB to Serial Adaptor Cable&lt;/p&gt;&lt;p&gt;4. Tried updating the USB Serial Adaptor - Driver Software&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;FYI, I am able to communicate on my Digital Oscilloscope Model RIGOL DS1102E using its Serial Port&lt;/p&gt;&lt;p&gt;I only seem to experience connection issue with my DC PSU.&lt;/p&gt;&lt;p&gt;Can you kindly share your connections understanding on your MP710086 DC PSU.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks &amp;amp; Best Regards&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=11338&amp;AppID=215&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Multicomp Pro MP710086 DC Power Supply Review</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/multicomp-pro-mp710086-dc-power-supply-review</link><pubDate>Sun, 29 Aug 2021 02:08:29 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5</guid><dc:creator>edax</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;&lt;span style="font-weight:bold;font-style:inherit;"&gt;Hi Good Day&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-weight:bold;font-style:inherit;"&gt;Re: MP710086 - DC Power Supply&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-style:inherit;"&gt;I forgot to mention that I have a Fluke 45 DVM. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-style:inherit;"&gt;I tried using the same Seral to USB cable and confirmed on the Fluke 45 DVM and confirmed it works.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-style:inherit;"&gt;Thanks&lt;/span&gt;&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=11338&amp;AppID=215&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Multicomp Pro MP710086 DC Power Supply Review</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/multicomp-pro-mp710086-dc-power-supply-review</link><pubDate>Sun, 29 Aug 2021 02:04:02 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5</guid><dc:creator>edax</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;&lt;strong&gt;Hi Good Day &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Re: MP710086 - DC Power Supply&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;As previously stated,&amp;nbsp; I have no issues using the USB TMC Interface.&lt;/p&gt;&lt;p&gt;However when I switch to use the Serial Port at the rear I am not able to make it work using my IDE&amp;#39;s - PyCharm or others.&lt;/p&gt;&lt;p&gt;I am using a Serial to USB Interface cable.&lt;/p&gt;&lt;p&gt;I am able to see the cable connection on my Device Manager as COM5&lt;/p&gt;&lt;p&gt;How ever on my IDE PyCharm I am not able to open or send any simple commands which is possible with the USB Interface&lt;/p&gt;&lt;p&gt;I tried using the PuTTY Configuration too its not getting connected.&lt;/p&gt;&lt;p&gt;I have tried using NI MAX too not able to make *IDN? work &lt;/p&gt;&lt;p&gt;I have tried using Agilent I/O, its not able to recognize.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Do I need any special drivers for this model?&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Kindly assist.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks &amp;amp; Best Regards&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=11338&amp;AppID=215&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Multicomp Pro MP710086 DC Power Supply Review</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/multicomp-pro-mp710086-dc-power-supply-review</link><pubDate>Thu, 15 Jul 2021 00:57:15 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5</guid><dc:creator>colporteur</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;FM, some people collect stamps or coins for a hobby.&lt;/p&gt;&lt;p&gt;What motivated you to start a hobby collecting PS&amp;#39;s?&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=11338&amp;AppID=215&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Multicomp Pro MP710086 DC Power Supply Review</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/multicomp-pro-mp710086-dc-power-supply-review</link><pubDate>Wed, 14 Jul 2021 23:54:52 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5</guid><dc:creator>edax</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;Hi Good Day.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I am presently trying to connect my old Fluke 45 Dual Display with Serial RS-232 Connector.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This unit does not have the IEEE-488 Interface Connector* option.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I connected to my computer using a USB to Null Modem RS232 DB9 Serial Adapter Cable.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Under Device Manager its connected as COM6&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Under Python PYcharm or Visual Studio C# I am not able to identify using the *IDN?&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have searched around and am unable to find any codes on the Internet.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I would appreciate some assistance to write a simple Python or C# script to connect the Fluke 45 DVM and run using SCPI commands. &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks &amp;amp; Best Regards&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=11338&amp;AppID=215&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Multicomp Pro MP710086 DC Power Supply Review</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/multicomp-pro-mp710086-dc-power-supply-review</link><pubDate>Fri, 02 Jul 2021 00:18:10 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5</guid><dc:creator>edax</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;&lt;strong&gt;Python: write and read the DC voltages at RUN Time to DC Power Supply.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;PyCharm Python Console:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I need some assistance to write python codes to do the following:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;span style="font-style:inherit;font-weight:inherit;"&gt;I need to write a voltage change [user input] to the DC Power Supply and read back the measured voltage from the DC Power Supply.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-style:inherit;font-weight:inherit;"&gt;Example the code to change the DC Voltage to 3.3 Volts is: PSU.write(&amp;#39;VOLT 3.3&amp;#39;).&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-style:inherit;font-weight:inherit;"&gt;These changes must take place at &lt;strong&gt;run time&lt;/strong&gt;.&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thank you for your kind support.&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=11338&amp;AppID=215&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Multicomp Pro MP710086 DC Power Supply Review</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/multicomp-pro-mp710086-dc-power-supply-review</link><pubDate>Mon, 21 Jun 2021 14:15:29 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5</guid><dc:creator>edax</dc:creator><slash:comments>3</slash:comments><description>&lt;p&gt;&lt;span&gt;[View:/resized-image/__size/1280x720/__key/commentfiles/f7d226abd59f475c9d224a79e3f0ec07-3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5/contentimage_5F00_208203.png:1280:720]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hi&lt;/p&gt;&lt;p&gt;Finally able to see the Brand FARNELL,MP710086,2017052,FV:V1.5.2&lt;/p&gt;&lt;p&gt;However, can make out what this error is all about:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;The reason for the deprecation is the possible conflict with the visa package provided by the &lt;/span&gt;&lt;a class="jive-link-external-small" href="https://github.com/visa-sdk/visa-python" rel="nofollow ugc noopener" target="_blank"&gt;https://github.com/visa-sdk/visa-python&lt;/a&gt;&lt;span&gt; which can result in hard to debug situations.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; warnings.warn(&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Many Thanks &lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=11338&amp;AppID=215&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Multicomp Pro MP710086 DC Power Supply Review</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/multicomp-pro-mp710086-dc-power-supply-review</link><pubDate>Mon, 21 Jun 2021 12:53:44 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5</guid><dc:creator>edax</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;&lt;span&gt;[View:/resized-image/__size/1280x720/__key/commentfiles/f7d226abd59f475c9d224a79e3f0ec07-3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5/contentimage_5F00_208201.png:1280:720]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;[View:/resized-image/__size/1280x720/__key/commentfiles/f7d226abd59f475c9d224a79e3f0ec07-3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5/contentimage_5F00_208202.png:1280:720]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hi&lt;/p&gt;&lt;p&gt;Apologize for the earlier confusion.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Now here we have a good comparison between NI-Max &amp;amp; Python - PyCharm.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thx &amp;amp; Br&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=11338&amp;AppID=215&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Multicomp Pro MP710086 DC Power Supply Review</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/multicomp-pro-mp710086-dc-power-supply-review</link><pubDate>Mon, 21 Jun 2021 11:34:18 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5</guid><dc:creator>edax</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;Hi&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have conducted the NI IO Trace Test. below is the captured screen. &lt;span&gt;[View:/resized-image/__size/820x674/__key/commentfiles/f7d226abd59f475c9d224a79e3f0ec07-3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5/contentimage_5F00_208200.png:820:674]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thx &amp;amp; Br&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=11338&amp;AppID=215&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Multicomp Pro MP710086 DC Power Supply Review</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/multicomp-pro-mp710086-dc-power-supply-review</link><pubDate>Sat, 19 Jun 2021 07:17:11 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5</guid><dc:creator>edax</dc:creator><slash:comments>2</slash:comments><description>&lt;p&gt;Hi&lt;/p&gt;&lt;p&gt;I have tried using IDLE Shell IDE&lt;/p&gt;&lt;p&gt;&lt;span&gt;[View:/resized-image/__size/1280x720/__key/commentfiles/f7d226abd59f475c9d224a79e3f0ec07-3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5/contentimage_5F00_208198.png:1280:720]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Regards&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=11338&amp;AppID=215&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Multicomp Pro MP710086 DC Power Supply Review</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/multicomp-pro-mp710086-dc-power-supply-review</link><pubDate>Sat, 19 Jun 2021 06:55:47 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5</guid><dc:creator>edax</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Hi&lt;/p&gt;&lt;p&gt;I tried using Python 3.9 (64-bit)&lt;span&gt;[View:/resized-image/__size/1280x720/__key/commentfiles/f7d226abd59f475c9d224a79e3f0ec07-3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5/contentimage_5F00_208197.png:1280:720]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Regards&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=11338&amp;AppID=215&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Multicomp Pro MP710086 DC Power Supply Review</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/multicomp-pro-mp710086-dc-power-supply-review</link><pubDate>Sat, 19 Jun 2021 01:20:33 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5</guid><dc:creator>edax</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Hi&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Tried out &lt;span&gt;PSU.timeout = 10000&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span&gt;Pls see attached image&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span&gt;Errors remains.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;Thx &amp;amp; Br&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;&lt;span&gt;[View:/resized-image/__size/1280x720/__key/commentfiles/f7d226abd59f475c9d224a79e3f0ec07-3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5/contentimage_5F00_208196.png:1280:720]&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=11338&amp;AppID=215&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Multicomp Pro MP710086 DC Power Supply Review</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/multicomp-pro-mp710086-dc-power-supply-review</link><pubDate>Sat, 19 Jun 2021 00:50:20 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5</guid><dc:creator>edax</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;&lt;span&gt;Before you might have manually added a driver for the power supply hence it was showing up in the list but not possible to communicate with. You should be able to communicate with the power supply now that it shows up properly in NI MAX.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;Hi&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;In NIMAX its able to communicate, However If I attempt with Python Id&amp;#39;s its not able to communicate.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;Thx &amp;amp; Br&lt;/span&gt;&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=11338&amp;AppID=215&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Multicomp Pro MP710086 DC Power Supply Review</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/multicomp-pro-mp710086-dc-power-supply-review</link><pubDate>Sat, 19 Jun 2021 00:47:39 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:3c49a708-61be-44a9-8a2e-9d4f0d7c5dc5</guid><dc:creator>edax</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;Hi&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Right you are, In Python ID&amp;#39;s listing devices isn&amp;#39;t a problem.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;However, if I use the resource name and query using:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;print(PSU.query(&amp;quot;*IDN?&amp;quot;))&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Then comes the Errors.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This errors are found only on my Farnell MP 710086 DC Power Supply.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I had purchased this DC PSU because its under USD200 and affordable for the students to purchase and write out their Python programs at home.&lt;/p&gt;&lt;p&gt;and also because it comes with a USB Port and its portable for the students to carry it around with their laptop.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hope you understand why I am grounded with this DC PSU and its problems.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thx &amp;amp; Br&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=11338&amp;AppID=215&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item></channel></rss>