<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>Comments on: Power supply regulator module</title>
	<atom:link href="http://www.epanorama.net/blog/2020/06/30/power-supply-regulator-module/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.epanorama.net/blog/2020/06/30/power-supply-regulator-module/</link>
	<description>All about electronics and circuit design</description>
	<lastBuildDate>Tue, 28 Apr 2026 09:05:42 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.14</generator>
	<item>
		<title>By: Tomi Engdahl</title>
		<link>https://www.epanorama.net/blog/2020/06/30/power-supply-regulator-module/comment-page-1/#comment-1823745</link>
		<dc:creator><![CDATA[Tomi Engdahl]]></dc:creator>
		<pubDate>Wed, 13 Mar 2024 19:26:41 +0000</pubDate>
		<guid isPermaLink="false">https://www.epanorama.net/blog/?p=186365#comment-1823745</guid>
		<description><![CDATA[https://usa.banggood.com/FandB-WINNERS-WDP5050-50A-DC-LCD-Adjustable-Buck-Power-Supply-Module-with-Constant-Voltage-and-Current-Support-Modbus-p-1846054.html?cur_warehouse=CN]]></description>
		<content:encoded><![CDATA[<p><a href="https://usa.banggood.com/FandB-WINNERS-WDP5050-50A-DC-LCD-Adjustable-Buck-Power-Supply-Module-with-Constant-Voltage-and-Current-Support-Modbus-p-1846054.html?cur_warehouse=CN" rel="nofollow">https://usa.banggood.com/FandB-WINNERS-WDP5050-50A-DC-LCD-Adjustable-Buck-Power-Supply-Module-with-Constant-Voltage-and-Current-Support-Modbus-p-1846054.html?cur_warehouse=CN</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomi Engdahl</title>
		<link>https://www.epanorama.net/blog/2020/06/30/power-supply-regulator-module/comment-page-1/#comment-1823744</link>
		<dc:creator><![CDATA[Tomi Engdahl]]></dc:creator>
		<pubDate>Wed, 13 Mar 2024 19:25:21 +0000</pubDate>
		<guid isPermaLink="false">https://www.epanorama.net/blog/?p=186365#comment-1823744</guid>
		<description><![CDATA[https://www.elecbee.com/en-27166-5A-DC-Adjustable-CNC-Step-Down-Power-Supply-Constant-Voltage-Current-LCD-Screen-Module]]></description>
		<content:encoded><![CDATA[<p><a href="https://www.elecbee.com/en-27166-5A-DC-Adjustable-CNC-Step-Down-Power-Supply-Constant-Voltage-Current-LCD-Screen-Module" rel="nofollow">https://www.elecbee.com/en-27166-5A-DC-Adjustable-CNC-Step-Down-Power-Supply-Constant-Voltage-Current-LCD-Screen-Module</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomi Engdahl</title>
		<link>https://www.epanorama.net/blog/2020/06/30/power-supply-regulator-module/comment-page-1/#comment-1823743</link>
		<dc:creator><![CDATA[Tomi Engdahl]]></dc:creator>
		<pubDate>Wed, 13 Mar 2024 19:24:14 +0000</pubDate>
		<guid isPermaLink="false">https://www.epanorama.net/blog/?p=186365#comment-1823743</guid>
		<description><![CDATA[https://www.ls-homeprojects.co.uk/dps3005-psu-module-and-modbus-rtu-python-arduino/
	
DPS3005 PSU Module and MODBUS RTU Python &amp; Arduino


I recently came across a DPS3005 PSU Module with PC control option , i have used similar modules before in a bench power supply and was impressed with the results . With the launch of a new version that included PC control i decided to order one ! (Banggood.com)

The PC / bluetooth was not mentioned in the supplied instructions and the pc software (windows 7+ only) was available from the sellers listing and also Manufacturers Youtube Channel.


Without giving up and i decided to look on the manufacture’s download link and found a interface datasheet, all in Chinese . Using google translate i was able to see the command set and the interface was basically listed as Modbus Rtu, rs232,9600 baud and slave address 1.

I have no experience with modbus at all and had to do a bit of research to understand this very basics .

    The following functions were listed as supported in the datasheet:
    0x03 – Read data from one or more registers
    0x06 – Write a single register
    0x10 – Write multiple registers

    basic Functions extacted from datasheet , needed for examples below
    Voltage set – Register 0x00
    Current set – Register 0x01
    Voltage measured – Register 0x02
    Current measured – Register 0x03

    power on – Register 0x04

    Loads more see manufactures datasheet for more info…


# DPS3005 MODBUS Example By Luke (www.ls-homeprojects.co.uk) 
# Free to use this code how you like but please link my site
# Requires minimalmodbus library from: https://github.com/pyhys/minimalmodbus


import minimalmodbus


instrument = minimalmodbus.Instrument(&#039;COM4&#039;, 1) # port name, slave address (in decimal)
instrument.serial.port          # this is the serial port name
instrument.serial.baudrate = 9600   # Baud rate 9600 as listed in doc
instrument.serial.bytesize = 8
instrument.serial.timeout = 0.5     # This had to be increased from the default setting else it did not work !




instrument.mode = minimalmodbus.MODE_RTU  #RTU mode 






print instrument.read_register(2, 2)   #read a range of 16-bit registers starting at register 2 to 3 (measured voltage and current)]]></description>
		<content:encoded><![CDATA[<p><a href="https://www.ls-homeprojects.co.uk/dps3005-psu-module-and-modbus-rtu-python-arduino/" rel="nofollow">https://www.ls-homeprojects.co.uk/dps3005-psu-module-and-modbus-rtu-python-arduino/</a></p>
<p>DPS3005 PSU Module and MODBUS RTU Python &amp; Arduino</p>
<p>I recently came across a DPS3005 PSU Module with PC control option , i have used similar modules before in a bench power supply and was impressed with the results . With the launch of a new version that included PC control i decided to order one ! (Banggood.com)</p>
<p>The PC / bluetooth was not mentioned in the supplied instructions and the pc software (windows 7+ only) was available from the sellers listing and also Manufacturers Youtube Channel.</p>
<p>Without giving up and i decided to look on the manufacture’s download link and found a interface datasheet, all in Chinese . Using google translate i was able to see the command set and the interface was basically listed as Modbus Rtu, rs232,9600 baud and slave address 1.</p>
<p>I have no experience with modbus at all and had to do a bit of research to understand this very basics .</p>
<p>    The following functions were listed as supported in the datasheet:<br />
    0&#215;03 – Read data from one or more registers<br />
    0&#215;06 – Write a single register<br />
    0&#215;10 – Write multiple registers</p>
<p>    basic Functions extacted from datasheet , needed for examples below<br />
    Voltage set – Register 0&#215;00<br />
    Current set – Register 0&#215;01<br />
    Voltage measured – Register 0&#215;02<br />
    Current measured – Register 0&#215;03</p>
<p>    power on – Register 0&#215;04</p>
<p>    Loads more see manufactures datasheet for more info…</p>
<p># DPS3005 MODBUS Example By Luke (www.ls-homeprojects.co.uk)<br />
# Free to use this code how you like but please link my site<br />
# Requires minimalmodbus library from: <a href="https://github.com/pyhys/minimalmodbus" rel="nofollow">https://github.com/pyhys/minimalmodbus</a></p>
<p>import minimalmodbus</p>
<p>instrument = minimalmodbus.Instrument(&#8216;COM4&#8242;, 1) # port name, slave address (in decimal)<br />
instrument.serial.port          # this is the serial port name<br />
instrument.serial.baudrate = 9600   # Baud rate 9600 as listed in doc<br />
instrument.serial.bytesize = 8<br />
instrument.serial.timeout = 0.5     # This had to be increased from the default setting else it did not work !</p>
<p>instrument.mode = minimalmodbus.MODE_RTU  #RTU mode </p>
<p>print instrument.read_register(2, 2)   #read a range of 16-bit registers starting at register 2 to 3 (measured voltage and current)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomi Engdahl</title>
		<link>https://www.epanorama.net/blog/2020/06/30/power-supply-regulator-module/comment-page-1/#comment-1695990</link>
		<dc:creator><![CDATA[Tomi Engdahl]]></dc:creator>
		<pubDate>Wed, 28 Oct 2020 15:18:11 +0000</pubDate>
		<guid isPermaLink="false">https://www.epanorama.net/blog/?p=186365#comment-1695990</guid>
		<description><![CDATA[Bench Supplies Get Smaller Thanks To USB-C
https://hackaday.com/2020/10/19/bench-supplies-get-smaller-thanks-to-usb-c/

Bench power supplies are an indispensable tool when prototyping electronics. Being able to set custom voltages and having some sort of current limiting feature are key to making sure that the smoke stays inside all of the parts. Buying a modern bench supply might be a little too expensive though, and converting an ATX power supply can be janky and unreliable. Thanks to the miracle of USB-C, though, you can build your own fully-featured benchtop power supply like [Brian] did without taking up hardly any space, and for only around $12.

USB-C can be used to deliver up to 100W but is limited to a few set voltage levels. For voltages that USB-C doesn’t support, [Brian] turns to an inexpensive ZK-4KX buck-boost DC-DC converter that allows for millivolt-level precision for his supply’s output. 

https://www.youtube.com/watch?v=Xdq6dzH26QY]]></description>
		<content:encoded><![CDATA[<p>Bench Supplies Get Smaller Thanks To USB-C<br />
<a href="https://hackaday.com/2020/10/19/bench-supplies-get-smaller-thanks-to-usb-c/" rel="nofollow">https://hackaday.com/2020/10/19/bench-supplies-get-smaller-thanks-to-usb-c/</a></p>
<p>Bench power supplies are an indispensable tool when prototyping electronics. Being able to set custom voltages and having some sort of current limiting feature are key to making sure that the smoke stays inside all of the parts. Buying a modern bench supply might be a little too expensive though, and converting an ATX power supply can be janky and unreliable. Thanks to the miracle of USB-C, though, you can build your own fully-featured benchtop power supply like [Brian] did without taking up hardly any space, and for only around $12.</p>
<p>USB-C can be used to deliver up to 100W but is limited to a few set voltage levels. For voltages that USB-C doesn’t support, [Brian] turns to an inexpensive ZK-4KX buck-boost DC-DC converter that allows for millivolt-level precision for his supply’s output. </p>
<p><a href="https://www.youtube.com/watch?v=Xdq6dzH26QY" rel="nofollow">https://www.youtube.com/watch?v=Xdq6dzH26QY</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
