vote up 7 vote down star
3

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.

flag
That's a really interesting question and idea. – devinb May 11 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 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 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 at 22:36
Peter, would you please post a link to CruiseControl.net screensaver? Thanks – Tigran Aug 15 at 1:00

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

5 Answers

vote up 2 vote down check

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|flag
vote up 0 vote down

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

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.