May-06-2018, 11:17 AM
(This post was last modified: May-06-2018, 11:17 AM by Geluidsgoeroe.)
Hi all.
I was wondering if someone could help me out here. I'm stuck
There's this piece of code I have for an Adafruit FM transmitter, connected to a Raspberry Pi. This works as expected:
Let's assume I have this 'Now Playing'-info here, in just one line of plain text: http://example.com/ontheair
This is what I came up with:
At the top of the script:
I am obviously doing something wrong in the retrieving/parsing of the external data.....
Any suggestions?
I was wondering if someone could help me out here. I'm stuck

There's this piece of code I have for an Adafruit FM transmitter, connected to a Raspberry Pi. This works as expected:
while True: radio.setRDSbuffer( "Text 1") sleep(6) radio.setRDSbuffer( "Text 2") sleep(6)But what I would like, is to have the 'Now Playing' info inserted into there.
Let's assume I have this 'Now Playing'-info here, in just one line of plain text: http://example.com/ontheair
This is what I came up with:
At the top of the script:
import urllib2And further down the script:
while True: radio.setRDSbuffer( "Text 1") sleep(6) radio.setRDSbuffer( "Text 2") sleep(6) sock = urllib2.urlopen("http://example.com/ontheair") nowplaying = sock.read() sock.close() radio.setRDSbuffer(nowplaying) sleep(15)But this doesn't work. That is... It works until it reaches the part where I try and retrieve/parse something from a webpage. So the loop stops after 'Text 2'.
I am obviously doing something wrong in the retrieving/parsing of the external data.....
Any suggestions?
