Skip to Content
Home Hacking Projects for Geeks
book

Home Hacking Projects for Geeks

by Eric Faulkner, Tony Northrup
December 2004
Beginner
336 pages
14h 32m
English
O'Reilly Media, Inc.
Content preview from Home Hacking Projects for Geeks
35
Chapter 2, Automate Your Porch Light
Within each if statement, calls to the light_on and light_off subroutines
do the interesting work. This subroutine takes a unit code as an argument.
This command:
light_on($porch_light_unit);
could also be written as:
light_on("1");
The subroutines automatically add the correct house code for the lights.
At the end of the
while loop, you’ll see several instances of if statements
such as this one:
if ( $data =~ ($lights_hc.$porch_light_unit.$lights_hc."J") ) {
$porch_light_on = 1;
$data = "";
}
These if statements detect someone else turning on a light using an X10
command, and record the state of the light to a variable. These variables are
referenced when turning lights off automatically to ensure that the script
does not override someone’s decision to manually turn on the light.
To understand how X10 commands are sent, examine the
lights_on sub-
routine:
sleep 1;
ControlX10::CM11::send($serial_port, $lights_hc.$_[0]);
ControlX10::CM11::send($serial_port, $lights_hc."J");
The first line forces the Perl script to pause. Although this is not absolutely
necessary, it does improve the script’s reliability by avoiding a collision
between the signal received from the motion detector and the signal being
transmitted. The second line sends an X10 address, such as “B2”, through
the X10 controller. When the device with ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Building a Home Security System with Raspberry Pi

Building a Home Security System with Raspberry Pi

Matthew Poole
Raspberry Pi 3 Home Automation Projects

Raspberry Pi 3 Home Automation Projects

Shantanu Bhadoria, Ruben Oliva Ramos
Cool Tools in the Kitchen

Cool Tools in the Kitchen

Kevin Kelly, Steven Leckart

Publisher Resources

ISBN: 0596004052Catalog PageErrata