KIT Solar Car Project / Mbed 2 deprecated mbed_max6675_4_LM61_AEmicroSD

Dependencies:   mbed SDFileSystem

max6675_3.h

Committer:
BoostNori
Date:
2020-03-19
Revision:
0:d68d5418c985

File content as of revision 0:d68d5418c985:

#ifndef MAX6675_3_h
#define MAX6675_3_h

#include "mbed.h"

class max6675_3
{
    SPI& spi_3;
    DigitalOut ncs_3;
  public:
  
    max6675_3(SPI& _spi_3, PinName _ncs_3);
    void select_3();
    void deselect_3();
    
    float read_temp_3();
  private:
    PinName _CS_pin_3;
    PinName _SO_pin_3;
    PinName _SCK_pin_3;
    int _units_3;
    float _error_3;
};

#endif