We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 84a6a0c + d44fc1d commit 6afb396Copy full SHA for 6afb396
1 file changed
README.rst
@@ -26,8 +26,7 @@ Example usage
26
27
.. code:: python
28
29
- # import the library
30
- import absscpi
+ from absscpi import ScpiClient
31
from time import sleep
32
33
with ScpiClient() as client:
@@ -39,7 +38,7 @@ Example usage
39
38
ident = client.get_device_info()
40
print(f"Device ID: {id}")
41
print(f"Part numer: {ident.get_part_number()}")
42
- print(f"Serial number: {ident.get_serial_number()}")
+ print(f"Serial number: {ident.get_serial()}")
43
print(f"FW version: {ident.get_version()}")
44
45
# command cell 1 to 1.4V
0 commit comments