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 119fb02 commit 6518484Copy full SHA for 6518484
pslab/sciencelab.py
@@ -8,6 +8,7 @@
8
9
import pslab.protocol as CP
10
from pslab.bus.i2c import I2CMaster
11
+from pslab.bus.spi import SPIMaster
12
from pslab.instrument.logic_analyzer import LogicAnalyzer
13
from pslab.instrument.multimeter import Multimeter
14
from pslab.instrument.oscilloscope import Oscilloscope
@@ -46,6 +47,7 @@ def __init__(
46
47
self.multimeter = Multimeter(device=self)
48
self.power_supply = PowerSupply(device=self)
49
self.i2c = I2CMaster(device=self)
50
+ self.spi = SPIMaster(device=self)
51
self.nrf = NRF24L01(device=self)
52
53
if "V6" in self.version: # Set the built-in WS2812B to green :)
0 commit comments