We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffd25a5 commit c4dbe8dCopy full SHA for c4dbe8d
README.md
@@ -35,9 +35,9 @@ pslab-python can be installed from PyPI:
35
1. Plug in the PSLab device and check that both the LEDs light up.
36
2. The following piece of code should run without errors:
37
```
38
-from PSL import sciencelab
39
-I = sciencelab.connect()
40
-capacitance = I.multimeter.measure_capacitance()
+from pslab import ScienceLab
+psl = ScienceLab()
+capacitance = psl.multimeter.measure_capacitance()
41
print(capacitance)
42
43
0 commit comments