3
<?xml version='1.0' encoding='UTF-8'?>
<rss xmlns:media='http://search.yahoo.com/mrss/' xmlns:atom='http://www.w3.org/2005/Atom' version='2.0'>
<channel>
<atom:link href="http://www.deine-domain.de/infoframe/infoframe.xml" rel="self" type="application/rss+xml" />
<title>Infoframe</title>
<description/>
<link>http://www.deine-domain.de/infoframe/index.php</link>
<item>
<title>Infoframe</title>
<link>http://www.deine-domain.de/infoframe/index.php</link>
<guid isPermaLink='false'>http://www.deine-domain.de/infoframe/index.php</guid>
<media:content url='http://www.deine-domain.de/infoframe/index.php' height='600' width='800' type='image/jpeg' medium='image'/>
</item>
</channel>
</rss>
Hallo,
Callmonitor brauch ich nicht und an meiner fritzbox 7390 will ich eigentlich auch nichts ändern
Jetzt zu meinem Problem
Wenn ich den framechannel dann im ipad laufen lasse wird mein Bild aber leider nicht mehr aktualisiert.
Was mach ich falsch oder hab ich irgendwo einen gedankenfehler drin?
<head>
<meta http-equiv="refresh" content="30" url="index.html">
<title>InfoFrame</title>
</head>
Für Interessierte sind im Anhang zwei Bilder von der Hauptplatine des SPF-83V. Vielleicht bekommen wir gemeinsam Linux auf den Bilderrahmen.
Hat es jemand geschafft, den Kodak Rahmen so einzustellen, das die Bilder aus dem Projekt gut dargestellt werden?
#!/bin/sh
# refresh infoframe image
# config
localpath="/var/tmp/infoframe"
serverscript="http://user:[email protected]/infoframe/index.php"
samsung_ip_address="192.168.178.24"
samsung_rss_id="143560439"
# try 3 times to download picture until error is displayed
tries=1
while true
do
# download new picture
wget "$serverscript?$1" -O $localpath/tmp.jpg
# do some checks (error/warning string in file? downloaded file should be at least 10k of size?)
# if error occured we do a next try
err=0
warn=0
filesize=0
if [ -f $localpath/tmp.jpg ]
then
err=`grep -i 'error' $localpath/tmp.jpg | wc -l`
warn=`grep -i 'warning' $localpath/tmp.jpg | wc -l`
filesize=`du $localpath/tmp.jpg | cut -f1`
fi
# process checking result
if [ $err == 0 ] && [ $warn == 0 ] && [ $filesize -ge 10 ]
then
mv $localpath/tmp.jpg $localpath/info.jpg
break
else
if [ $tries -ge 3 ]
then
date +%d-%m-%Y_%H-%M-%S >> $localpath/download.log
echo "*** ERROR OR WARNING FOUND: filesize= $filesize ***" >> $localpath/download.log
rm $localpath/tmp.jpg 2> /dev/null
cp $localpath/error.jpg $localpath/info.jpg
break
else
# just wait some seconds, then try again
tries=$(expr $tries + 1)
sleep 5
fi
fi
done
# Samsung SPF-83v specific tasks
# ===============================
# disable and enable picture cache for this rss feed to make immediately refresh possible
wget -s "http://$samsung_ip_address:5050/configuration/storage.htm?CheckRssNameId=$samsung_rss_id&Checked=false"
wget -s "http://$samsung_ip_address:5050/configuration/storage.htm?CheckRssNameId=$samsung_rss_id&Checked=true"
# force samsung picture frame to immediately refresh picture by simulate clicking on "next" in web interface
wget -s "http://$samsung_ip_address:5050/configuration/photo_frame.htm?next"
Und wie stelle ich es an, das er die Termine der Müllabfuhr im normalen Kalender anzeigt, nur soll hier auch die entsprechenden Icons angezeigt werden und nicht die Farbicons aus dem Googlekalender?
if (($row['color']) == "#865A5A")
{
if (strpos($row['title'], 'Blaue') !== false)
$icon = ImageCreateFromPNG ( 'resources/icons/tonne_blau.png' );
if (strpos($row['title'], 'Biotonne') !== false)
$icon = ImageCreateFromPNG ( 'resources/icons/tonne_gruen.png' );
if (strpos($row['title'], 'Gelber S') !== false)
$icon = ImageCreateFromPNG ( 'resources/icons/gelber_sack.png' );
if (strpos($row['title'], 'Restm') !== false)
$icon = ImageCreateFromPNG ( 'resources/icons/tonne_schwarz.png' );
if ($mull==0) ImageCopy($image, $icon, 25, $yoffsetdn-5, 0, 0, imagesx($icon), imagesy($icon));
//echo $yoffset;
else ImageCopy($image, $icon, 9, $yoffsetdn-5, 0, 0, imagesx($icon), imagesy($icon));
ImageDestroy($icon);
$mull++;
$multiday=0;
continue;
}
if (($row['color']) == "Farbe des Geburtstagskalenders")
{
$icon = ImageCreateFromPNG ( 'resources/icons/birthday.png' );
ImageCopy($image, $icon, 25, $yoffsetdn-5, 0, 0, imagesx($icon), imagesy($icon));
ImageDestroy($icon);
continue;
}
<?xml version="1.0"?>
<rss version="2.0"
xmlns:media="http://fritz.box:5050/"
>
<channel>
<title>Mytest</title>
<link>http://my.test.com/</link>
<description>MyFeed</description>
<ttl>1</ttl>
<item>
<title>IF</title>
<link>http://fritz.box:5050/info.jpg</link>
<description><img src="http://fritz.box:5050/info.jpg" alt="" /></description>
<guid>2876</guid>
<media:content url="http://fritz.box:5050/info.jpg" type="image/jpeg" />
<media:title>Bild1</media:title>
</item>
<item>
<title>IF2</title>
<link>http://fritz.box:5050/info.jpg</link>
<description><img src="http://fritz.box:5050/info.jpg" alt="" /></description>
<guid>2877</guid>
<media:content url="http://fritz.box:5050/info.jpg" type="image/jpeg" />
<media:title>Bild2</media:title>
</item>
</channel>
</rss>
# Samsung SPF-83v specific tasks
# ===============================
# disable and enable picture cache for this rss feed to make immediately refresh possible
#wget -s "http://$samsung_ip_address:5050/configuration/storage.htm?CheckRssNameId=$samsung_rss_id&Checked=false"
#wget -s "http://$samsung_ip_address:5050/configuration/storage.htm?CheckRssNameId=$samsung_rss_id&Checked=true"
# force samsung picture frame to immediately refresh picture by simulate clicking on "next" in web interface
#wget -s "http://$samsung_ip_address:5050/configuration/photo_frame.htm?next"
[System]
db_host = "localhost"
db_name = "mydb"
db_user = "root"
db_password = "passwd"
zendfw_path = "../zendfw/library"
image_width = 800
image_height = 480
; updateintervall der Plugins (Mail, Kalender, Wetter...) in Minuten
updatetime = 1
Das hat dir Hoobert doch gestern geschrieben oder.Vergyone schrieb:Kann man das Standard Calender - Script so umschreiben, das er bei bestimmten Terminen (z.B. Geburtstag nicht das Colorbutton), sondern ein Bild nimmt?
In der index.php von bgx mit ?action=kalender zeigt er die Icons an. Musst du wohl noch entsprechend ändern.[/quote]Vergyone schrieb:Kann man das Müllabfuhr - Script auch so ändern, das es wie beim Geburtstagseintrag das entsprechende Bild nimmt?
Leerzeilenbefehle gibt es mMn nicht. Aber du kannst die Texte und Bilder in x- und y-Richtung verschieben in den einzelnen Befehlszeilen und so auf dem Bild anders anordnen.Vergyone schrieb:Ist es ausserdem möglich zwischen Dayname (Heute, Morgen, etc.) eine Leerzeile einzufügen?
Das hat dir Hoobert doch gestern geschrieben oder.