<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Power Problems &#8211; Mike Richards G4WNC</title>
	<atom:link href="https://photobyte.org/tag/power-problems/feed/" rel="self" type="application/rss+xml" />
	<link>https://photobyte.org</link>
	<description>Freelance Technical Author, Illustrator &#38; Photographer</description>
	<lastBuildDate>Sun, 03 Jul 2022 18:39:21 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.1</generator>
	<item>
		<title>Raspberry Pi Unreliable WiFi &#038; Power Saving</title>
		<link>https://photobyte.org/raspberry-pi-unreliable-wifi-power-saving/</link>
					<comments>https://photobyte.org/raspberry-pi-unreliable-wifi-power-saving/#respond</comments>
		
		<dc:creator><![CDATA[Mike Richards]]></dc:creator>
		<pubDate>Sat, 21 May 2022 16:44:47 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Power Problems]]></category>
		<category><![CDATA[Raspberry pi]]></category>
		<guid isPermaLink="false">https://photobyte.org/?p=10481</guid>

					<description><![CDATA[When using the Raspberry Pi over marginal Wi-Fi links I have experienced problems with the Pi dropping the network entirely. When that happens the only fix is a reboot. After much searching, it would appear that the Wi-Fi power save feature may be contributing to the problem. The Wi-Fi power save is enabled by default [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>When using the Raspberry Pi over marginal Wi-Fi links I have experienced problems with the Pi dropping the network entirely. When that happens the only fix is a reboot. After much searching, it would appear that the Wi-Fi power save feature may be contributing to the problem. The Wi-Fi power save is enabled by default but can be temporarily  disabled by entering:<br><br><strong> iw wlan0 set power_save off</strong><br><br>To make the change permanent, open a terminal session and use the following commands to edit the rc.local file.<br><br><strong>sudo nano /etc/rc.local</strong><br><br>In a blank line above <strong>exit 0</strong>, enter the following:<br><br><strong>/sbin/iw dev wlan0 set power_save off</strong><br><br>Next press Ctl+X followed by Enter to exit and save the file<br>That completes the changes and you can reboot the Pi. To check that the wlan power save is disabled use the following command:<br><br><strong>iw wlan0 get power_save</strong><br></p>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://photobyte.org/raspberry-pi-unreliable-wifi-power-saving/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Unstable Raspberry Pi &#8211; Taming the Power Supply</title>
		<link>https://photobyte.org/unstable-raspberry-pi-taming-the-power-supply/</link>
					<comments>https://photobyte.org/unstable-raspberry-pi-taming-the-power-supply/#comments</comments>
		
		<dc:creator><![CDATA[Mike Richards]]></dc:creator>
		<pubDate>Tue, 04 Feb 2020 10:59:27 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Power Problems]]></category>
		<category><![CDATA[Unreliable]]></category>
		<guid isPermaLink="false">https://photobyte.org/?p=8504</guid>

					<description><![CDATA[I frequently get asked to help with, seemingly random, behaviour of the Raspberry Pi. By far the most common cause is the power supply. Whilst the use of a USB socket for the power supply connection is very convenient, it brings a problem that many overlook. That is the DC resistance of the USB cable. [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>I frequently get asked to help with, seemingly random, behaviour of the Raspberry Pi. By far the most common cause is the power supply. Whilst the use of a USB socket for the power supply connection is very convenient, it brings a problem that many overlook. That is the DC resistance of the USB cable.</p>



<p>In an attempt to make cables more attractive and easier to use, many cable suppliers reduce the conductor size. This reduction in copper content makes the cables cheaper to manufacture and helps create soft, flexible, cables that appeal to the end user. BUT the thin conductor increases the DC resistance and hence the voltage drop. It is not uncommon to find poor quality leads that have a resistance of 0.25 ohm or more. Whilst this doesn&#8217;t sound very serious, you have to bear in mind that the Pi requires one wire for the +ve supply and another for the -ve, so the resistance is double that of a single wire. Simple ohms law will show you that a Pi drawing 1 amp from a 5 volt supply with 0.5 ohm of resistance in the supply lead will drop 0.5V, leaving just 4.5V reaching the Pi. This is below the Pi minimum operating voltage of 4.75V! </p>



<p>To help overcome the voltage drop, the official Pi power supplies now produce a 5.1 volt output. To indicate power problems, the Pi displays a lightning bolt icon at the top right of the screen. However, it is not uncommon to find a Pi based system behaves reliably most of the time but occasionally does odd things. This can be due to a short-term increase in current draw, such as accessing a USB hard drive or other peripheral. These short term drops can be hard to spot, but the Pi has a very useful system log that can be used to identify power problems. These can be observed using the following from the command line:</p>



<p><code>sudo grep -a Under-voltage /var/log/syslog | wc -l</code></p>



<p>This will return details of the number of under-volt events and should be 0 in a good system. Any reports here mean you have a supply problem.</p>



<h2 class="wp-block-heading">Good Quality USB Cables</h2>



<p>As you can see, good quality USB cables are important. The best way to be sure your have the right cable is to only buy cables that support the latest mobile phone fast-charging standards. These have to be able to carry up to 2.4 amps, so require a healthy conductor size. In my experience, Anker power cables are usually a safe buy.</p>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://photobyte.org/unstable-raspberry-pi-taming-the-power-supply/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Page Caching using Disk: Enhanced 

Served from: photobyte.org @ 2025-07-02 00:46:00 by W3 Total Cache
-->