nisdc


Namenisdc JSON
Version 24.5.0.0 PyPI version JSON
download
home_pageNone
SummaryNI Semiconductor Device Control python Support provides python APIs to develop python test programs and communicate with a device using the setup configuration exported from the Semiconductor Device Control Add-On for InstrumentStudio.
upload_time2024-06-26 06:23:29
maintainerNone
docs_urlNone
authorNational Instruments
requires_python<3.13,>=3.7
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # About
NI Semiconductor Device Control Python API Support provides Python APIs and examples to develop python test programs and communicate with a device using the setup configuration exported from the Semiconductor Device Control Add-On for InstrumentStudio.

This library is dependent on Semiconductor Device Control addon for InstrumentStudio.


# Semiconductor Device Control Python API Status

**Setup and cleanup functions**
1. Instantiate - using IS configuration file  
2. Attach to Existing Session
3. Destroy  
4. Start  
5. Stop  

**Hardware Read & Write to Register and Field** 

6. Write Register by name (Device)  
7. Read Register by name (Device)  
8. Write Register by Address (Device)  
9. Read Register by Address (Device)  
10. Write Custom Register by Address (Device) 
11. Read Custom Register by Address (Device) 
12. Write Field by Name (Device)  
13. Read Field by Name (Device)  
14. Write Field by value definition (Device)  

**Hardware multiple Read & Write to Register and Field**

15. Write Multiple Register by Name (Device)  
16. Read Multiple Register by name (Device)  
17. Write Multiple Register by Address (Device)  
18. Read Multiple Register by Address (Device)  
19. Write Multiple Fields by Name (Device)  
20. Read Multiple Field by Name (Device)  

**Cache Read & Write to Register and Field**

21. Write Register by name (Cache)  
22. Read Register by name (Cache)  
23. Write Register by Address (Cache)  
24. Read Register by Address (Cache)  
25. Write Field by Name (Cache)  
26. Read Field by Name (Cache)  
27. Write Field by value definition (cache)  
28. Write from Cache to Device  
29. Clear Cache  

**Cache multiple Read & Write to Register and Field**  

30. Write Multiple Register by Name (Cache)  
31. Read Multiple Register by name (Cache)  
32. Write Multiple Register by Address (Cache)  
33. Read Multiple Register by Address (Cache)  
34. Write Multiple Fields by Name (Cache)  
35. Read Multiple Field by Name (Cache) 

**DIO operation**

36. Write Pin State  
37. Read Pin State 

**Utils**

38. Get Dynamic Protocol Settings
39. Update Dynamic Protocol Settings
40. Get Instrument Session **
41. Get Session Options

(** This API is deprecated from 2023 Q4 version of Semiconductor Device Control Addon.
Refer to the [user manual](https://www.ni.com/documentation/en/semiconductor-device-control/latest/manual/manual-overview/) for more information.)

# Installation   
**Dependency Installation**  
1. Semiconductor Device Control addon for InstrumentStudio 2024 Q3.  
2. pythonnet 3.0.3 - [pypi download](https://pypi.org/project/pythonnet/#description)  

**Work with github source code**  

3. Clone the github repository - [semiconductor device control python api github repo](https://github.com/ni/nisemi-python).  
4. Use the APIs from 'nisdc' folder in your program  

**Work with Semiconductor Device Control Python API from PyPI**

5. Go to Semiconductor Device Control Python API location in the github repository.  
6. Install the package and use the api libraries in your program  

# Usage

Reference example is available in the(https://github.com/ni/nisemi-python) for developers (under examples folder), to refer on how to use the python APIs in the test program.

# Documentation

Documentation is available from ni resource website - [here](https://www.ni.com/documentation/en/semiconductor-device-control/latest/manual/manual-overview/).

# Contributing

We welcome contributions! You can clone the project repository, make changes, build it, and install it by [following these instructions](CONTRIBUTING.md). This also has instruction on how to contribute your changes back to the main repository.

# Bugs / Feature Requests

To report a bug or submit a feature request specific feature, please use the https://github.com/ni/nisemi-python/issues.

Fill in the issue template as completely as possible and we will respond as soon
as we can.

For hardware support or any other questions not specific to this GitHub project, please visit [NI Community Forums](https://forums.ni.com/).

# License

[License file](LICENSE)

**semi device control python api** is licensed under an MIT-style license
Other incorporated projects may be licensed under different licenses. All
licenses allow for non-commercial and commercial use.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "nisdc",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.13,>=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "National Instruments",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/00/8a/e44c03504406468f7a10e1e6df67adf025a8c4fe1cf9e10f3bca074d948f/nisdc-24.5.0.0.tar.gz",
    "platform": null,
    "description": "# About\nNI Semiconductor Device Control Python API Support provides Python APIs and examples to develop python test programs and communicate with a device using the setup configuration exported from the Semiconductor Device Control Add-On for InstrumentStudio.\n\nThis library is dependent on Semiconductor Device Control addon for InstrumentStudio.\n\n\n# Semiconductor Device Control Python API Status\n\n**Setup and cleanup functions**\n1. Instantiate - using IS configuration file  \n2. Attach to Existing Session\n3. Destroy  \n4. Start  \n5. Stop  \n\n**Hardware Read & Write to Register and Field** \n\n6. Write Register by name (Device)  \n7. Read Register by name (Device)  \n8. Write Register by Address (Device)  \n9. Read Register by Address (Device)  \n10. Write Custom Register by Address (Device) \n11. Read Custom Register by Address (Device) \n12. Write Field by Name (Device)  \n13. Read Field by Name (Device)  \n14. Write Field by value definition (Device)  \n\n**Hardware multiple Read & Write to Register and Field**\n\n15. Write Multiple Register by Name (Device)  \n16. Read Multiple Register by name (Device)  \n17. Write Multiple Register by Address (Device)  \n18. Read Multiple Register by Address (Device)  \n19. Write Multiple Fields by Name (Device)  \n20. Read Multiple Field by Name (Device)  \n\n**Cache Read & Write to Register and Field**\n\n21. Write Register by name (Cache)  \n22. Read Register by name (Cache)  \n23. Write Register by Address (Cache)  \n24. Read Register by Address (Cache)  \n25. Write Field by Name (Cache)  \n26. Read Field by Name (Cache)  \n27. Write Field by value definition (cache)  \n28. Write from Cache to Device  \n29. Clear Cache  \n\n**Cache multiple Read & Write to Register and Field**  \n\n30. Write Multiple Register by Name (Cache)  \n31. Read Multiple Register by name (Cache)  \n32. Write Multiple Register by Address (Cache)  \n33. Read Multiple Register by Address (Cache)  \n34. Write Multiple Fields by Name (Cache)  \n35. Read Multiple Field by Name (Cache) \n\n**DIO operation**\n\n36. Write Pin State  \n37. Read Pin State \n\n**Utils**\n\n38. Get Dynamic Protocol Settings\n39. Update Dynamic Protocol Settings\n40. Get Instrument Session **\n41. Get Session Options\n\n(** This API is deprecated from 2023 Q4 version of Semiconductor Device Control Addon.\nRefer to the [user manual](https://www.ni.com/documentation/en/semiconductor-device-control/latest/manual/manual-overview/) for more information.)\n\n# Installation   \n**Dependency Installation**  \n1. Semiconductor Device Control addon for InstrumentStudio 2024 Q3.  \n2. pythonnet 3.0.3 - [pypi download](https://pypi.org/project/pythonnet/#description)  \n\n**Work with github source code**  \n\n3. Clone the github repository - [semiconductor device control python api github repo](https://github.com/ni/nisemi-python).  \n4. Use the APIs from 'nisdc' folder in your program  \n\n**Work with Semiconductor Device Control Python API from PyPI**\n\n5. Go to Semiconductor Device Control Python API location in the github repository.  \n6. Install the package and use the api libraries in your program  \n\n# Usage\n\nReference example is available in the(https://github.com/ni/nisemi-python) for developers (under examples folder), to refer on how to use the python APIs in the test program.\n\n# Documentation\n\nDocumentation is available from ni resource website - [here](https://www.ni.com/documentation/en/semiconductor-device-control/latest/manual/manual-overview/).\n\n# Contributing\n\nWe welcome contributions! You can clone the project repository, make changes, build it, and install it by [following these instructions](CONTRIBUTING.md). This also has instruction on how to contribute your changes back to the main repository.\n\n# Bugs / Feature Requests\n\nTo report a bug or submit a feature request specific feature, please use the https://github.com/ni/nisemi-python/issues.\n\nFill in the issue template as completely as possible and we will respond as soon\nas we can.\n\nFor hardware support or any other questions not specific to this GitHub project, please visit [NI Community Forums](https://forums.ni.com/).\n\n# License\n\n[License file](LICENSE)\n\n**semi device control python api** is licensed under an MIT-style license\nOther incorporated projects may be licensed under different licenses. All\nlicenses allow for non-commercial and commercial use.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "NI Semiconductor Device Control python Support provides python APIs to develop python test programs and communicate with a device using the setup configuration exported from the Semiconductor Device Control Add-On for InstrumentStudio.",
    "version": "24.5.0.0",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47378a9e989e0890b81052457844d6f3ff0abdfed3f615f05f52595a729309df",
                "md5": "715f652cc327cb86451f94ed22b40a78",
                "sha256": "a798047a522effdfb8ea3ac7121c9fce06688668b0a4cf92a421238ecb26573c"
            },
            "downloads": -1,
            "filename": "nisdc-24.5.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "715f652cc327cb86451f94ed22b40a78",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.13,>=3.7",
            "size": 8840,
            "upload_time": "2024-06-26T06:23:27",
            "upload_time_iso_8601": "2024-06-26T06:23:27.729708Z",
            "url": "https://files.pythonhosted.org/packages/47/37/8a9e989e0890b81052457844d6f3ff0abdfed3f615f05f52595a729309df/nisdc-24.5.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "008ae44c03504406468f7a10e1e6df67adf025a8c4fe1cf9e10f3bca074d948f",
                "md5": "b40740baa91afe94cee22b47697fa4c9",
                "sha256": "acebb2e30ca8bc52750e7a100b84f42100c599efc621d2557243b30387d3a691"
            },
            "downloads": -1,
            "filename": "nisdc-24.5.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "b40740baa91afe94cee22b47697fa4c9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.13,>=3.7",
            "size": 9562,
            "upload_time": "2024-06-26T06:23:29",
            "upload_time_iso_8601": "2024-06-26T06:23:29.257803Z",
            "url": "https://files.pythonhosted.org/packages/00/8a/e44c03504406468f7a10e1e6df67adf025a8c4fe1cf9e10f3bca074d948f/nisdc-24.5.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-26 06:23:29",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "nisdc"
}
        
Elapsed time: 1.09304s