<?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/"><channel><title>Test Instrumentation</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/</link><description>Tool Kits for Test Tools: Your chance to win a Tool Kit for Test Instrumentation. Use whatever parts you like, if your project idea includes a micro:bit we&amp;#39;ll send you a board so you can turn your idea into a project!</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title /><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/no-lies-ir-thermometer---part-iv?CommentId=3e4f710b-0621-4f28-9f61-1a629bf4aa19</link><pubDate>Tue, 28 Nov 2023 21:45:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:3e4f710b-0621-4f28-9f61-1a629bf4aa19</guid><dc:creator>Marvian</dc:creator><description>Hi David, I have same project and I could not communicate with MLX90614. I appreciate if you share your PSOC code so I can figure out it. Thanks, Marvian</description></item><item><title /><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/no-lies-ir-thermometer---part-ii?CommentId=fc871bea-172e-4fa7-b8e0-f6910a43f779</link><pubDate>Wed, 22 Nov 2023 23:13:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:fc871bea-172e-4fa7-b8e0-f6910a43f779</guid><dc:creator>Marvian</dc:creator><description>Hi David, I am new to PSOC5 and I love this project and try to build it but I could not to read the IR, project files the google drive link does not work and I appreciate for sharing the files.</description></item><item><title /><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/no-lies-ir-thermometer---part-i?CommentId=4c3e1d53-93bf-480d-9b4a-922d61b0f141</link><pubDate>Fri, 01 Sep 2023 16:52:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:4c3e1d53-93bf-480d-9b4a-922d61b0f141</guid><dc:creator>Marvian</dc:creator><description>Hi David and Every one, I start Psoc and have CY8KIT-050 and I like this project but I couldn&amp;#39;t communicate with MLX90614. the link of project is not available and I appreciate it to have psoc codes to to find out my mistake. Thanks, Marvian</description></item><item><title /><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/no-lies-ir-thermometer---part-iii?CommentId=bfc38eb2-40f0-4792-a2c1-a305d75ee262</link><pubDate>Wed, 30 Aug 2023 22:02:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:bfc38eb2-40f0-4792-a2c1-a305d75ee262</guid><dc:creator>Marvian</dc:creator><description>Hi, this is a interesting project and I try to do it. may I have your code I could not setup mine and I could not figure out psoc and IR I2C codes. The link does not work. Regards, Marvian Marvian_s at Yahoo.com</description></item><item><title /><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/no-lies-ir-thermometer---part-iii?CommentId=40da638b-629e-4260-bffb-be57e8e1f25e</link><pubDate>Wed, 30 Aug 2023 21:58:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:40da638b-629e-4260-bffb-be57e8e1f25e</guid><dc:creator>Marvian</dc:creator><description>Hi Ever one. this a project I try to do but I could not introduce MLX90614 to PSOC5. I appreciate if you help me and give have code for reading and writing for RAM and EEPROM. or email marvian_s at yahoo.com</description></item><item><title /><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/multicomp-pro-mp710086-dc-power-supply-review?CommentId=6400d13d-de72-46c3-8d70-741b75f9f60c</link><pubDate>Wed, 30 Aug 2023 14:22:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:6400d13d-de72-46c3-8d70-741b75f9f60c</guid><dc:creator>Yorick</dc:creator><description>Hi, I do not have the MP710086 power supply but another Multicomp power supply: MP710509 Thanks to this tutorial, I succesfully displayed the product information using Pyvisa framework, here is the python code: import pyvisa rm = pyvisa.ResourceManager() power_supply = rm.open_resource(&amp;quot;ASRL/dev/ttyACM0::INSTR&amp;quot;) power_supply.baud_rate = 115200 power_supply.query_delay = 0.1 power_supply.called = False power_supply.timeout = 10 power_supply.read_termination = &amp;#39;\n&amp;#39; power_supply.query_termination = &amp;#39;\n&amp;#39; power_supply.write_termination = &amp;#39;\n&amp;#39; print(f&amp;quot;Device info {power_supply.query(&amp;#39;*IDN?&amp;#39;)}&amp;quot;) This display: Device info MP710509 V1.1 SN:00001482 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: import pyvisa rm = pyvisa.ResourceManager() power_supply = rm.open_resource(&amp;quot;ASRL/dev/ttyACM0::INSTR&amp;quot;) power_supply.baud_rate = 115200 power_supply.query_delay = 0.1 power_supply.called = False power_supply.timeout = 10 power_supply.read_termination = &amp;#39;\n&amp;#39; power_supply.query_termination = &amp;#39;\n&amp;#39; power_supply.write_termination = &amp;#39;\n&amp;#39; print(f&amp;quot;Device info {power_supply.query(&amp;#39;*IDN?&amp;#39;)}&amp;quot;) power_supply.write(&amp;quot;VOLT &amp;quot;+str(1)) print(f&amp;quot;Voltage {power_supply.read_ascii_values(&amp;#39;MEAS:VOLT?&amp;#39;)[0]}&amp;quot;) I have the following trace: Device info MP710509 V1.1 SN:00001482 Traceback (most recent call last): 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 print(f&amp;quot;Voltage {power_supply.read_ascii_values(&amp;#39;MEAS:VOLT?&amp;#39;)[0]}&amp;quot;) File &amp;quot;/usr/local/lib/python3.10/dist-packages/pyvisa/resources/messagebased.py&amp;quot;, line 529, in read_ascii_values block = self.read() File &amp;quot;/usr/local/lib/python3.10/dist-packages/pyvisa/resources/messagebased.py&amp;quot;, line 486, in read message = self._read_raw().decode(enco) File &amp;quot;/usr/local/lib/python3.10/dist-packages/pyvisa/resources/messagebased.py&amp;quot;, line 442, in _read_raw chunk, status = self.visalib.read(self.session, size) File &amp;quot;/usr/local/lib/python3.10/dist-packages/pyvisa_py/highlevel.py&amp;quot;, line 519, in read return data, self.handle_return_value(session, status_code) File &amp;quot;/usr/local/lib/python3.10/dist-packages/pyvisa/highlevel.py&amp;quot;, line 251, in handle_return_value raise errors.VisaIOError(rv) pyvisa.errors.VisaIOError: VI_ERROR_TMO (-1073807339): Timeout expired before operation completed. 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; *IDN?&amp;quot;). 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. Thank you very much!</description></item><item><title /><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/working-prototype-of-a-kelvin-4-wire-milliohm-meter?CommentId=c8a58ba5-a46a-440c-a1e6-6404d614183b</link><pubDate>Wed, 05 Apr 2023 02:09:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:c8a58ba5-a46a-440c-a1e6-6404d614183b</guid><dc:creator>jdceletronica</dc:creator><description>muito interesante , mais ten algun amigo que ja feis con arduino nano e que tenha todos os componentes aky no brasil ?</description></item><item><title /><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/b/blog/posts/precision-analog-opto-isolation-amplifier-using-hcnr200-201?CommentId=25d46e4e-2e36-42d0-a678-7687cc21e7b3</link><pubDate>Thu, 28 Jul 2022 12:59:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:25d46e4e-2e36-42d0-a678-7687cc21e7b3</guid><dc:creator>VictorKhan</dc:creator><description>Hi Hassan, I need to measure 0-60 V analog input signal what are the modifications I need to make to suit my requirement. Can you please help? Thanks</description></item><item><title>Wiki Page: Featured Content Triptych Setup Doc</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/w/setup/27017/featured-content-triptych-setup-doc</link><pubDate>Mon, 06 Dec 2021 00:51:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:1beb0a10-c5e1-4526-95e3-9b9c537f4681</guid><dc:creator>tariq.ahmad</dc:creator><description>Size Matters Not - An R2D2 Story Mini Gameboy Home Console: The Gamebox DMG Consolizer Jumbo LED Tiny24hourMoBot #4 : The 24 hours is almost up Building a Miniature 300W Speaker Simulator LED Tree</description></item><item><title>Wiki: Setup</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/w/setup</link><pubDate>Mon, 06 Dec 2021 00:51:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:ca6185cc-80fa-42a6-a163-b4e5feb8da7e</guid><dc:creator /><description /></item><item><title>Wiki: Documents</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/w/documents</link><pubDate>Fri, 19 Nov 2021 21:57:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:4de78db6-a379-4146-92e2-1459c4bc3a22</guid><dc:creator /><description /></item><item><title>File: VI Curve Tracer</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/m/managed-videos/142391</link><pubDate>Wed, 10 Nov 2021 20:39:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:122c814b-cbd4-4dd0-86f6-0aadbf2bc6fd</guid><dc:creator>ralphjy</dc:creator><description>VI Curve Tracer Video</description><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/test">test</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/instrumentation">instrumentation</category></item><item><title>File: UV and OV indicators - tinyMonster Analog Opto Isolator</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/m/managed-videos/142384</link><pubDate>Wed, 10 Nov 2021 20:38:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:8ca299c2-32b9-4141-8c0b-2f55a57f082e</guid><dc:creator>mahmood.hassan</dc:creator><description>UV and OV indicators for tinyMonster Analog Opto Isolator</description><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/microbit">microbit</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/optocoupler">optocoupler</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/arduino">arduino</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/analog">analog</category></item><item><title>File: 0.1V INPUT TEST - tinyMonster Analog Opto Isolator</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/m/managed-videos/142382</link><pubDate>Wed, 10 Nov 2021 20:38:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:2b3747b5-cdb9-4149-9558-c03972bee8d4</guid><dc:creator>mahmood.hassan</dc:creator><description>1.5V INPUT is applied to test - tinyMonster Analog Opto Isolator output</description><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/microbit">microbit</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/optocoupler">optocoupler</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/arduino">arduino</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/analog">analog</category></item><item><title>File: 0.5V INPUT TEST - tinyMonster Analog Opto Isolator</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/m/managed-videos/142381</link><pubDate>Wed, 10 Nov 2021 20:38:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:9695ea1b-2e0c-48f4-9998-1f8043b827c0</guid><dc:creator>mahmood.hassan</dc:creator><description>1.5V INPUT is applied to TEST - tinyMonster Analog Opto Isolator output</description><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/microbit">microbit</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/optocoupler">optocoupler</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/arduino">arduino</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/analog">analog</category></item><item><title>File: 1.0V INPUT TEST - tinyMonster Analog Opto Isolator</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/m/managed-videos/142379</link><pubDate>Wed, 10 Nov 2021 20:38:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:8d32932d-58fc-46a5-aa13-bee4fd1275ae</guid><dc:creator>mahmood.hassan</dc:creator><description>1.0V INPUT is applied to test - tinyMonster Analog Opto Isolator - output</description><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/microbit">microbit</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/optocoupler">optocoupler</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/arduino">arduino</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/analog">analog</category></item><item><title>File: 1.5V INPUT TEST - tinyMonster Analog Opto Isolator</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/m/managed-videos/142378</link><pubDate>Wed, 10 Nov 2021 20:38:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:d596b003-82e0-4f68-9ec0-45d88194c057</guid><dc:creator>mahmood.hassan</dc:creator><description>1.5V INPUT is applied to tinyMonster Analog Opto Isolator And tested the voltage at output</description><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/microbit">microbit</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/optocoupler">optocoupler</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/arduino">arduino</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/analog">analog</category></item><item><title>File: MAXIMUM OUTPUT limit to 3.0V - tinyMonster Analog Optocoupler</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/m/managed-videos/142377</link><pubDate>Wed, 10 Nov 2021 20:38:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:60c54cd8-61be-42d3-bb63-9103be128d0e</guid><dc:creator>mahmood.hassan</dc:creator><description>MAXIMUM OUTPUT is limit to 3.0V - tinyMonster Analog Optocoupler - to safely work with microbit BBC</description><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/microbit">microbit</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/optocoupler">optocoupler</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/arduino">arduino</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/analog">analog</category></item><item><title>File: Negative INPUT Blocking - tinyMonster Analog OptoCoupler</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/m/managed-videos/142376</link><pubDate>Wed, 10 Nov 2021 20:38:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:af7c49c2-445a-46ba-948c-d03cabb12337</guid><dc:creator>mahmood.hassan</dc:creator><description>Apply Negative INPUT and tinyMonster Analog OptoCoupler will block it</description><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/microbit">microbit</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/optocoupler">optocoupler</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/arduino">arduino</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/analog">analog</category></item><item><title>File: MIN. OUTPUT of tinyMonster Opto Isolator</title><link>https://community.element14.com/challenges-projects/project14/test-instrumentation/m/managed-videos/142375</link><pubDate>Wed, 10 Nov 2021 20:38:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:e9269856-6bf6-49a0-916e-1a11a7be1b5e</guid><dc:creator>mahmood.hassan</dc:creator><description>minimum output of tinyMonster Opto Isolator</description><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/microbit">microbit</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/optocoupler">optocoupler</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/arduino">arduino</category><category domain="https://community.element14.com/challenges-projects/project14/test-instrumentation/tags/analog">analog</category></item></channel></rss>