vacuubrand library
Project description
Vacuubrand library
This library is used to control basic features of a Vacuubrand controller.
It is composed of a core library, an optional simulator and an optional tango device server.
So far only the DCP 3000 is supported.
Installation
From within your favorite python environment type:
$ pip install vacuubrand
Library
The core of the vacuubrand library consists of DCP3000 object. To create a DCP3000 object you need to pass a communication object.
The communication object can be any object that supports a simple API consisting of two methods (either the sync or async version is supported):
write_readline(buff: bytes) -> bytes
orwrite(buff: bytes) -> None
or
Usually you end up using a serial.Serial
object.
Here is how to connect to a DCP 3000 controller:
from vacuubrand.dcp3000 import DCP3000, serial_for_url
def main():
# could also be a socket bridge (ser2net): 'socket://<host>:<port>'
comm = serial_for_url('/dev/ttyS0')
dcp = DCP3000(comm)
print(dcp.actual_pressure)
main()
Serial line
To access a serial line based DCP 3000 device it is strongly recommended you spawn a serial to tcp bridge using ser2net or socat
Assuming your device is connected to /dev/ttyS0
and the baudrate is set to 19200,
here is how you could use socat to expose your device on the machine port 5000:
socat -v TCP-LISTEN:5000,reuseaddr,fork file:/dev/ttyS0,rawer,b19200,cs8,eol=10,icanon=1
It might be worth considering starting socat or ser2net as a service using supervisor or circus.
Simulator
A DCP 3000 simulator is provided.
Before using it, make sure everything is installed with:
$ pip install vacuubrand[simulator]
The sinstruments engine is used.
To start a simulator you need to write a YAML config file where you define how many devices you want to simulate and which properties they hold.
The following example exports 2 hardware devices. The first is a minimal configuration using default values and the second defines some initial values explicitly:
# config.yml
devices:
- class: DCP3000
package: vacuubrand.simulator
transports:
- type: serial
url: /tmp/dcp3000-1
To start the simulator type:
$ sinstruments-server -c ./config.yml --log-level=DEBUG
2020-07-02 12:18:45,065 INFO simulator: Bootstraping server
2020-07-02 12:18:45,065 INFO simulator: no backdoor declared
2020-07-02 12:18:45,065 INFO simulator: Creating device DCP3000 ('DCP3000')
2020-07-02 12:18:45,067 INFO simulator: Created symbolic link "/tmp/dcp3000-1" to simulator pseudo terminal '/dev/pts/7'
2020-07-02 12:18:45,067 INFO simulator.DCP3000[/tmp/dcp3000-1]: listening on /tmp/dcp3000-1 (baud=None)
(To see the full list of options type sinstruments-server --help
)
You can access it as you would a real hardware:
$ miniterm.py -e --eol CRLF /tmp/dcp3000-1
IN_PV_1
1004.1 mbar
or using the library:
$ python
>>> from vacuubrand.dcp3000 import DCP3000, serial_for_url
>>> dcp = DCP3000('/tmp/dcp3000-1')
>>> print(dcp.actual_pressure)
1004.1
Tango server
A tango device server is also provided.
Make sure everything is installed with:
$ pip install vacuubrand[tango]
Register a cryocon tango server in the tango database:
$ tangoctl server add -s Vacuubrand/test -d DCP3000 test/dcp3000/1
$ tangoctl device property write -d test/dcp3000/1 -p address -v "/dev/ttyS0"
(the above example uses tangoctl. You would need
to install it with pip install tangoctl
before using it. You are free to use any other
tango tool like fandango or Jive)
Launch the server with:
$ Vacuubrand test
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.