pulse counter Programming Software Development by gedas …example function call delay(100); return ( 0 ); } void draw_func( int pulses ) { int s; int i; int p; int q; int …"); fflush(stdout); tab(1,12); printf("Number of pulses in TCN2"); fflush(stdout); while(!ready(fileno(stdin))) {… Compilation problem Programming Software Development by argus512 …duration.dwh2o_off); } /* * Prompt for Number of Pulses During a Water ON Period */ sprintf(szprompt_buf,"…0); while(RESPONSE_IS_NO) { sprintf(szprompt_buf,"Number of Pulses for Each Water ON Period ?"); i = …= atoi(szuser_resp); sprintf(szprompt_buf, "Number of Pulses for Each Water ON Period = %u ([y]/n… problem Programming Software Development by jorgejhandal …programming and Im triying to program a pic to collect pulses, and for each pulse it accumulates 10 but when I… anothr pin, and has a display totalizing the amount of pulses (credits) acumulated). my problem is that I cant acumulate …another set of pulses after the first come in, and it doesnt add up… How do I send voltage through pins in parallel port? Programming Software Development by python01 … wondering if it is possible to use python to send pulses of 5 v (default) through the parallel port. I have… made up a circuit board to interpret the pulses, yet this isn't helpful since there are no… pulses to receive. Here's some specs( maybe it will effect … Online Quiz System Programming Web Development by jimmyo88 … ~text~ signal is a sequence of voltage pulses that may be transmitted over a wire medium.…processing equipment and then converted into digital voltage pulses for transmissions. Binary data Text Voice Audio … `~text~ noise is noncontinuous, consisting of irregular pulses or noise spikes of short duration and of relatively… Hard Drive Making Noises & Sometimes Hanging Up Hardware and Software Hardware by tchat … accompanied by cycling noise from hard drive in four rapid pulses, pause, pulses, etc. Rainbow circle is on screen, sometimes ticking clock… Hi All Community Center Say Hello! by gearcutter … a simple proceedure in VB6, to calculate the number of pulses to be fed to the motors, but would be interested… in the calls in VB6 to feed out those pulses to the motor, using a Vellleman USB Interface Card, and… two commbox problem Programming Web Development by mangel.murti …;>Floriculture</option> <option value="Pulses">Pulses</option> </select></td>… Re: Hi All Community Center Say Hello! by gearcutter …, to indicate the motor has received the required number of pulses. gearcutter Vertical red dots on monitor Hardware and Software Hardware by ykahn …/pink lines on my monitor Synmaster175V. (Are they waves or pulses?) from .5 to 2 inches apart; sometimes they slide down… Computer prob with call waiting Hardware and Software Microsoft Windows by Vasago … line into my comp, a slight clicking starts and it pulses. All the phone wires have been changed and even tried… The Beginnings of the Next Evoluton in Computing Community Center by ! ! …'s silicon waveguide, as the name suggests, would channel light pulses created by the laser and modulator. [/color] [color=indigo][/color… My Mac isn't powering up Community Center Say Hello! by medinak … charging, but nothing else is happening. The light that usually pulses when you close it has remained on, but is now… Should I single or multi-thread this ECG code? Programming Software Development by Drowzee … image captures have completed. Luckily, the human heart cannot generate pulses as cleanly as a signal generator, so there's an… I need help covert my source code frm pic16c54a to pic16f84a Programming Software Development by abdulgirei … ; Shut off the segments buzz_now_dispon CLRF TEMP ; Buzz for 256 pulses loop_buz BSF BUZZEROUT ; Send out pulse BCF BUZZEROUT ; Clear out… Inserting bitmap into dialog box Programming Software Development by amarucla … EDITTEXT IDC_AL,425,187,50,14,ES_NUMBER LTEXT "Skip pulses", IDC_STATIC, 425,202,90,8 EDITTEXT IDC_SP,425,211… Broadband over Powerline (BPL) is a Bad Idea Community Center by kc0arf … many of them will have circuitry to remove the BPL pulses from the powersources? Everything you plug in could have the… The true cost of searching for aliens Community Center by happygeek … Astropulse application which searches the collected data for high power pulses. Many belive that this methodology could well be a much… Out put to a robot/device Programming Software Development by Paradox1 … uses electricity to launch a projectile I need to output pulses of varying lengths to precisely regulate the on and off… Need help with custom widget in QT Programming Software Development by Mr.UNOwen … background. In some cases the color in the back ground pulses (dark to bright) so there's a bit of animation… Multicasting only works on same machine (urgent) Programming Software Development by MadSkyrim I am making client and a server program. The server pulses out a packet of information and the client is supposed … presario2135us boot problem Hardware and Software Hardware by bdjessie My presario2135us stopped responding to anything. After I plug in new ac adapter the computer seems to get power but the power light just pulses like its stuck in standby mode. I can hear the fan come on when it gets warm but I can not get it to boot or do any thing. My program, Feedback needed Programming Software Development by dnk77 … B. Write a C program to count the number of pulses from a switch connected to bit 0 of port A… extracting data from text file the simple method Programming Software Development by salohcin … the number of ones in from each row ,each row = pulses converted from interrupt so as to compare with the number… How software is converted into electrical states in computer? Programming Computer Science by oanahmed I want to know how software is converted into electrical pulses or `0`'s and `1`'s in computer. How does … Re: How software is converted into electrical states in computer? Programming Computer Science by Ancient Dragon > how software is converted into electrical pulses or 0's and 1's in computer. How does … Sending voltage pulses on a USB cable? Programming Software Development by mahela007 Hi. I want to try and control a Servo motor directly from a USB port. (without using an intermediate microcontroller). To do this, I need to send pulse width modulation signals on one (or more) wires of the USB cable. Is it possible to do this with python? (I found a library called pyserial but I can't figure out how to use it) Re: Sending voltage pulses on a USB cable? Programming Software Development by Tech B You wont be able to do it with just the usb cable, a microcontroller will be needed to handle all the serial data. You could use the parallel port to do this, though I haven't done it myself. [CODE] import serial #your COM port will be different s = serial.Serial("COM8") #now it acts like a file handle s.write("data to be sent\… Re: Sending voltage pulses on a USB cable? Programming Software Development by mahela007 Thanks for the info.. I would like to able to manage without the microcontroller. How could do this using a parallel port? Re: Sending voltage pulses on a USB cable? Programming Software Development by Tech B This might help you get started. [url]http://orionrobots.co.uk/Simple+Parallel+Port+LED+Board[/url] And the parallel lib is found here. [url]http://sourceforge.net/projects/pyserial/files/[/url] Also these where found with a quick google search, you might want to search things before asking questions.