pyparts.parts.sensor.temperature.max31855
index
/home/sean/src/python/pyparts/src/pyparts/parts/sensor/temperature/max31855.py

 
Modules
       
pyparts.parts.sensor.temperature.base_temperature_sensor

 
Classes
       
pyparts.parts.sensor.temperature.base_temperature_sensor.BaseTemperatureSensor(pyparts.parts.base_part.BasePart)
MAX31855

 
class MAX31855(pyparts.parts.sensor.temperature.base_temperature_sensor.BaseTemperatureSensor)
    
Method resolution order:
MAX31855
pyparts.parts.sensor.temperature.base_temperature_sensor.BaseTemperatureSensor
pyparts.parts.base_part.BasePart
__builtin__.object

Methods defined here:
__del__(self)
__init__(self, spi_bus)

Data descriptors defined here:
internal_temp_c
internal_temp_f

Data and other attributes defined here:
__abstractmethods__ = frozenset([])

Data descriptors inherited from pyparts.parts.sensor.temperature.base_temperature_sensor.BaseTemperatureSensor:
temp_c
temp_f

Data and other attributes inherited from pyparts.parts.sensor.temperature.base_temperature_sensor.BaseTemperatureSensor:
__metaclass__ = <class 'abc.ABCMeta'>
Metaclass for defining Abstract Base Classes (ABCs).
 
Use this metaclass to create an ABC.  An ABC can be subclassed
directly, and then acts as a mix-in class.  You can also register
unrelated concrete classes (even built-in classes) and unrelated
ABCs as 'virtual subclasses' -- these and their descendants will
be considered subclasses of the registering ABC by the built-in
issubclass() function, but the registering ABC won't show up in
their MRO (Method Resolution Order) nor will method
implementations defined by the registering ABC be callable (not
even via super()).

Data descriptors inherited from pyparts.parts.base_part.BasePart:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)