A collection of Analog Devices drivers for the mbed platform
For additional information check out the mbed page of the Analog Devices wiki: https://wiki.analog.com/resources/tools-software/mbed-drivers-all
Diff: libraries/Thermocouple/Thermocouple_core_h.txt
- Revision:
- 33:c3ec596a29c2
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/libraries/Thermocouple/Thermocouple_core_h.txt Mon Nov 07 16:27:12 2016 +0200
@@ -0,0 +1,40 @@
+#include "mbed.h"
+#ifndef _THERMOCOUPLE_H_
+#define _THERMOCOUPLE_H_
+
+#define DEFINE_LOOKUP_TABLES
+#ifdef DEFINE_LOOKUP_TABLES
+#define TYPE_B_LUT
+#define TYPE_E_LUT
+#define TYPE_J_LUT
+#define TYPE_K_LUT
+#define TYPE_N_LUT
+#define TYPE_R_LUT
+#define TYPE_S_LUT
+#define TYPE_T_LUT
+#endif
+
+class Thermocouple
+{
+private:
+
+public:
+ typedef struct
+ {
+ float min_voltage_range;
+ float max_voltage_range;
+ float coef[16];
+ float power[16];
+ int n;
+ }thermocouple_poly_subrange;
+ Thermocouple();
+ virtual ~Thermocouple();
+ static float convert(float voltage, const thermocouple_poly_subrange range[], const int n);
+ static float lookup(const int32_t *lut, float voltage,uint16_t size,int16_t offset);
+ virtual float convert(float voltage) = 0;
+ virtual float convert_inv(float temp) = 0;
+ virtual float lookup(float voltage) = 0;
+ virtual float lookup_inv(float temp) = 0;
+
+};
+
CN0357 - Toxic gas measurement
CN0216 - Weight Scale