Remove debugging. Test brightness effect (oled)

This commit is contained in:
John Mertz 2022-04-19 00:34:12 -04:00 committed by John Mertz
parent b74c0f0faf
commit 402ce7fefa
Signed by: jpm
GPG Key ID: E9C5EA2D867501AB
1 changed files with 1 additions and 4 deletions

View File

@ -17,7 +17,7 @@ unless ($pid) {
open STDOUT, '>>/dev/null';
open STDERR, '>>/dev/null';
`gammastep -l $lat_lon`;
`gammastep -l $lat_lon -b 1:0.7`;
}
sub fetch_lat_lon
@ -30,13 +30,10 @@ sub fetch_lat_lon
my $raw = $ua->get($location)->content();
if (defined $raw) {
print($raw."\n");
my $decoded = $json->decode($raw);
if (defined $decoded->{lat} && defined $decoded->{lon}) {
return "$decoded->{lat}:$decoded->{lon}";
}
print $decoded->{lat};
}
sleep 5;
return fetch_lat_lon($ua, $json, $location);