Loom_MAX31856 class
MAX31856 thermocouple module.
Contents
Measures temperature.
Base classes
- class LoomSPISensor
- Abstract base class for SPI sensor modules.
Protected variables
- Adafruit_MAX31856 inst_max
- Underlying MAX31856 sensor manager instance.
- float temperature
- Measured temperature.
- float cj_temp
- Measured cold junction temperature.
CONSTRUCTORS / DESTRUCTOR
- Loom_MAX31856(LoomManager* manager, const char* module_name = "MAX31856", const uint8_t num_samples = 1, const uint8_t CS_pin = 10, const uint8_t SPI_a = 10, const uint8_t SPI_b = 11, const uint8_t SPI_c = 12, const uint8_t SPI_d = 13)
- MAX31856 module constructor.
- Loom_MAX31856(LoomManager* manager, JsonArrayConst p)
- Constructor that takes Json Array, extracts args and delegates to regular constructor.
- ~Loom_MAX31856() defaulted
- Destructor.
OPERATION
PRINT INFORMATION
- void print_measurements() const override
- Print the last set of measurements taken.
Function documentation
Loom_ MAX31856:: Loom_MAX31856(LoomManager* manager,
const char* module_name = "MAX31856",
const uint8_t num_samples = 1,
const uint8_t CS_pin = 10,
const uint8_t SPI_a = 10,
const uint8_t SPI_b = 11,
const uint8_t SPI_c = 12,
const uint8_t SPI_d = 13)
MAX31856 module constructor.
Parameters | |
---|---|
manager | |
module_name in | String | <"MAX31856"> | null | MAX31856 module name |
num_samples in | Set(Int) | <8> | {1, 2, 4, 8, 16} | How many samples to take and average |
CS_pin in | Set(Int) | <10> | {5, 6, 9, 10, 11, 12, 13, 14("A0"), 15("A1"), 16("A2"), 17("A3"), 18("A4"), 19("A5")} | Which pin should be used for chip select |
SPI_a in | Set(Int) | <10> | {5, 6, 9, 10, 11, 12, 13, 14("A0"), 15("A1"), 16("A2"), 17("A3"), 18("A4"), 19("A5")} | Which pin should be used for Software Serial a |
SPI_b in | Set(Int) | <11> | {5, 6, 9, 10, 11, 12, 13, 14("A0"), 15("A1"), 16("A2"), 17("A3"), 18("A4"), 19("A5")} | Which pin should be used for Software Serial b |
SPI_c in | Set(Int) | <12> | {5, 6, 9, 10, 11, 12, 13, 14("A0"), 15("A1"), 16("A2"), 17("A3"), 18("A4"), 19("A5")} | Which pin should be used for Software Serial c |
SPI_d in | Set(Int) | <13> | {5, 6, 9, 10, 11, 12, 13, 14("A0"), 15("A1"), 16("A2"), 17("A3"), 18("A4"), 19("A5")} | Which pin should be used for Software Serial d |
Loom_ MAX31856:: Loom_MAX31856(LoomManager* manager,
JsonArrayConst p)
Constructor that takes Json Array, extracts args and delegates to regular constructor.
Parameters | |
---|---|
manager | |
p in | The array of constuctor args to expand |
void Loom_ MAX31856:: package(JsonObject json) override
Package a modules measurements or state.
Parameters | |
---|---|
json out | Object to put data into |
void Loom_ MAX31856:: print_measurements() const override
Print the last set of measurements taken.
Does not package the data.