TempSensor_NXP_Arduino 1.1.0
Temperature sensor device operation sample code for Arduino
Loading...
Searching...
No Matches
Public Types | Public Member Functions | List of all members
TempSensor Class Referenceabstract

#include <TempSensor.h>

Inheritance diagram for TempSensor:
LM75B P3T1755 PCT2075 P3T1035 P3T1085 P3T2030

Public Types

enum  mode { COMPARATOR , INTERRUPT }
 

Public Member Functions

 TempSensor (uint8_t i2c_address)
 
 TempSensor (TwoWire &wire, uint8_t i2c_address)
 
virtual ~TempSensor ()
 
virtual float temp (void)=0
 
virtual float read (void)
 

Detailed Description

TempSensor operation library for Arduino

Author
Tedd OKANO

Released under the MIT license License

TempSensor class

TempSensor class is a base class for all temperature sensors All actual device class will be inherited from this class

Definition at line 25 of file TempSensor.h.

Member Enumeration Documentation

◆ mode

Enumerator
COMPARATOR 

Comparator mode

INTERRUPT 

Interrupt mode

Definition at line 28 of file TempSensor.h.

Constructor & Destructor Documentation

◆ TempSensor() [1/2]

TempSensor::TempSensor ( uint8_t i2c_address)

Definition at line 5 of file TempSensor.cpp.

◆ TempSensor() [2/2]

TempSensor::TempSensor ( TwoWire & wire,
uint8_t i2c_address )

Definition at line 6 of file TempSensor.cpp.

◆ ~TempSensor()

TempSensor::~TempSensor ( )
virtual

Definition at line 7 of file TempSensor.cpp.

Member Function Documentation

◆ read()

float TempSensor::read ( void )
virtual

Get temperature value in degree Celsius [°C]

This method simply calls "temp()" method

Returns
temperature value in degree Celsius [°C]

Reimplemented in LM75B, PCT2075, P3T1755, P3T1085, P3T1035, and P3T2030.

Definition at line 9 of file TempSensor.cpp.

◆ temp()

virtual float TempSensor::temp ( void )
pure virtual

Implemented in PCT2075, P3T1755, P3T1085, P3T1035, P3T2030, and LM75B.

Referenced by read().


The documentation for this class was generated from the following files: