-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,31 @@ | ||
# picoScopeMATLAB | ||
Library for working with the PicoScope 5000 series (and possibly other models) in MATLAB | ||
Library for working with the PicoScope 5000 series (and possibly other models) in MATLAB. | ||
|
||
This repository includes the necessary toolboxes developed by Pico Technology: | ||
|
||
- <a href="https://es.mathworks.com/matlabcentral/fileexchange/42820-picoscope-5000-series-a-api-matlab-generic-instrument-driver">PicoScope 5000 Series A API MATLAB Generic Instrument Driver</a>. | ||
- <a href="https://es.mathworks.com/matlabcentral/fileexchange/53681-picoscope-support-toolbox">PicoScope Support Toolbox</a>. | ||
|
||
It is only necessary to install the **PicoSDK** to make it fully functional. It can be downloaded here: https://www.picotech.com/downloads | ||
|
||
At the moment it is only compatible with Linux and Windows. I have not been able to get it to work completely on MacOS. If you have information or have managed to get it to work correctly on MacOS, please contact me. | ||
|
||
## Help | ||
|
||
To see the help you can run one of these lines in matlab: | ||
```matlab | ||
addpath(genpath('picoscope5000')) | ||
help picoscope5000 | ||
``` | ||
```matlab | ||
addpath(genpath('picoscope5000')) | ||
doc picoscope5000 | ||
``` | ||
| Using `doc` | Using `help` | | ||
|:------------------------------------------------:|:-------------------------------------------------:| | ||
| <img width="45%" src=".github/images/doc.png" /> | <img width="45%" src=".github/images/help.png" /> | | ||
|
||
## Examples | ||
|
||
Open the **Examples.m** file, where you will find some examples. | ||
You can see the code in the **picoscope5000** folder or by executing `open` + the name of the example. |