

 
 <?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	
	>
<channel>
	<title>
	Reacties op: Internet radio luisteren met een Raspberry Pi en PiFace CAD	</title>
	<atom:link href="https://raspberrytips.nl/internet-radio-luisteren-raspberry-pi/feed/" rel="self" type="application/rss+xml" />
	<link>https://raspberrytips.nl/internet-radio-luisteren-raspberry-pi/</link>
	<description>Raspberry Pi en Raspbian tips</description>
	<lastBuildDate>Thu, 06 Jun 2024 06:51:33 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.6.1</generator>
	<item>
		<title>
		Door: Raspberry Pi als Radio-stream-ontvanger &#8211; Eluke.nl		</title>
		<link>https://raspberrytips.nl/internet-radio-luisteren-raspberry-pi/#comment-3202</link>

		<dc:creator><![CDATA[Raspberry Pi als Radio-stream-ontvanger &#8211; Eluke.nl]]></dc:creator>
		<pubDate>Thu, 06 Jun 2024 06:51:33 +0000</pubDate>
		<guid isPermaLink="false">https://raspberrytips.nl/?p=405#comment-3202</guid>

					<description><![CDATA[[&#8230;] software heb ik gebaseerd op deze link, maar aangepast om de standaard in raspberry pi OS (Debian Bullseye) meegeleverde mediaspeler VLC [&#8230;]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] software heb ik gebaseerd op deze link, maar aangepast om de standaard in raspberry pi OS (Debian Bullseye) meegeleverde mediaspeler VLC [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Door: Ben		</title>
		<link>https://raspberrytips.nl/internet-radio-luisteren-raspberry-pi/#comment-1439</link>

		<dc:creator><![CDATA[Ben]]></dc:creator>
		<pubDate>Tue, 27 Aug 2019 22:19:11 +0000</pubDate>
		<guid isPermaLink="false">https://raspberrytips.nl/?p=405#comment-1439</guid>

					<description><![CDATA[In antwoord op &lt;a href=&quot;https://raspberrytips.nl/internet-radio-luisteren-raspberry-pi/#comment-1438&quot;&gt;Ben&lt;/a&gt;.

[code]
pi@raspberrypi:~ $ sudo python3 radio.py &#038;
[2] 3146
pi@raspberrypi:~ $ Traceback (most recent call last):
  File &quot;radio.py&quot;, line 13, in 
    import lirc
  File &quot;/usr/lib/python3/dist-packages/lirc/__init__.py&quot;, line 7, in 
    from .client import get_default_lircrc_path
  File &quot;/usr/lib/python3/dist-packages/lirc/client.py&quot;, line 38, in 
    import _client
ModuleNotFoundError: No module named &#039;_client&#039;
[/code]]]></description>
			<content:encoded><![CDATA[<p>In antwoord op <a href="https://raspberrytips.nl/internet-radio-luisteren-raspberry-pi/#comment-1438">Ben</a>.</p>
<p>[code]<br />
pi@raspberrypi:~ $ sudo python3 radio.py &amp;<br />
[2] 3146<br />
pi@raspberrypi:~ $ Traceback (most recent call last):<br />
  File &#8220;radio.py&#8221;, line 13, in<br />
    import lirc<br />
  File &#8220;/usr/lib/python3/dist-packages/lirc/__init__.py&#8221;, line 7, in<br />
    from .client import get_default_lircrc_path<br />
  File &#8220;/usr/lib/python3/dist-packages/lirc/client.py&#8221;, line 38, in<br />
    import _client<br />
ModuleNotFoundError: No module named &#8216;_client&#8217;<br />
[/code]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Door: Ben		</title>
		<link>https://raspberrytips.nl/internet-radio-luisteren-raspberry-pi/#comment-1438</link>

		<dc:creator><![CDATA[Ben]]></dc:creator>
		<pubDate>Tue, 27 Aug 2019 22:18:10 +0000</pubDate>
		<guid isPermaLink="false">https://raspberrytips.nl/?p=405#comment-1438</guid>

					<description><![CDATA[LIRC bleek niet standaard mee geïnstalleerd te zijn...
Deze heb ik handmatig toegevoegd.
```python
pi@raspberrypi:~ $ sudo python3 radio.py &#038;
[1] 2540
pi@raspberrypi:~ $ Traceback (most recent call last):
  File &quot;radio.py&quot;, line 13, in 
    import lirc
ModuleNotFoundError: No module named &#039;lirc&#039;
```
Nadat ik deze heb toegevoegd met
```python
sudo apt-get install lirc
```
krijg ik de volgende foutmelding, iemand een ide hoe ik dit kan oplossen?
```python
pi@raspberrypi:~ $ sudo python3 radio.py &#038;
[2] 3146
pi@raspberrypi:~ $ Traceback (most recent call last):
  File &quot;radio.py&quot;, line 13, in 
    import lirc
  File &quot;/usr/lib/python3/dist-packages/lirc/__init__.py&quot;, line 7, in 
    from .client import get_default_lircrc_path
  File &quot;/usr/lib/python3/dist-packages/lirc/client.py&quot;, line 38, in 
    import _client
ModuleNotFoundError: No module named &#039;_client&#039;
```]]></description>
			<content:encoded><![CDATA[<p>LIRC bleek niet standaard mee geïnstalleerd te zijn&#8230;<br />
Deze heb ik handmatig toegevoegd.<br />
&#8220;`python<br />
pi@raspberrypi:~ $ sudo python3 radio.py &amp;<br />
[1] 2540<br />
pi@raspberrypi:~ $ Traceback (most recent call last):<br />
  File &#8220;radio.py&#8221;, line 13, in<br />
    import lirc<br />
ModuleNotFoundError: No module named &#8216;lirc&#8217;<br />
&#8220;`<br />
Nadat ik deze heb toegevoegd met<br />
&#8220;`python<br />
sudo apt-get install lirc<br />
&#8220;`<br />
krijg ik de volgende foutmelding, iemand een ide hoe ik dit kan oplossen?<br />
&#8220;`python<br />
pi@raspberrypi:~ $ sudo python3 radio.py &amp;<br />
[2] 3146<br />
pi@raspberrypi:~ $ Traceback (most recent call last):<br />
  File &#8220;radio.py&#8221;, line 13, in<br />
    import lirc<br />
  File &#8220;/usr/lib/python3/dist-packages/lirc/__init__.py&#8221;, line 7, in<br />
    from .client import get_default_lircrc_path<br />
  File &#8220;/usr/lib/python3/dist-packages/lirc/client.py&#8221;, line 38, in<br />
    import _client<br />
ModuleNotFoundError: No module named &#8216;_client&#8217;<br />
&#8220;`</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Door: rogier		</title>
		<link>https://raspberrytips.nl/internet-radio-luisteren-raspberry-pi/#comment-1292</link>

		<dc:creator><![CDATA[rogier]]></dc:creator>
		<pubDate>Thu, 11 Apr 2019 10:02:13 +0000</pubDate>
		<guid isPermaLink="false">https://raspberrytips.nl/?p=405#comment-1292</guid>

					<description><![CDATA[Hi Patrick, ik heb hetzelfde probleem. hoe heb je het opgelost?]]></description>
			<content:encoded><![CDATA[<p>Hi Patrick, ik heb hetzelfde probleem. hoe heb je het opgelost?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Door: patrick		</title>
		<link>https://raspberrytips.nl/internet-radio-luisteren-raspberry-pi/#comment-905</link>

		<dc:creator><![CDATA[patrick]]></dc:creator>
		<pubDate>Sat, 11 Aug 2018 22:38:08 +0000</pubDate>
		<guid isPermaLink="false">https://raspberrytips.nl/?p=405#comment-905</guid>

					<description><![CDATA[In antwoord op &lt;a href=&quot;https://raspberrytips.nl/internet-radio-luisteren-raspberry-pi/#comment-902&quot;&gt;patrick&lt;/a&gt;.

Hij Werkt !!!]]></description>
			<content:encoded><![CDATA[<p>In antwoord op <a href="https://raspberrytips.nl/internet-radio-luisteren-raspberry-pi/#comment-902">patrick</a>.</p>
<p>Hij Werkt !!!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Door: patrick		</title>
		<link>https://raspberrytips.nl/internet-radio-luisteren-raspberry-pi/#comment-902</link>

		<dc:creator><![CDATA[patrick]]></dc:creator>
		<pubDate>Sat, 11 Aug 2018 16:54:29 +0000</pubDate>
		<guid isPermaLink="false">https://raspberrytips.nl/?p=405#comment-902</guid>

					<description><![CDATA[Hi ,

Ik krijg een waslijst aan fouten , graag advies a.u.b
Groet Patrick

pi@raspberrypi:~ $ sudo python3 radio.py
Traceback (most recent call last):
  File &quot;radio.py&quot;, line 185, in 
    cad = pifacecad.PiFaceCAD()
  File &quot;/usr/lib/python3/dist-packages/pifacecad/core.py&quot;, line 50, in __init__
    self.init_board()
  File &quot;/usr/lib/python3/dist-packages/pifacecad/core.py&quot;, line 80, in init_board
    h=self.hardware_addr, b=self.bus, c=self.chip_select))
pifacecad.core.NoPiFaceCADDetectedError: No PiFace Control and Display board detected (hardware_addr=0, bus=0, chip_select=1).]]></description>
			<content:encoded><![CDATA[<p>Hi ,</p>
<p>Ik krijg een waslijst aan fouten , graag advies a.u.b<br />
Groet Patrick</p>
<p>pi@raspberrypi:~ $ sudo python3 radio.py<br />
Traceback (most recent call last):<br />
  File &#8220;radio.py&#8221;, line 185, in<br />
    cad = pifacecad.PiFaceCAD()<br />
  File &#8220;/usr/lib/python3/dist-packages/pifacecad/core.py&#8221;, line 50, in __init__<br />
    self.init_board()<br />
  File &#8220;/usr/lib/python3/dist-packages/pifacecad/core.py&#8221;, line 80, in init_board<br />
    h=self.hardware_addr, b=self.bus, c=self.chip_select))<br />
pifacecad.core.NoPiFaceCADDetectedError: No PiFace Control and Display board detected (hardware_addr=0, bus=0, chip_select=1).</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Door: Tom		</title>
		<link>https://raspberrytips.nl/internet-radio-luisteren-raspberry-pi/#comment-424</link>

		<dc:creator><![CDATA[Tom]]></dc:creator>
		<pubDate>Tue, 12 Sep 2017 22:14:16 +0000</pubDate>
		<guid isPermaLink="false">https://raspberrytips.nl/?p=405#comment-424</guid>

					<description><![CDATA[sudo apt-get install python3-pifacecad

geeft bij mij

E: Unable to locate package python3-pifacecad]]></description>
			<content:encoded><![CDATA[<p>sudo apt-get install python3-pifacecad</p>
<p>geeft bij mij</p>
<p>E: Unable to locate package python3-pifacecad</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Door: Rob		</title>
		<link>https://raspberrytips.nl/internet-radio-luisteren-raspberry-pi/#comment-390</link>

		<dc:creator><![CDATA[Rob]]></dc:creator>
		<pubDate>Tue, 25 Jul 2017 04:47:19 +0000</pubDate>
		<guid isPermaLink="false">https://raspberrytips.nl/?p=405#comment-390</guid>

					<description><![CDATA[Bob Rathbone
9 maart 2017 om 09:26	&#124; Beantwoorden
Mooi werk!
Er is een volledig Internet Radio programma van http://www.bobrathbone.com/raspberrypi_radio.htm beschikbaar.


link werkt niet]]></description>
			<content:encoded><![CDATA[<p>Bob Rathbone<br />
9 maart 2017 om 09:26	| Beantwoorden<br />
Mooi werk!<br />
Er is een volledig Internet Radio programma van <a href="http://www.bobrathbone.com/raspberrypi_radio.htm" rel="nofollow ugc">http://www.bobrathbone.com/raspberrypi_radio.htm</a> beschikbaar.</p>
<p>link werkt niet</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Door: Bob Rathbone		</title>
		<link>https://raspberrytips.nl/internet-radio-luisteren-raspberry-pi/#comment-284</link>

		<dc:creator><![CDATA[Bob Rathbone]]></dc:creator>
		<pubDate>Thu, 09 Mar 2017 08:26:15 +0000</pubDate>
		<guid isPermaLink="false">https://raspberrytips.nl/?p=405#comment-284</guid>

					<description><![CDATA[Mooi werk!
Er is een volledig Internet Radio programma van http://www.bobrathbone.com/raspberrypi_radio.htm beschikbaar.]]></description>
			<content:encoded><![CDATA[<p>Mooi werk!<br />
Er is een volledig Internet Radio programma van <a href="http://www.bobrathbone.com/raspberrypi_radio.htm" rel="nofollow ugc">http://www.bobrathbone.com/raspberrypi_radio.htm</a> beschikbaar.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Door: Richard IJzermans		</title>
		<link>https://raspberrytips.nl/internet-radio-luisteren-raspberry-pi/#comment-253</link>

		<dc:creator><![CDATA[Richard IJzermans]]></dc:creator>
		<pubDate>Sun, 29 Jan 2017 12:15:36 +0000</pubDate>
		<guid isPermaLink="false">https://raspberrytips.nl/?p=405#comment-253</guid>

					<description><![CDATA[In antwoord op &lt;a href=&quot;https://raspberrytips.nl/internet-radio-luisteren-raspberry-pi/#comment-252&quot;&gt;Jan de Ruijter&lt;/a&gt;.

Je moet hem inderdaad starten, hier kun je terugvinden hoe je het script automatisch kunt starten: https://raspberrytips.nl/python-script-automatisch-reboot/]]></description>
			<content:encoded><![CDATA[<p>In antwoord op <a href="https://raspberrytips.nl/internet-radio-luisteren-raspberry-pi/#comment-252">Jan de Ruijter</a>.</p>
<p>Je moet hem inderdaad starten, hier kun je terugvinden hoe je het script automatisch kunt starten: <a href="https://raspberrytips.nl/python-script-automatisch-reboot/" rel="ugc">https://raspberrytips.nl/python-script-automatisch-reboot/</a></p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
