Metadata-Version: 2.1
Name: RsSmab
Version: 5.30.133
Summary: SMA100B Microwave Signal Generator Remote-control module
Author: Rohde & Schwarz GmbH & Co. KG
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
Requires-Dist: PyVisa>=1.11.3

==================================
 RsSmab
==================================

.. image:: https://img.shields.io/pypi/v/RsSmab.svg
   :target: https://pypi.org/project/ RsSmab/

.. image:: https://readthedocs.org/projects/sphinx/badge/?version=master
   :target: https://RsSmab.readthedocs.io/

.. image:: https://img.shields.io/pypi/l/RsSmab.svg
   :target: https://pypi.python.org/pypi/RsSmab/

.. image:: https://img.shields.io/pypi/pyversions/pybadges.svg
   :target: https://img.shields.io/pypi/pyversions/pybadges.svg

.. image:: https://img.shields.io/pypi/dm/RsSmab.svg
   :target: https://pypi.python.org/pypi/RsSmab/

Rohde & Schwarz SMA100B Microwave Signal Generator RsSmab instrument driver.

Basic Hello-World code:

.. code-block:: python

    from RsSmab import *

    instr = RsSmab('TCPIP::192.168.2.101::hislip0')
    idn = instr.query('*IDN?')
    print('Hello, I am: ' + idn)

Supported instruments: SMA100B

The package is hosted here: https://pypi.org/project/RsSmab/

Documentation: https://RsSmab.readthedocs.io/

Examples: https://github.com/Rohde-Schwarz/Examples/tree/main/SignalGenerators/Python/RsSmab_ScpiPackage


Version history
----------------

	Latest release notes summary: Fixed all commands 'Pattern' variables from lists to raw scalar strings.

	Version 5.30.133
		- Fixed all commands 'Pattern' variables from lists to raw scalar strings.

	Version 5.30.132
		- Update for FW 5.30

	Version 5.10.121
		- Update for FW 5.10

	Version 5.0.123
		- Update for FW 5.0

	Version 4.70.300.19
		- Fixed bug in interfaces with the name 'base', new docu format

	Version 4.70.300.16
		- Fixed several misspelled arguments and command headers

	Version 4.70.300.15
		- Complete rework of the Repeated capabilities. Before, the driver used extensively the RepCaps Channel, Stream, Subframe, User, Group. Now, they have more fitting names, and also proper ranges and default values.
		- All the repcaps ending with Null have ranges starting with 0. 0 is also their default value. For example, ChannelNull starts from 0, while Channel starts from 1. Since this is a breaking change, please make sure your code written in the previous version of the driver is compatible with this new version. This change was necessary in order to assure all the possible settings.

	Version 4.70.205.9
		- Added Documentation
		- Added method RsSmab.list_resources()

	Version 4.70.205.8
		- Default HwInterface repcap is 0 (empty command suffix)

	Version 4.70.205.7
		- Second build, fixed enum names

	Version 4.70.205.1
		- First released version
