up vote 7 down vote favorite
4
share [g+] share [fb]

Duplicate

What's the most practical way to toggle several power items with a PC?

I'm automating the build system for my company's development team and wanted to have a stoplight in our office window represent the outcome of the nightly build.

Does anyone know of a device I can buy that has an API I can code against to turn power on / off?

I see that Lego bricks have an API but I'm looking for other ideas.

link|improve this question
That's a really interesting question and idea. – DevinB May 11 '09 at 22:22
1  
I'm curious. Do your users watch your office window like hawks? +1: Because this made me laugh. – Joel Potter May 11 '09 at 22:28
in fact quite the opposite. My devs don't monitor the build which is the problem i'm trying to solve. I'm tired of them breaking ech other! – Eric May 11 '09 at 22:29
1  
We have successfully used a Wyse RDP box with a CruiseControl.Net screensaver going on a large LCD display in the developers office. A big, red screen is quite the eye catcher. And the build breaker will be quick to get his/her name off the display :) – Peter Lillevold May 11 '09 at 22:36
Peter, would you please post a link to CruiseControl.net screensaver? Thanks – Tigran Aug 15 '09 at 1:00
feedback

closed as exact duplicate by Jason Punyon, George Stocker, Chris Ballance, Greg Hewgill, lothar May 12 '09 at 1:32

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

5 Answers

up vote 2 down vote accepted

There is something at Coding4Fun that might help.

http://blogs.msdn.com/coding4fun/archive/2006/10/31/916478.aspx http://blogs.msdn.com/coding4fun/archive/2006/12/20/1337418.aspx

Maybe those might help.

link|improve this answer
feedback

You need an IO board with a relais protection (so that you can switch 230/110V)

There are many out there. I've used the Velleman board (available in Europe), which works with Windows XP/2003. It has examples of how to do P/Invoke from C#.

Try in google "DIGITAL OUTPUT BOARD with relais"

link|improve this answer
feedback

The CruiseControl.Net CCTray application have built in support for X10 with which you can control electric appliances.

link|improve this answer
feedback

There are some power strips, such as the following: http://dataprobe.com/remote-control-power-strip.html

which can be controlled via RS232 commands. So you would open a Serial Port, set the port to 9600-8-N-1, and send a few commands. If you're not familiar with serial communication, it might go something like this:

  SerialPort port = new SerialPort("COM1", 9600, 8, NoParity, OneStopBit);

  port.Write("set outlet 1 off\r\n");

  port.Write("set outlet 1 on\r\n");
link|improve this answer
feedback

You might consider the Babysitting policy used at FogCreek where the dev that breaks the build has to babysit it until another dev breaks it. It's used as both a deterrent and and educational system.

Read more on his site.

http://www.joelonsoftware.com/news/fog0000000141.html

link|improve this answer
feedback