Visual Servoing Platform
version 3.0.1
|
#include <visp3/io/vpParallelPort.h>
Public Member Functions | |
vpParallelPort () | |
~vpParallelPort () | |
void | sendData (unsigned char &data) |
unsigned char | getData () |
Parallel port management under unix.
The code below shows how to send a data over the parallel port.
Definition at line 82 of file vpParallelPort.h.
vpParallelPort::vpParallelPort | ( | ) |
Constructor to acces to a parallel port.
Open and initialise the parallel port by sending 0 to the data bus.
Set the default device to "/dev/parport0".
vpParallelPortException::opening | If the device used to access to the parallel port can't be opened. A possible reason is that you don't have write access. |
Definition at line 73 of file vpParallelPort.cpp.
References sendData().
vpParallelPort::~vpParallelPort | ( | ) |
Destructor to close the parallel port.
vpParallelPortException::closing | If the device used to access to the parallel port can't be closed. |
Definition at line 89 of file vpParallelPort.cpp.
unsigned char vpParallelPort::getData | ( | ) |
Get the last data sent to the parallel port.
Definition at line 153 of file vpParallelPort.cpp.
void vpParallelPort::sendData | ( | unsigned char & | data | ) |
Send a data to the parallel port.
data | : Value [D7, D6, ... D0] to send to the data bus. |
The code bellow shows how to set D0 and D2 to logical level 1:
Definition at line 140 of file vpParallelPort.cpp.
Referenced by vpRingLight::off(), vpRingLight::on(), vpRingLight::pulse(), and vpParallelPort().