#### Entry 1: Integrating PyAPI wrapper into HPLC dilution
* Looked into how two different versions of python (32 and 64 bit) can be run in the same script, as the PyAPI wrapper needs to be run in a 32-bit env. Solution seems to be that this statement:
```
os.system("conda run -n closed-loop python .\EditExp362.py)
```
will be placed inside the main Py-script, essentially acting as a .exe file. The statement above will run the script called "EditExp362.py" inside the conda env "closed-loop", which then acts on the Python API wrapper.
* Starting writing a new function for editing an array, using the EditArrayMap. This function is called EditArrayMapDiscrete()
* Also found that Jupyter Notebooks can be useful for debugging the UL PyAPI wrapper (`HPLC\debugging.ipynb`)