Commit 40979e83cc74762b807416aab9e854d0baaf65a4

Authored by Alain Klotz
1 parent 1f268876
Exists in master

readme bugfix

Showing 1 changed file with 12 additions and 12 deletions   Show diff stats
README.md
1   -# Guitastro Device FLIPRO library
  1 +# Guitastro Device Quickaudine library
2 2  
3 3 GUITAstro stands for General Use of Instruments and Telescopes in ASTROnomy.
4 4  
... ... @@ -6,18 +6,18 @@ GuitAstro is a Python module that provides classes and methods to write easily P
6 6  
7 7 [GIT repository: https://gitlab.irap.omp.eu/guitastrolib/guitastro.git](https://gitlab.irap.omp.eu/guitastrolib/guitastro.git)
8 8  
9   -Guitastro device Flipro complete Guitastro to provide access to FLIPRO camera drivers:
  9 +Guitastro device Quickaudine complete Guitastro to provide access to Quickaudine camera drivers:
10 10  
11   -[GIT repository: https://gitlab.irap.omp.eu/guitastrolib/guitastro_device_flipro.git](https://gitlab.irap.omp.eu/guitastrolib/guitastro_device_flipro.git)
  11 +[GIT repository: https://gitlab.irap.omp.eu/guitastrolib/guitastro_device_quickaudine.git](https://gitlab.irap.omp.eu/guitastrolib/guitastro_device_quickaudine.git)
12 12  
13 13 ## Few basic examples of use
14 14  
15   -First example: To connect a Flipro controler and acquire an image:
  15 +First example: To connect a Quickaudine controler and acquire an image:
16 16 ```
17 17 import guitastro
18   -import guitastro_device_flipro
  18 +import guitastro_device_quickaudine
19 19  
20   -dev = Device_Flipro("FLIPRO", name="Flipro")
  20 +dev = Device_Quickaudine("QUICKAUDINE", name="Quickaudine")
21 21 dev.open(True)
22 22 dev.commandstring("camera SET exptime 0.1")
23 23 dev.commandstring("camera DO ACQ START")
... ... @@ -32,17 +32,17 @@ ima.save("my_image.fit")
32 32  
33 33 ## Guitastro functionalities
34 34  
35   -GuitAstro device Flipro wraps the driver functions dispatched into the classes:
  35 +GuitAstro device Quickaudine wraps the driver functions dispatched into the classes:
36 36  
37   -- **Device_Flipro**: Manage device Flipro drivers.
  37 +- **Device_Quickaudine**: Manage device Quickaudine drivers.
38 38  
39 39 This class inheritate from the classes Component* of Guitastro.
40   -As a consequece, it is needed to install Guitastro before using Guitastro Flipro.
41   -Moreover, this class imports internally a Python wrapper to use the SDK FLIPro libraries provided by Finger Lakes Instruments.
42   -You need to compile the python wrapper *wrapper_flipro*:
  40 +As a consequece, it is needed to install Guitastro before using Guitastro Quickaudine.
  41 +Moreover, this class imports internally a Python wrapper to use the needed libraries.
  42 +You need to compile the python wrapper *wrapper_quickaudine*:
43 43  
44 44 ```
45   -$ cd guitastro_device_flipro/src/wrapper_flipro
  45 +$ cd guitastro_device_quickaudine/src/wrapper_quickaudine
46 46 $ python setup.py build_ext --inplace
47 47 ```
48 48  
... ...