SEEL package¶
Subpackages¶
- SEEL.SENSORS package
- Submodules
- SEEL.SENSORS.AD9833 module
- SEEL.SENSORS.BH1750 module
- SEEL.SENSORS.BMP180 module
- SEEL.SENSORS.ComplementaryFilter module
- SEEL.SENSORS.HMC5883L module
- SEEL.SENSORS.Kalman module
- SEEL.SENSORS.MF522 module
- SEEL.SENSORS.MLX90614 module
- SEEL.SENSORS.MPU6050 module
- SEEL.SENSORS.SHT21 module
- SEEL.SENSORS.SSD1306 module
- SEEL.SENSORS.TSL2561 module
- SEEL.SENSORS.supported module
- Module contents
Submodules¶
SEEL.Peripherals module¶
SEEL.achan module¶
SEEL.analyticsClass module¶
SEEL.digital_channel module¶
SEEL.interface module¶
SEEL.packet_handler module¶
-
class
SEEL.packet_handler.
Handler
(timeout=1.0, **kwargs)[source]¶ -
-
sendBurst
()[source]¶ Transmits the commands stored in the burstBuffer. empties input buffer empties the burstBuffer.
The following example initiates the capture routine and sets OD1 HIGH immediately.
It is used by the Transient response experiment where the input needs to be toggled soon after the oscilloscope has been started.
>>> I.loadBurst=True >>> I.capture_traces(4,800,2) >>> I.set_state(I.OD1,I.HIGH) >>> I.sendBurst()
-