Hi,
I could find very few examples of PyTango device servers: The one inside PyTango Tutorial and PyPLC.
Where can I find some more?
Thanks
You can get a few more examples by searching for the keyword “python” in the classes catalog for instance:
http://www.tango-controls.org/developers/dsc/search/?search=python
You can also browse the tango-ds sourceforge repository. You can use the “Tango Device Classes User’s Guides” link on
http://www.tango-controls.org/developers/class-doc/ page and look for classes written in Python.
Here is a direct link for convenience:
Hoping this helps,
Reynald
You might want to have a look at the example directory in the pytango repository. The following files all contain a high-level device class:
- examples/Clock/Clock.py
- examples/Clock/ClockDS.py
- examples/TuringMachine/TuringMachine.py
- examples/asyncio_green_mode/asyncio_device_example.py
- examples/fwdAttr/FwdServer.py
- examples/interfacechangeEvents/IfchangeServer.py
- examples/mandatory/MandatoryPropertyServer.py
- examples/pipeEvents/PipeServer.py
- examples/pipes/PipeServer.py
Thanks! Really useful!