Skip to content

dummy_em27_sensors

frog.hardware.plugins.sensors.dummy_em27_sensors ¤

This module provides an interface to a dummy EM27 monitor.

Classes¤

DummyEM27Sensors() ¤

Bases: EM27SensorsBase

A dummy device for EM27 sensors.

Create a new EM27 property monitor.

Source code in frog/hardware/plugins/sensors/dummy_em27_sensors.py
12
13
14
15
16
17
def __init__(self) -> None:
    """Create a new EM27 property monitor."""
    dummy_em27_fp = resources.files("frog.hardware.plugins.sensors").joinpath(
        "diag_autom.htm"
    )
    super().__init__(Path(str(dummy_em27_fp)).as_uri())
Functions¤