<?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>Techy Things &#187; raspberry pi</title>
	<atom:link href="https://tech.yipp.ca/category/raspberry-pi/feed/" rel="self" type="application/rss+xml" />
	<link>https://tech.yipp.ca</link>
	<description>Just another Yipp.ca Blogs site</description>
	<lastBuildDate>Thu, 01 May 2025 18:06:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.38</generator>
	<item>
		<title>E: You must put some &#039;deb-src&#039; URIs in your sources.list</title>
		<link>https://tech.yipp.ca/raspberry-pi/e-must-put-deb-src-uris-sources-list/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=e-must-put-deb-src-uris-sources-list</link>
		<comments>https://tech.yipp.ca/raspberry-pi/e-must-put-deb-src-uris-sources-list/#comments</comments>
		<pubDate>Mon, 15 Jan 2024 16:12:47 +0000</pubDate>
		<dc:creator><![CDATA[frank]]></dc:creator>
				<category><![CDATA[raspberry pi]]></category>

		<guid isPermaLink="false">http://tech.yipp.ca/?p=4401</guid>
		<description><![CDATA[<p>pi@pi5:~/wf-panel-pi $ sudo apt build-dep wf-panel-pi Reading package lists... Done E: You must put some 'deb-src' URIs in your sources.list &#160; Solution Uncomment the three lines in /etc/apt/sources.list deb http://deb.debian.org/debian bookworm main contrib non-free non-free-firmware&#46;&#46;&#46;</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/raspberry-pi/e-must-put-deb-src-uris-sources-list/">E: You must put some 'deb-src' URIs in your sources.list</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>pi@pi5:~/wf-panel-pi $ sudo apt build-dep wf-panel-pi<br />
Reading package lists... Done<br />
E: You must put some 'deb-src' URIs in your sources.list</p>
<p>&nbsp;</p>
<h3>Solution</h3>
<p>Uncomment the three lines in /etc/apt/sources.list</p>
<pre>deb http://deb.debian.org/debian bookworm main contrib non-free non-free-firmware
deb http://deb.debian.org/debian-security/ bookworm-security main contrib non-free non-free-firmware
deb http://deb.debian.org/debian bookworm-updates main contrib non-free non-free-firmware
# Uncomment deb-src lines below then 'apt-get update' to enable 'apt-get source'
deb-src http://deb.debian.org/debian bookworm main contrib non-free non-free-firmware
deb-src http://deb.debian.org/debian-security/ bookworm-security main contrib non-free non-free-firmware
deb-src http://deb.debian.org/debian bookworm-updates main contrib non-free non-free-firmware</pre>
<p>sudo vi /etc/apt/sources.list</p>
<p>sudo apt-get update</p>
<h3>Second error</h3>
<p>But then we run in this error</p>
<pre>$ sudo apt build-dep wf-panel-pi
Reading package lists... Done
E: Unable to find a source package for wf-panel-pi


</pre>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/raspberry-pi/e-must-put-deb-src-uris-sources-list/">E: You must put some 'deb-src' URIs in your sources.list</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://tech.yipp.ca/raspberry-pi/e-must-put-deb-src-uris-sources-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add your script on startup for Raspberry Pi 3/4</title>
		<link>https://tech.yipp.ca/supervisord/add-script-startup-raspberry-pi-34/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=add-script-startup-raspberry-pi-34</link>
		<comments>https://tech.yipp.ca/supervisord/add-script-startup-raspberry-pi-34/#comments</comments>
		<pubDate>Mon, 14 Feb 2022 05:43:39 +0000</pubDate>
		<dc:creator><![CDATA[frank]]></dc:creator>
				<category><![CDATA[raspberry]]></category>
		<category><![CDATA[raspberry pi]]></category>
		<category><![CDATA[supervisord]]></category>

		<guid isPermaLink="false">http://tech.yipp.ca/?p=4179</guid>
		<description><![CDATA[<p>$ sudo nano /etc/supervisor/supervisord.conf ; Water Sensor [program:Water_Sensor] command= python /home/pi/water-sensor.py autostart=true autorestart=true Start $ sudo supervisorctl start Water_Sensor Stop $ sudo supervisorctl stop Water_Sensor</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/supervisord/add-script-startup-raspberry-pi-34/">Add your script on startup for Raspberry Pi 3/4</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>$ sudo nano /etc/supervisor/supervisord.conf</p>
<p>; Water Sensor<br />
[program:Water_Sensor]<br />
command= python /home/pi/water-sensor.py<br />
autostart=true<br />
autorestart=true</p>
<p>Start</p>
<p>$ sudo supervisorctl start Water_Sensor</p>
<p>Stop</p>
<p>$ sudo supervisorctl stop Water_Sensor</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/supervisord/add-script-startup-raspberry-pi-34/">Add your script on startup for Raspberry Pi 3/4</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://tech.yipp.ca/supervisord/add-script-startup-raspberry-pi-34/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Raspberry Pi 4 is so fragile</title>
		<link>https://tech.yipp.ca/raspberry/raspberry-pi-4-fragile/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=raspberry-pi-4-fragile</link>
		<comments>https://tech.yipp.ca/raspberry/raspberry-pi-4-fragile/#comments</comments>
		<pubDate>Tue, 01 Feb 2022 19:10:19 +0000</pubDate>
		<dc:creator><![CDATA[frank]]></dc:creator>
				<category><![CDATA[raspberry]]></category>
		<category><![CDATA[raspberry pi]]></category>

		<guid isPermaLink="false">http://tech.yipp.ca/?p=4160</guid>
		<description><![CDATA[<p>https://raspberrypi.stackexchange.com/questions/135963/did-i-busted-my-pi-4-failed-to-open-device-sdcard-cmd-371a0010-status-1fff0</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/raspberry/raspberry-pi-4-fragile/">Raspberry Pi 4 is so fragile</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p><a href="http://tech.yipp.ca/files/2022/02/20220201_012910.jpg"><img class="alignnone size-full wp-image-4161" src="http://tech.yipp.ca/files/2022/02/20220201_012910.jpg" alt="20220201_012910" width="2560" height="1440" /></a></p>
<p>https://raspberrypi.stackexchange.com/questions/135963/did-i-busted-my-pi-4-failed-to-open-device-sdcard-cmd-371a0010-status-1fff0</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/raspberry/raspberry-pi-4-fragile/">Raspberry Pi 4 is so fragile</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://tech.yipp.ca/raspberry/raspberry-pi-4-fragile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interesting Raspberry Pi Projects</title>
		<link>https://tech.yipp.ca/raspberry-pi/interesting-raspberry-pi-projects/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=interesting-raspberry-pi-projects</link>
		<comments>https://tech.yipp.ca/raspberry-pi/interesting-raspberry-pi-projects/#comments</comments>
		<pubDate>Sat, 01 Feb 2020 01:34:58 +0000</pubDate>
		<dc:creator><![CDATA[frank]]></dc:creator>
				<category><![CDATA[raspberry pi]]></category>

		<guid isPermaLink="false">http://tech.yipp.ca/?p=3463</guid>
		<description><![CDATA[<p>Category : Air Quality Detector Hardware Sensors : ESP8266 Author : Cabe Atwell https://www.hackster.io/news/anavi-s-gas-detector-monitors-air-quality-with-espressif-s-esp8266-4db5605fc07</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/raspberry-pi/interesting-raspberry-pi-projects/">Interesting Raspberry Pi Projects</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>Category : Air Quality Detector<br />
Hardware Sensors : ESP8266<br />
Author : <a class="hckui__typography__bodyL hckui__typography__link hckui__typography__bold" href="https://www.hackster.io/CabeAtwell" target="_blank">Cabe Atwell</a><br />
<a href="https://www.hackster.io/news/anavi-s-gas-detector-monitors-air-quality-with-espressif-s-esp8266-4db5605fc07" target="_blank">https://www.hackster.io/news/anavi-s-gas-detector-monitors-air-quality-with-espressif-s-esp8266-4db5605fc07</a></p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/raspberry-pi/interesting-raspberry-pi-projects/">Interesting Raspberry Pi Projects</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://tech.yipp.ca/raspberry-pi/interesting-raspberry-pi-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to display IP address on Raspberry Pi desktop</title>
		<link>https://tech.yipp.ca/raspberry-pi/display-ip-address-raspberry-pi-desktop/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=display-ip-address-raspberry-pi-desktop</link>
		<comments>https://tech.yipp.ca/raspberry-pi/display-ip-address-raspberry-pi-desktop/#comments</comments>
		<pubDate>Sat, 01 Apr 2017 21:13:08 +0000</pubDate>
		<dc:creator><![CDATA[frank]]></dc:creator>
				<category><![CDATA[raspberry pi]]></category>

		<guid isPermaLink="false">http://tech.yipp.ca/?p=2774</guid>
		<description><![CDATA[<p>With ShowIP plugin you can display the Ethernet or Wifi IP in your LXPanel ! Just go to Raspberry Pi 3 Show IP and follow installation instructions $> sudo apt-get --assume-yes install libfm-dev libfm-gtk-dev&#46;&#46;&#46;</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/raspberry-pi/display-ip-address-raspberry-pi-desktop/">How to display IP address on Raspberry Pi desktop</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p><a href="http://tech.yipp.ca/files/2017/04/showip-screenshot.jpg"><img src="http://tech.yipp.ca/files/2017/04/showip-screenshot-800x452.jpg" alt="showip-screenshot" width="720" height="407" class="alignnone size-large wp-image-2775" /></a></p>
<p>With <a href="https://github.com/olignyf/raspberry-pi-showip" target="_blank">ShowIP</a> plugin you can display the Ethernet or Wifi IP in your LXPanel !</p>
<p>Just go to <a href="https://github.com/olignyf/raspberry-pi-showip" target="_blank">Raspberry Pi 3 Show IP</a> and follow installation instructions</p>
<pre>
$> sudo apt-get --assume-yes install libfm-dev libfm-gtk-dev
$> git clone https://github.com/olignyf/raspberry-pi-showip.git
$> cd raspberry-pi-showip
$> make
$> sudo python install.py
</pre>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/raspberry-pi/display-ip-address-raspberry-pi-desktop/">How to display IP address on Raspberry Pi desktop</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://tech.yipp.ca/raspberry-pi/display-ip-address-raspberry-pi-desktop/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
