Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl # # master_timer # # Perl control script for X10 Firecracker module # Useful for simple crontab timer applications. Options are overly wor +dy # to make for easy crontab reading later on. # # Requires the ControlX10::CM17 module and Device::SerialPort module f +rom # CPAN. Not portable to Windows platforms; other portability unknown. # # 18-Mar-2001 by James Mancini - released into public domain use vars qw( $module $secure $action); use Device::SerialPort; use ControlX10::CM17 qw( send_cm17 0.05 ); use Getopt::Long; use strict; my %opt; $opt{fullcmd} = "$0 ".(join " ", map {$_ =~ /[ \[\]\*\{\}\;\>\<\&]/ ? +"'$_'" : $_ } @ARGV); options(\%opt); my $port = $opt{port} || "/dev/ttyS0"; my $serial_port = Device::SerialPort->new ($port,1); die "Darn! I Can't open serial port $port: $^E\n" unless ($serial_port +); # These are for the pass-through port on the Firecracker $serial_port->databits(8); $serial_port->baudrate(4800); $serial_port->parity("none"); $serial_port->stopbits(1); $serial_port->dtr_active(1); $serial_port->handshake("none"); $serial_port->write_settings || die "Failed to set serial params.\n"; if ($opt{secure}) { my $sleeptime = int(rand (31) * 60); print "\nSleeping $sleeptime seconds..\n" if $opt{verbose}; sleep $sleeptime; } my $action = ""; if ($opt{action} =~ /^off$/) { $action = "K" } elsif ($opt{action} =~ /^dim([+-][\d]+)$/) #dim can be + or - { $action = "${1}" } elsif ($opt{action} =~ /^bright([+-][\d]+)$/) #really the same as d +im { $action = "${1}" } elsif ($opt{action} =~ /^dim$/) { $action = "-14" } elsif ($opt{action} =~ /^bright$/) { $action = "+14" } elsif ($opt{action} =~ /^allon$/) # All lights on { $action = "O"; $opt{module}=""; } elsif ($opt{action} =~ /^alloff$/) # All lights off { $action = "N"; $opt{module}=""; } elsif ($opt{action} =~ /^masteroff$/) # All modules off { $action = "P"; $opt{module}=""; } else # Default action = turn module on { $action = "J" } $opt{module} =~ s/^[^0-9a-g]$//i; $opt{hcode} =~ s/^[^a-zA-Z]$|^[\w].+//; $opt{hcode} = "A" unless $opt{hcode}; $opt{hcode} =~ tr/a-z/A-Z/; my $cmd = "$opt{hcode}$opt{module}${action}"; print "\nSending $cmd...\n" if $opt{verbose}; send_cm17($serial_port, $cmd); $serial_port->close || die "\nclose problem with $port\n"; undef $serial_port; sub options () { my $opt = shift; GetOptions( $opt, 'action=s', 'hcode=s', 'module=s', 'secure', 'verbose', 'port=s', ); unless ($opt{module}) #print usage { print <<ECHO; Usage: master_timer [options] --module=[1-9a-g] *REQUIRED* Specify which module to send the command to. 16 modules are allowed per house code, numbered 1-9 then a-g (i.e, 10 = a, 16 = g). --action=opt {optional} 'opt' must be one of the following: [on|off|dim{-1-100}|bright{+1-100}|alloff|allon|masteroff] 'allon' and 'alloff' refer to all LIGHT MODULES, 'masteroff' turns off ALL MODULES. Default action is ON. --hcode=[a-z] set housecode for command. Defaults to housecode "A". --secure {optional} Add a random delay between 0 and 30 minutes before executing command. Useful for timer applications. Set the command to run at the EARLIEST time you want it to happen. --port=device 'device' should be the full path to the port, e.g. "/dev/ttyS1". Optional. If not specified, defaults to /dev/ttyS0 (COM1). --verbose {optional} Print status messages. ECHO exit (1); } }

In reply to X10 Timer script... by Clownburner

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (4)
As of 2024-04-25 13:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found