| Karl |
Parallel (Printer) Port Interface |
Tuesday, November 17, 2009 4:13:37 PM |
| I'm exploring your site; it has great info. I built a small PCB with a ULN2003 chip driving reed relays to control my room lighting (dimmer) using the parallel port on my PC. It's simple and works quite well. I'd now like to add the ability to read the level of the dimmer and send this data to the PC. The dimmer has 4 LED's which I believe are 9VAC and are either on or off. I need to translate this to something that could be read by the parallel port and sent to an app on the PC. Any ideas? |
| Rob |
Parallel (Printer) Port Interface |
Thursday, September 10, 2009 9:44:08 PM |
| Verhy informative, Well done! |
| anonymous |
Parallel (Printer) Port Interface |
Sunday, June 28, 2009 2:44:22 PM |
| is it passable to do this same thing using the usb port instead of the Parallel Port I have been looking all over the internet trying to find a schematic diagram on this
if you have any information please let me know thank you
Jeremy
|
| kurdi muhammad |
Using this circuit in Windows XP |
Thursday, March 19, 2009 6:34:24 AM |
| You can download this dll file ( Inpout32.dll ) from http://logix4u.net/ and control your Parallel port even under Windows XP.
Note: In Windows 2000 and XP and later versions of windows, you can NOT use the PPort directly . You must use a kernel mode device driver to that.......Actually inpout32.dll does that for you easily. |
| anonymous |
Parallel (Printer) Port Interface |
Tuesday, March 03, 2009 7:16:47 AM |
| is it possible to use this interface to conect 2 computers for use with qbasic so that one way comuncation is possable |
| Black Hawk |
Parallel (Printer) Port Interface |
Saturday, February 21, 2009 10:33:47 AM |
| Dear Sir, by using any input, like 5v or getting 0v vich pins i can use to detect whether hardware is connected or not |
| Javad Ahamad K.V |
Parallel (Printer) Port Interface |
Friday, October 10, 2008 1:16:46 AM |
| I am very happy with your vb parallel port programming.it helped me a lot.
i have a doubt?
if we want to input data through status port by shorting it and ground how we can detect at the time of running?
eg: i runned my program then when i set 88 form colour shoul be red,and if the value is 104 the form colour should be blue without exiting the program.what is the code for that?
i tried like this,
if vbinp(889)=88 then
form1.backcolor=vbred
elseif vbinp(889)=104 then
form1.backcolor=vbblue
end if
this is working when it wrote under an event like click or keypress ect.....
but i want to check continously without changing any event
plz help me........ |
| XerMeLL |
Parallel (Printer) Port Interface |
Tuesday, October 07, 2008 8:44:50 PM |
| Sir pls give me a kernel driver for WindowsXP, im trying to access parallel port interfacing with Assembly Language Program using A86 assembler.. pls help.. im searching for so long.. (Editor's notes: Search the forum.) |
| anonymous |
Parallel (Printer) Port Interface |
Tuesday, August 19, 2008 6:40:28 AM |
| sir, i want to access data coming from ADC by PC parallel port & store it in database(sql) . i want to access the parallel port by java(Net beans) & at windows xp. if u help me at the code portion of interfacing with parallel port i would be greatful to u. plz help & mail me sir.......... thanks |
| abdo |
Parallel (Printer) Port Interface |
Monday, June 02, 2008 6:13:00 AM |
| i AM FOUND PRPLEM FOR INSERT PULSE BY SENSOR TO ADRESS 379 ,I WANT COMMAND FOR BREAK INFINITY LOOP ,FOR READ ONES AND ZEROS FOR THAT PULSES.
TANKS
Private Sub Command1_Click()
Dim ones As Integer, zeros As Integer, delay As Long, COUNT As VARIANT
Text2.Text = Inp(Val("&H" + Text1.Text))
DO WHILE COUNT=1
If (Str(Inp(Val("&H" + Text1.Text))) = 119) Then
ones = ones + 1
Else
zeros = zeros + 1
End If
COUNT=1
LOOP
Text4.Text = ones
Text5.Text = zeros
End Sub
Private Sub Command2_Click()
Out Val("&H" + Text1.Text), Val(Text2.Text)
End Sub
|