473,287 Members | 1,588 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,287 software developers and data experts.

Parallel port programming on windows XP/2000?

I'd like to write a simple application that interfaces with the parallel port, and changes the data on it according to keyboard input. I hope I can get it to run under windows xp and / or windows 2000.

How can I do this? What do I need to know? It doesn't look like the standard library (the one under my pillow) has that feature. In addition, I've heard that with newer versions of windows don't let you communicate with the port directly, instead requiring interfacing with some driver?

I came across this:
http://pyserial.sourceforge.net/pyparallel.html
but it seems to only be used for direct access (would it work with XP?), and hasn't been updated for a couple of years. In addition, it requires something called "Java Communications" (JavaComm) extension for Java/Jython, doesn't provide a link to it, and when I google it - google returns the page I came from!

To add to the confusion, I hope I can provide a py2exe executable of my script instead of forcing a complete installation.
--------------= Posted using GrabIt =----------------
------= Binary Usenet downloading made easy =---------
-= Get GrabIt for free from http://www.shemes.com/ =-

Aug 3 '05 #1
6 7199
jkn

Novice Experl wrote:
I'd like to write a simple application that interfaces with the parallel port, and changes the data on it according to keyboard input. I hope I can get it to run under windows xp and / or windows 2000.

How can I do this? What do I need to know? It doesn't look like the standard library (the one under my pillow) has that feature. In addition, I've heard that with newer versions of windows don't let you communicate with the port directly, instead requiring interfacing with some driver?

I came across this:
http://pyserial.sourceforge.net/pyparallel.html
but it seems to only be used for direct access (would it work with XP?), and hasn't been updated for a couple of years. In addition, it requires something called "Java Communications" (JavaComm) extension for Java/Jython, doesn't provide a link to it, and when I google it - google returns the page I came from!

To add to the confusion, I hope I can provide a py2exe executable of my script instead of forcing a complete installation.
--------------= Posted using GrabIt =----------------
------= Binary Usenet downloading made easy =---------
-= Get GrabIt for free from http://www.shemes.com/ =-


Aug 3 '05 #2
Novice Experl wrote:
I'd like to write a simple application that interfaces with the parallel port, and changes the data on it according to keyboard input. I hope I can get it to run under windows xp and / or windows 2000.

How can I do this? What do I need to know? It doesn't look like the standard library (the one under my pillow) has that feature. In addition, I've heard that with newer versions of windows don't let you communicate with the port directly, instead requiring interfacing with some driver?

I came across this:
http://pyserial.sourceforge.net/pyparallel.html
but it seems to only be used for direct access (would it work with XP?), and hasn't been updated for a couple of years. In addition, it requires something called "Java Communications" (JavaComm) extension for Java/Jython, doesn't provide a link to it, and when I google it - google returns the page I came from!

To add to the confusion, I hope I can provide a py2exe executable of my script instead of forcing a complete installation.
--------------= Posted using GrabIt =----------------
------= Binary Usenet downloading made easy =---------
-= Get GrabIt for free from http://www.shemes.com/ =-

Here's teh link to jaavx.comm -
http://java.sun.com/products/javacomm/index.jsp.

The interface stuff, hmm I'm not quite sure what you are on about you
access ports through the win32 API which is the 'driver' - you could
probably bypass this and start playing around with assembly code but
there's no point!!

Cheers,

Neil

--

Neil Benn
Senior Automation Engineer
Cenix BioScience
BioInnovations Zentrum
Tatzberg 47
D-01307
Dresden
Germany

Tel : +49 (0)351 4173 154
e-mail : be**@cenix-bioscience.com
Cenix Website : http://www.cenix-bioscience.com

Aug 3 '05 #3
Novice Experl wrote:
I'd like to write a simple application that interfaces with the parallel port


Use pyParallel. You don't have to worry about the Java stuff unless
you're using Jython. Just follow the instructions on the page
(download, unarchive, python setup.py install).

After that you have to understand how the parallel port works, but I'll
assume you already do or can use the web to figure it out.
--
Benji York

Aug 3 '05 #4
On Tue, 2 Aug 2005 23:44:54 -0700, "Novice Experl" <ex@pe.rl> declaimed
the following in comp.lang.python:
I'd like to write a simple application that interfaces with the parallel port, and changes the data on it according to keyboard input. I hope I can get it to run under windows xp and / or windows 2000.
Under W-nt (W2K/WinXP) you can only do low-level port access via
an OS driver that has to be installed as admin. There are a few such out
in the world, but you'll have to wrap the C logic to get it to Python.

W9x still allowed physical access to the port hardware
addresses.

http://www.lvr.com/parport.htm

-- ================================================== ============ <
wl*****@ix.netcom.com | Wulfraed Dennis Lee Bieber KD6MOG <
wu******@dm.net | Bestiaria Support Staff <
================================================== ============ <
Home Page: <http://www.dm.net/~wulfraed/> <
Overflow Page: <http://wlfraed.home.netcom.com/> <

Aug 3 '05 #5
Novice Experl (ex@pe.rl) wrote:
: I'd like to write a simple application that interfaces with the parallel port, and changes the data on it according to keyboard input. I hope I can get it to run under windows xp and / or windows 2000.

: How can I do this? What do I need to know? It doesn't look like the standard library (the one under my pillow) has that feature. In addition, I've heard that with newer versions of windows don't let you communicate with the port directly, instead requiring interfacing with some driver?

I always use DLPortIO, makes life almost as simple as GWBasic and a DOS
box... You can either create a custom extension around this or use
ctypes. Generally speaking a custom .dll is only needed if you are your
lpt transactions are bidirectional, highly interleaved and high bandwidth.

DLPortIO: http://www.driverlinx.com/DownLoad/DlPortIO.htm
ctypes: http://starship.python.net/crew/theller/ctypes/

Note that DLPortIO is not a Python thing, it's a generic Windows .dll with
C and VB examples, and needs installing, so it can't be packaged with
py2exe. I'd guess this is the same for other parallel port accesing
tools - I think you need admin privilidges on a Windows NT/2K/XP box to
install DLPortIO, but not to use it.

If you decide this is the best route for you and find yourself stuck, drop
me an email for some example code.

---

cds

: I came across this:
: http://pyserial.sourceforge.net/pyparallel.html
: but it seems to only be used for direct access (would it work with XP?), and hasn't been updated for a couple of years. In addition, it requires something called "Java Communications" (JavaComm) extension for Java/Jython, doesn't provide a link to it, and when I google it - google returns the page I came from!

: To add to the confusion, I hope I can provide a py2exe executable of my script instead of forcing a complete installation.
: --------------= Posted using GrabIt =----------------
: ------= Binary Usenet downloading made easy =---------
: -= Get GrabIt for free from http://www.shemes.com/ =-

Aug 3 '05 #6
Forgot to say - under OS' derived from Windows NT (i.e. NT 3.5, NT4, 2K,
XP and future) it is not possible to directly access the parallel port,
this has to be done by a kernel driver, hence the need to install
something like DLPortIO, which parly exists in the kernel to access the
hardware, and partly in userland to allow your programs to talk to the
kernel part.

I find it very annoying just how far PCs have regressed in terms of
simple IO - back in the 8 bit days it was easy to hook sensors and
actuators up to a computer without much knowledge and program something
with them in Basic. These days it's almost impossible without special kit
and lots of know how. Heck, the old BBC Mirco had raw IO capabilites as
fast as an IBM parallel port, and more flexible to boot.

Progress. A real pain for r&d types.

---

cds

c d saunter (ch*****************@durham.ac.uk) wrote:
: Novice Experl (ex@pe.rl) wrote:
: : I'd like to write a simple application that interfaces with the parallel port, and changes the data on it according to keyboard input. I hope I can get it to run under windows xp and / or windows 2000.

: : How can I do this? What do I need to know? It doesn't look like the standard library (the one under my pillow) has that feature. In addition, I've heard that with newer versions of windows don't let you communicate with the port directly, instead requiring interfacing with some driver?

: I always use DLPortIO, makes life almost as simple as GWBasic and a DOS
: box... You can either create a custom extension around this or use
: ctypes. Generally speaking a custom .dll is only needed if you are your
: lpt transactions are bidirectional, highly interleaved and high bandwidth.

: DLPortIO: http://www.driverlinx.com/DownLoad/DlPortIO.htm
: ctypes: http://starship.python.net/crew/theller/ctypes/

: Note that DLPortIO is not a Python thing, it's a generic Windows .dll with
: C and VB examples, and needs installing, so it can't be packaged with
: py2exe. I'd guess this is the same for other parallel port accesing
: tools - I think you need admin privilidges on a Windows NT/2K/XP box to
: install DLPortIO, but not to use it.

: If you decide this is the best route for you and find yourself stuck, drop
: me an email for some example code.

: ---

: cds
Aug 3 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Rosalie Mignon | last post by:
I've developped an application under Visual Basic 5.0. This application manage the parallel port. Application is working well under Windows XP Pro, but will not work under Windows XP Familly...
11
by: karan | last post by:
I would like to know how one can use the parallel port through c/c++.Also, how does one determine what port is installed(EPP/ECP/SSP/PS2)? What is the differnece between these? What are the...
2
by: Panu's | last post by:
Hi, I want to measure the battery voltage through PC in my college project. How can I do so. I mean the interface and programming. Everything welcome.
3
by: nik | last post by:
hello frinds, last night i am using C prog to get output at my parallel port the following source code is #include<dos.h> #include<conio.h> #include<process.h> void main() { outportb(...
23
by: Marco | last post by:
Could anyone please tell me why the program has the following error? I copy the program from http://www.beyondlogic.org/parlcd/parlcd.htm ...
1
by: rajat varshney | last post by:
I am doing a project on controlling a stepper motor through computer parallel port over a network. I have also done parallel port programming in C but I need some help on how to send output on...
1
by: fazad | last post by:
Hello I need help in preparing a code on Visul C++ involving a parallel port. I'm basically try to count the number of pulses recieved by my device via the parallel port and display it on the screen....
6
by: KYAW KYAW OO | last post by:
Dear All, I am trying to interface the above application with a reference of CodeProject: I/O Ports Uncensored - 1 - Controlling LEDs (Light Emiting Diodes) with Parallel Port. Free source code...
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: marcoviolo | last post by:
Dear all, I would like to implement on my worksheet an vlookup dynamic , that consider a change of pivot excel via win32com, from an external excel (without open it) and save the new file into a...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.