Hardware to do i/o to and from external devices - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T15:51:21Zhttp://stackoverflow.com/feeds/question/1038567http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1038567/hardware-to-do-i-o-to-and-from-external-devices3Hardware to do i/o to and from external devicesPaul Tomblin2009-06-24T14:00:36Z2009-06-26T08:34:47Z
<p>I've got a potential client who wants a database driven app, either in Java or Python driving MySQL or PostgreSQL, but we need to get input from an external machine, such that every time this external machine closes a microswitch, a value in the database gets decremented and it shows up on the app. </p>
<p>Also, when that value in the database reaches zero, we want to turn on a light on the external machine until the operator does something in the GUI, and then we want to turn off the light. </p>
<p>My client's proposed solution is to wire the microswitch into one of the keys on the keyboard and just avoid using that key for anything else (he suggested the F12 button), and to control the light by playing a sound file through the left channel to start it, and the right channel to stop it. </p>
<p>That seems a little cheesy to me, especially the wires going into the keyboard - and not just cheesy, but also a potential source of hardware problems if the operator accidentally pulls out a wire. I'd much rather something that either went into the USB port or possibly an internal card, just to keep the wiring around the back and away from the operator. But since the client hopes to sell a lot of these, he wants to keep the price down.</p>
<p>I realize this isn't strictly "programming", but it's to solve a problem in a program I'm writing. So I'm asking you: is there a cheap hardware device that would do what I want?</p>
http://stackoverflow.com/questions/1038567/hardware-to-do-i-o-to-and-from-external-devices/1038673#10386732Answer by j_random_hacker for Hardware to do i/o to and from external devicesj_random_hacker2009-06-24T14:19:25Z2009-06-24T14:19:25Z<p>Hmmm... Computers still come with serial (RS-232 UART) and parallel ports right? I believe these are pretty easy to wire things up to, the "protocols" (especially for the PP) are too simple to even be called that, and the components are cheap.</p>
<p>It's very easy to find info on the net from hobbyists who connect up their robots etc. using these ports. E.g.: <a href="http://www.interfacebus.com/Design%5FConnector%5FParallel%5FPC%5FPort.html" rel="nofollow"><code>http://www.interfacebus.com/Design_Connector_Parallel_PC_Port.html</code></a></p>
<p>But I don't know, perhaps USB is just as simple.</p>
http://stackoverflow.com/questions/1038567/hardware-to-do-i-o-to-and-from-external-devices/1038724#10387243Answer by Marcelo MD for Hardware to do i/o to and from external devicesMarcelo MD2009-06-24T14:27:57Z2009-06-24T14:27:57Z<p>I'd use one of those USB<->UART bridges. <a href="http://www.ftdichip.com/Products/FT232R.htm" rel="nofollow">Those chips</a> translate between USB and serial port (RS232 - the voltage levels) signals. They are seen as a COM port on windows or a tty on linux </p>
<p>They have all 8 signals from the serial port standard. You could use one of the input pins to get your microswitch and an output pin to drive a buzzer.</p>
<p>Yes, that would add to the cost, but they are very cheap in large quantities. Also, the project is so simple that, if there isn't already done on the 'net a student could do it in a couple of days.</p>
http://stackoverflow.com/questions/1038567/hardware-to-do-i-o-to-and-from-external-devices/1038726#10387263Answer by Josh W. for Hardware to do i/o to and from external devicesJosh W.2009-06-24T14:28:18Z2009-06-24T15:07:55Z<p>Cheap hardware device: <a href="http://www.arduino.cc/" rel="nofollow">Arduino</a></p>
<p>It's small, cheap, programmable, and very easy to learn how to program for (pretty much C++). It can interface with either USB or Serial depending on the board you get. It's the hardware hacker's wet dream when it comes to tinkering around with wierd projects that need to interface with a computer somehow. You could even wire up an LED for notifying the technician directly to the arduino. </p>
<p>Pros: Very little hardware knowledge needed to complete your project. All the wiring for reading a switch and lighting an LED are on the arduino project's site.</p>
<p>Cons: Learning how to interface your software with the Arduino Library might take a little bit of time.</p>
http://stackoverflow.com/questions/1038567/hardware-to-do-i-o-to-and-from-external-devices/1038842#10388423Answer by Jason S for Hardware to do i/o to and from external devicesJason S2009-06-24T14:47:03Z2009-06-24T14:52:10Z<p>To expand on Marcelo's answer, in case you want to prototype this quickly, FTDI does make a standalone board, the <a href="http://www.ftdichip.com/Products/EvaluationKits/UB232R.htm" rel="nofollow">UB232R</a>, which is about US$20 in single quantities. You could use the CTS pin as an input (with an appropriate pullup, e.g. 10K) from your device to the PC.</p>
<p>All you need besides one of these is a USB cable and a way to connect the board to your microswitch. (not sure whether a <a href="http://parts.digikey.com/1/parts/1388360-breadboard-solderless-700-00012.html" rel="nofollow">solderless breadboard</a> would be appropriate / robust enough, but it's a quick & dirty solution since the UB232R has a DIP8 footprint) No external power supplies, no need to make a custom PC board, no need to program anything other than your PC, no need to learn any hardware drivers beyond the basic communication port services, assuming your PC's communication libraries include features to read the CTS pin status.</p>
<p><strong>edit:</strong> for an output, you can use the RTS pin. If you have more inputs and outputs than this, you'll want to think a little more carefully....</p>
http://stackoverflow.com/questions/1038567/hardware-to-do-i-o-to-and-from-external-devices/1045696#10456960Answer by Roddy for Hardware to do i/o to and from external devicesRoddy2009-06-25T19:11:22Z2009-06-26T08:34:47Z<p>Your best bet is to go for one of the simple <a href="http://en.wikipedia.org/wiki/GPIO" rel="nofollow">GPIO</a> dongles like the <a href="http://www.advantech.com/eautomation/remote-io/" rel="nofollow">Advantech ADAM</a> range.</p>
<p>For example, the <a href="http://www.advantech.com/products/ADAM-6050/mod%5F1-2MLE8H.aspx" rel="nofollow">ADAM 6050</a> has a bunch of inputs and outputs and is explicitly designed for connecting to random external equipment. It can be connected via TCP/IP using the common <a href="http://en.wikipedia.org/wiki/Modbus" rel="nofollow">modbus</a> protocol (a hand-coded driver is usually no more than a few dozen lines). </p>
<p>For the RS-485 model, <a href="http://buy.advantech.com/Data-Acquisition-and-I-O/RS-485-IO-Modules/DAQ%5FRS-485%5FIO%5FModules.mx.htm" rel="nofollow">one-off cost is $110</a> - you should be able to get significant volume discounts as a reseller/OEM. You'll need a cheap wall-wart PSU as well.</p>
<p>While there may be cheaper "per unit" solutions out there, this is a professional works-out-of-the-box approach that doesn't involve cracking the case on the PC or building/modifying something from chip/module level in <em>any</em> way. </p>
<p>Don't forget the to factor in the costs of designing, manufacturing, stocking and supporting whatever solution you finally opt for. </p>