Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: The Door Server

by Mr. Muskrat (Canon)
on Oct 08, 2002 at 14:44 UTC ( [id://203658]=note: print w/replies, xml ) Need Help??


in reply to The Door Server

So you need two barcodes to sit side by side. '0' and '1'. You can create them with this code:

#!/usr/bin/perl use strict; use warnings; use GD::Barcode::Code39; MakeBar('0'); MakeBar('1'); sub MakeBar { my $txt = shift; my $oGdBar = GD::Barcode::Code39->new("*$txt*"); die $GD::Barcode::Code39::errStr unless($oGdBar); open(IMG, ">", "$txt.png") or die $!; binmode(IMG); print IMG $oGdBar->plot(NoText=>1, Height => 40)->png; close(IMG); }

Then print and affix them to your door. I haven't tested the following code because I have hacked my cuecat to decode the scans but you could use something like this:

#!/usr/bin/perl use strict; use warnings; use Barcode::Cuecat; # seperate counters for open and closed my $open = 0; my $close = 0; my $door; my $bc = new Barcode::Cuecat(); while (<>) { $bc->scan($_); $door .= $bc->code(); if (length $door == 2) { $open++ if ($door eq "01"); $close++ if ($door eq "10"); $door = ""; # we will assume the door started out closed my $state = "closed"; $state = "open" if ($open > $closed); print "Opened: $open times\n"; print "Closed: $closed times\n"; print "Current state: $state\n"; # write to disk } }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://203658]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (5)
As of 2024-04-25 10:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found