Source code for piel.types.experimental.device
"""
Note that this section of measurement measurement is separate from the main piel package flow because they correspond to
specific measurement files that is not yet part of the main package in a flow used as per the devices provided.
"""
from typing import Optional
from piel.types.core import PielBaseModel
from piel.types.connectivity.physical import PhysicalComponent
from .measurements.core import MeasurementConfiguration
[docs]
class DeviceConfiguration(PielBaseModel):
pass
[docs]
class Device(PhysicalComponent):
"""
Corresponds to the abstraction of a given device measurement.
"""
configuration: Optional[DeviceConfiguration] = None
serial_number: str = ""
[docs]
class MeasurementDevice(Device):
measurement: Optional[MeasurementConfiguration] = None
"""
Contains the measurement information.
"""