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
// Pin-outs | |
int panel_1 = 10; | |
int panel_2 = 12; | |
int panel_3 = 8; | |
int panel_4 = 9; | |
int panel_5 = 6; | |
int panel_6 = 7; | |
int bottomLight = 11; | |
int topLight = 5; |
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 -w | |
use 5.010; | |
use strict; | |
use warnings; | |
use threads; | |
use Thread::Queue; | |
use autodie qw(:all); | |
use Image::ExifTool qw(ImageInfo); | |
use Data::Dumper; | |
use Imager; |