Thats right , as schematically;
WebSite to Read RSS -> PHP Script(on users own website)(XML Output) -> LCD Smartie Plugin -> LCD display
i checked out plugins but just found webservices plugin works like it , but i mean that , i can supply a PHP script which can read any RSS Feed , and users can modify it for their needs. For example ,
i want to be informed about 3 RSS feeds, the PHP script reads these 3 RSS Feeds , and outputs XML , so you dont need to add 3 different feed sources , you only add
http://my.domain.tld/RSS2LCD.php and it gives an out put like ;
Code: Select all
<?xml version="1.0"?>
<rss version="2.0">
<channel>
<title>LCD Smartie - New Plugins Released</title>
<link>http://forums.lcdsmartie.org/</link>
<description>There are new lcd-smartie plugin relases please visit our forums.</description>
<language>en-us</language>
<pubDate>Tue, 10 Jun 2009 04:00:00 GMT</pubDate>
<lastBuildDate>Tue, 10 Jun 2009 09:41:01 GMT</lastBuildDate>
<generator>RSS2LCD</generator>
</item>
<title>BBC News - bla bla bla</title>
<link>http://lhttp://forums.lcdsmartie.org/</link>
<description>bla bla bla bla .</description>
<language>en-us</language>
<pubDate>Tue, 10 Jun 2009 04:00:00 GMT</pubDate>
<lastBuildDate>Tue, 10 Jun 2009 09:41:01 GMT</lastBuildDate>
<generator>RSS2LCD</generator>
</item>
<title>Another RSS Feed - etc etc etc</title>
<link>http://lhttp://forums.lcdsmartie.org/</link>
<description>some text here .</description>
<language>en-us</language>
<pubDate>Tue, 10 Jun 2009 04:00:00 GMT</pubDate>
<lastBuildDate>Tue, 10 Jun 2009 09:41:01 GMT</lastBuildDate>
<generator>RSS2LCD</generator>
</item>
</channel>
</rss>
and plugins reads and writes this onto the display..
With this way , this plugin can read and write any RSS feeds , or any text that PHP script generated. It can be forum plugin , it can be an email checker , an currency displayer , an online site checker(this was the first idea on my mind , a script that check several domains , and outputs XML for unreachable web sites, couse i have many domains on different servers , and something like this will be very usefull) ...etc.
Becouse XML data prepaired by PHP script , and PHP can do anything or can read any source (like MySQL, flat file , or with curl or fopen function any website).