-
-
Save Piskvor/eb74fe7851c68f3264f99c40af1be816 to your computer and use it in GitHub Desktop.
Raspberry Pi Blink Ip Address
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
my $dev = "/sys/class/leds/led0/brightness"; | |
my $OFF = "1"; | |
my $ON = "0"; | |
my ($ip) = `ifconfig`=~/ddr:(.*?) /; | |
#print $ip; | |
# Strip out the .'s | |
$ip =~ s/\.//g; | |
while (1) { | |
display_start(); | |
while ($ip =~ /(.)/g) { | |
my $char = $1; | |
print "$char\n"; | |
if ($char eq '0' || $char == 0) { | |
display_zero(); | |
} else { | |
display_blink($char, .25, .25); | |
} | |
usleep(2); | |
} | |
usleep(2); | |
} | |
sub display_start { | |
for (my $i=0; $i < 50; $i++) { | |
usleep(.05); | |
outb($ON); | |
usleep(.05); | |
outb($OFF); | |
} | |
usleep(4); | |
} | |
sub display_zero { | |
for (my $i=0; $i < 10; $i++) { | |
usleep(.05); | |
outb($ON); | |
usleep(.05); | |
outb($OFF); | |
} | |
} | |
sub display_blink { | |
my $char = shift; | |
my $dwell = shift; | |
my $delay = shift; | |
for (my $i=0; $i < $char; $i++) { | |
usleep($dwell); | |
outb($ON); | |
usleep($delay); | |
outb($OFF); | |
} | |
} | |
sub outb { | |
my $char = shift; | |
`echo $char > $dev`; | |
} | |
sub usleep { | |
my $time_seconds = shift; | |
select(undef, undef, undef, $time_seconds); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment