hi,
great script, works at my soundbridge perfectly.
Now, I have a second soundbridge M1001. It would be wonderful, when I can also get the weather there? What do I have to change in the config and perl file?
Any ideas.
thanks
goana
# SPF - allow to pass IP from command line
my $roku = '192.168.100.141';
if ($#ARGV >= 0) { $roku = $ARGV[0]; }
# adjust IP adress of your roku here
my $display = RokuUI->new(host => $roku, port => 4444);
# select in which mode the RokuTools shall start (e.g. after reboot)
my $modus = 0;
# write your location here (see http://weather.yahoo.com/ for your location code)
# SPF - allow to pass station code from command line
my $locationid = "UKXX0018";
if ($#ARGV > 0) { $locationid = $ARGV[1]; }
t4local:
# write your location here (see http://weather.yahoo.com/ for your location code)
our $locationid = "xxxxxx";
if ($ARGV > 0) { $locationid = $ARGV[1]; }
t4roku.pl
my $roku = '111.222.333.444; # your IP
if ($ARGV >= 0) { $roku = $ARGV[0]; }
my $display = RokuUI->new(host => $roku, port => 4444);
cleanroku.pl
my $roku = '111.222.333.444'; #your IP
if ($#ARGV >= 0) { $roku = $ARGV[0]; }
my $display = RokuUI->new(host => $roku, port => 4444);