Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

414 lines
15 KiB

6 years ago
  1. // -----------------------------------------------------------------------------
  2. // BME280/BMP280 Sensor over I2C
  3. // Copyright (C) 2017-2019 by Xose Pérez <xose dot perez at gmail dot com>
  4. // -----------------------------------------------------------------------------
  5. #if SENSOR_SUPPORT && BMX280_SUPPORT
  6. #pragma once
  7. #include "I2CSensor.h"
  8. #include "../utils.h"
  9. #define BMX280_CHIP_BMP280 0x58
  10. #define BMX280_CHIP_BME280 0x60
  11. #define BMX280_REGISTER_DIG_T1 0x88
  12. #define BMX280_REGISTER_DIG_T2 0x8A
  13. #define BMX280_REGISTER_DIG_T3 0x8C
  14. #define BMX280_REGISTER_DIG_P1 0x8E
  15. #define BMX280_REGISTER_DIG_P2 0x90
  16. #define BMX280_REGISTER_DIG_P3 0x92
  17. #define BMX280_REGISTER_DIG_P4 0x94
  18. #define BMX280_REGISTER_DIG_P5 0x96
  19. #define BMX280_REGISTER_DIG_P6 0x98
  20. #define BMX280_REGISTER_DIG_P7 0x9A
  21. #define BMX280_REGISTER_DIG_P8 0x9C
  22. #define BMX280_REGISTER_DIG_P9 0x9E
  23. #define BMX280_REGISTER_DIG_H1 0xA1
  24. #define BMX280_REGISTER_DIG_H2 0xE1
  25. #define BMX280_REGISTER_DIG_H3 0xE3
  26. #define BMX280_REGISTER_DIG_H4 0xE4
  27. #define BMX280_REGISTER_DIG_H5 0xE5
  28. #define BMX280_REGISTER_DIG_H6 0xE7
  29. #define BMX280_REGISTER_CHIPID 0xD0
  30. #define BMX280_REGISTER_VERSION 0xD1
  31. #define BMX280_REGISTER_SOFTRESET 0xE0
  32. #define BMX280_REGISTER_CAL26 0xE1
  33. #define BMX280_REGISTER_CONTROLHUMID 0xF2
  34. #define BMX280_REGISTER_CONTROL 0xF4
  35. #define BMX280_REGISTER_CONFIG 0xF5
  36. #define BMX280_REGISTER_PRESSUREDATA 0xF7
  37. #define BMX280_REGISTER_TEMPDATA 0xFA
  38. #define BMX280_REGISTER_HUMIDDATA 0xFD
  39. class BMX280Sensor : public I2CSensor<> {
  40. public:
  41. static unsigned char addresses[2];
  42. // ---------------------------------------------------------------------
  43. // Public
  44. // ---------------------------------------------------------------------
  45. BMX280Sensor() {
  46. _sensor_id = SENSOR_BMX280_ID;
  47. }
  48. // ---------------------------------------------------------------------
  49. // Sensor API
  50. // ---------------------------------------------------------------------
  51. // Initialization method, must be idempotent
  52. void begin() {
  53. if (!_dirty) return;
  54. _init();
  55. _dirty = !_ready;
  56. }
  57. // Descriptive name of the sensor
  58. String description() {
  59. char buffer[20];
  60. snprintf(buffer, sizeof(buffer), "%s @ I2C (0x%02X)", _chip == BMX280_CHIP_BME280 ? "BME280" : "BMP280", _address);
  61. return String(buffer);
  62. }
  63. // Type for slot # index
  64. unsigned char type(unsigned char index) {
  65. unsigned char i = 0;
  66. #if BMX280_TEMPERATURE > 0
  67. if (index == i++) return MAGNITUDE_TEMPERATURE;
  68. #endif
  69. #if BMX280_HUMIDITY > 0
  70. if (_chip == BMX280_CHIP_BME280) {
  71. if (index == i++) return MAGNITUDE_HUMIDITY;
  72. }
  73. #endif
  74. #if BMX280_PRESSURE > 0
  75. if (index == i) return MAGNITUDE_PRESSURE;
  76. #endif
  77. return MAGNITUDE_NONE;
  78. }
  79. // Number of decimals for a magnitude (or -1 for default)
  80. // These numbers of decimals correspond to maximum sensor resolution settings
  81. signed char decimals(sensor::Unit unit) {
  82. switch (unit) {
  83. case sensor::Unit::Celcius:
  84. return 3;
  85. case sensor::Unit::Hectopascal:
  86. return 4;
  87. case sensor::Unit::Percentage:
  88. return 2;
  89. default:
  90. return -1;
  91. }
  92. }
  93. // Pre-read hook (usually to populate registers with up-to-date data)
  94. virtual void pre() {
  95. if (_run_init) {
  96. i2cClearBus();
  97. _init();
  98. }
  99. if (_chip == 0) {
  100. _error = SENSOR_ERROR_UNKNOWN_ID;
  101. return;
  102. }
  103. _error = SENSOR_ERROR_OK;
  104. #if BMX280_MODE == 1
  105. _forceRead();
  106. #endif
  107. _error = _read();
  108. if (_error != SENSOR_ERROR_OK) {
  109. _run_init = true;
  110. }
  111. }
  112. // Current value for slot # index
  113. double value(unsigned char index) {
  114. unsigned char i = 0;
  115. #if BMX280_TEMPERATURE > 0
  116. if (index == i++) return _temperature;
  117. #endif
  118. #if BMX280_HUMIDITY > 0
  119. if (_chip == BMX280_CHIP_BME280) {
  120. if (index == i++) return _humidity;
  121. }
  122. #endif
  123. #if BMX280_PRESSURE > 0
  124. if (index == i) return _pressure / 100;
  125. #endif
  126. return 0;
  127. }
  128. protected:
  129. void _init() {
  130. // Make sure sensor had enough time to turn on. BMX280 requires 2ms to start up
  131. nice_delay(10);
  132. // No chip ID by default
  133. _chip = 0;
  134. // I2C auto-discover
  135. _address = _begin_i2c(_address, sizeof(BMX280Sensor::addresses), BMX280Sensor::addresses);
  136. if (_address == 0) return;
  137. // Check sensor correctly initialized
  138. _chip = i2c_read_uint8(_address, BMX280_REGISTER_CHIPID);
  139. if ((_chip != BMX280_CHIP_BME280) && (_chip != BMX280_CHIP_BMP280)) {
  140. _chip = 0;
  141. i2cReleaseLock(_address);
  142. _previous_address = 0;
  143. _error = SENSOR_ERROR_UNKNOWN_ID;
  144. // Setting _address to 0 forces auto-discover
  145. // This might be necessary at this stage if there is a
  146. // different sensor in the hardcoded address
  147. _address = 0;
  148. return;
  149. }
  150. _count = 0;
  151. #if BMX280_TEMPERATURE > 0
  152. ++_count;
  153. #endif
  154. #if BMX280_HUMIDITY > 0
  155. if (_chip == BMX280_CHIP_BME280) ++_count;
  156. #endif
  157. #if BMX280_PRESSURE > 0
  158. ++_count;
  159. #endif
  160. _readCoefficients();
  161. unsigned char data = 0;
  162. i2c_write_uint8(_address, BMX280_REGISTER_CONTROL, data);
  163. data = (BMX280_STANDBY << 0x5) & 0xE0;
  164. data |= (BMX280_FILTER << 0x02) & 0x1C;
  165. i2c_write_uint8(_address, BMX280_REGISTER_CONFIG, data);
  166. data = (BMX280_HUMIDITY) & 0x07;
  167. i2c_write_uint8(_address, BMX280_REGISTER_CONTROLHUMID, data);
  168. data = (BMX280_TEMPERATURE << 5) & 0xE0;
  169. data |= (BMX280_PRESSURE << 2) & 0x1C;
  170. data |= (BMX280_MODE) & 0x03;
  171. i2c_write_uint8(_address, BMX280_REGISTER_CONTROL, data);
  172. _measurement_delay = _measurementTime();
  173. _run_init = false;
  174. _ready = true;
  175. }
  176. void _readCoefficients() {
  177. _bmx280_calib.dig_T1 = i2c_read_uint16_le(_address, BMX280_REGISTER_DIG_T1);
  178. _bmx280_calib.dig_T2 = i2c_read_int16_le(_address, BMX280_REGISTER_DIG_T2);
  179. _bmx280_calib.dig_T3 = i2c_read_int16_le(_address, BMX280_REGISTER_DIG_T3);
  180. _bmx280_calib.dig_P1 = i2c_read_uint16_le(_address, BMX280_REGISTER_DIG_P1);
  181. _bmx280_calib.dig_P2 = i2c_read_int16_le(_address, BMX280_REGISTER_DIG_P2);
  182. _bmx280_calib.dig_P3 = i2c_read_int16_le(_address, BMX280_REGISTER_DIG_P3);
  183. _bmx280_calib.dig_P4 = i2c_read_int16_le(_address, BMX280_REGISTER_DIG_P4);
  184. _bmx280_calib.dig_P5 = i2c_read_int16_le(_address, BMX280_REGISTER_DIG_P5);
  185. _bmx280_calib.dig_P6 = i2c_read_int16_le(_address, BMX280_REGISTER_DIG_P6);
  186. _bmx280_calib.dig_P7 = i2c_read_int16_le(_address, BMX280_REGISTER_DIG_P7);
  187. _bmx280_calib.dig_P8 = i2c_read_int16_le(_address, BMX280_REGISTER_DIG_P8);
  188. _bmx280_calib.dig_P9 = i2c_read_int16_le(_address, BMX280_REGISTER_DIG_P9);
  189. _bmx280_calib.dig_H1 = i2c_read_uint8(_address, BMX280_REGISTER_DIG_H1);
  190. _bmx280_calib.dig_H2 = i2c_read_int16_le(_address, BMX280_REGISTER_DIG_H2);
  191. _bmx280_calib.dig_H3 = i2c_read_uint8(_address, BMX280_REGISTER_DIG_H3);
  192. _bmx280_calib.dig_H4 = (i2c_read_uint8(_address, BMX280_REGISTER_DIG_H4) << 4) | (i2c_read_uint8(_address, BMX280_REGISTER_DIG_H4+1) & 0xF);
  193. _bmx280_calib.dig_H5 = (i2c_read_uint8(_address, BMX280_REGISTER_DIG_H5+1) << 4) | (i2c_read_uint8(_address, BMX280_REGISTER_DIG_H5) >> 4);
  194. _bmx280_calib.dig_H6 = (int8_t) i2c_read_uint8(_address, BMX280_REGISTER_DIG_H6);
  195. }
  196. unsigned long _measurementTime() {
  197. // Measurement Time (as per BMX280 datasheet section 9.1)
  198. // T_max(ms) = 1.25
  199. // + (2.3 * T_oversampling)
  200. // + (2.3 * P_oversampling + 0.575)
  201. // + (2.4 * H_oversampling + 0.575)
  202. // ~ 9.3ms for current settings
  203. double t = 1.25;
  204. #if BMX280_TEMPERATURE > 0
  205. t += (2.3 * BMX280_TEMPERATURE);
  206. #endif
  207. #if BMX280_HUMIDITY > 0
  208. if (_chip == BMX280_CHIP_BME280) {
  209. t += (2.4 * BMX280_HUMIDITY + 0.575);
  210. }
  211. #endif
  212. #if BMX280_PRESSURE > 0
  213. t += (2.3 * BMX280_PRESSURE + 0.575);
  214. #endif
  215. return round(t + 1); // round up
  216. }
  217. void _forceRead() {
  218. // We set the sensor in "forced mode" to force a reading.
  219. // After the reading the sensor will go back to sleep mode.
  220. uint8_t value = i2c_read_uint8(_address, BMX280_REGISTER_CONTROL);
  221. value = (value & 0xFC) + 0x01;
  222. i2c_write_uint8(_address, BMX280_REGISTER_CONTROL, value);
  223. nice_delay(_measurement_delay);
  224. }
  225. unsigned char _read() {
  226. #if BMX280_TEMPERATURE > 0
  227. int32_t adc_T = i2c_read_uint16(_address, BMX280_REGISTER_TEMPDATA);
  228. if (0xFFFF == adc_T) return SENSOR_ERROR_OUT_OF_RANGE;
  229. adc_T <<= 8;
  230. adc_T |= i2c_read_uint8(_address, BMX280_REGISTER_TEMPDATA+2);
  231. adc_T >>= 4;
  232. int32_t var1t = ((((adc_T>>3) -
  233. ((int32_t)_bmx280_calib.dig_T1 <<1))) *
  234. ((int32_t)_bmx280_calib.dig_T2)) >> 11;
  235. int32_t var2t = (((((adc_T>>4) -
  236. ((int32_t)_bmx280_calib.dig_T1)) *
  237. ((adc_T>>4) - ((int32_t)_bmx280_calib.dig_T1))) >> 12) *
  238. ((int32_t)_bmx280_calib.dig_T3)) >> 14;
  239. int32_t t_fine = var1t + var2t;
  240. double T = (t_fine * 5 + 128) >> 8;
  241. _temperature = T / 100;
  242. #else
  243. int32_t t_fine = 102374; // ~20ºC
  244. #endif
  245. // -----------------------------------------------------------------
  246. #if BMX280_PRESSURE > 0
  247. int64_t var1, var2, p;
  248. int32_t adc_P = i2c_read_uint16(_address, BMX280_REGISTER_PRESSUREDATA);
  249. if (0xFFFF == adc_P) return SENSOR_ERROR_OUT_OF_RANGE;
  250. adc_P <<= 8;
  251. adc_P |= i2c_read_uint8(_address, BMX280_REGISTER_PRESSUREDATA+2);
  252. adc_P >>= 4;
  253. var1 = ((int64_t)t_fine) - 128000;
  254. var2 = var1 * var1 * (int64_t)_bmx280_calib.dig_P6;
  255. var2 = var2 + ((var1*(int64_t)_bmx280_calib.dig_P5)<<17);
  256. var2 = var2 + (((int64_t)_bmx280_calib.dig_P4)<<35);
  257. var1 = ((var1 * var1 * (int64_t)_bmx280_calib.dig_P3)>>8) +
  258. ((var1 * (int64_t)_bmx280_calib.dig_P2)<<12);
  259. var1 = (((((int64_t)1)<<47)+var1))*((int64_t)_bmx280_calib.dig_P1)>>33;
  260. if (var1 == 0) return SENSOR_ERROR_OUT_OF_RANGE; // avoid exception caused by division by zero
  261. p = 1048576 - adc_P;
  262. p = (((p<<31) - var2)*3125) / var1;
  263. var1 = (((int64_t)_bmx280_calib.dig_P9) * (p>>13) * (p>>13)) >> 25;
  264. var2 = (((int64_t)_bmx280_calib.dig_P8) * p) >> 19;
  265. p = ((p + var1 + var2) >> 8) + (((int64_t)_bmx280_calib.dig_P7)<<4);
  266. _pressure = (double) p / 256;
  267. #endif
  268. // -----------------------------------------------------------------
  269. #if BMX280_HUMIDITY > 0
  270. if (_chip == BMX280_CHIP_BME280) {
  271. int32_t adc_H = i2c_read_uint16(_address, BMX280_REGISTER_HUMIDDATA);
  272. if (0xFFFF == adc_H) return SENSOR_ERROR_OUT_OF_RANGE;
  273. int32_t v_x1_u32r;
  274. v_x1_u32r = (t_fine - ((int32_t)76800));
  275. v_x1_u32r = (((((adc_H << 14) - (((int32_t)_bmx280_calib.dig_H4) << 20) -
  276. (((int32_t)_bmx280_calib.dig_H5) * v_x1_u32r)) + ((int32_t)16384)) >> 15) *
  277. (((((((v_x1_u32r * ((int32_t)_bmx280_calib.dig_H6)) >> 10) *
  278. (((v_x1_u32r * ((int32_t)_bmx280_calib.dig_H3)) >> 11) + ((int32_t)32768))) >> 10) +
  279. ((int32_t)2097152)) * ((int32_t)_bmx280_calib.dig_H2) + 8192) >> 14));
  280. v_x1_u32r = (v_x1_u32r - (((((v_x1_u32r >> 15) * (v_x1_u32r >> 15)) >> 7) *
  281. ((int32_t)_bmx280_calib.dig_H1)) >> 4));
  282. v_x1_u32r = (v_x1_u32r < 0) ? 0 : v_x1_u32r;
  283. v_x1_u32r = (v_x1_u32r > 419430400) ? 419430400 : v_x1_u32r;
  284. double h = (v_x1_u32r >> 12);
  285. _humidity = h / 1024.0;
  286. }
  287. #endif
  288. return SENSOR_ERROR_OK;
  289. }
  290. // ---------------------------------------------------------------------
  291. unsigned char _chip;
  292. unsigned long _measurement_delay;
  293. bool _run_init = false;
  294. double _temperature = 0;
  295. double _humidity = 0;
  296. double _pressure = 0;
  297. typedef struct {
  298. uint16_t dig_T1;
  299. int16_t dig_T2;
  300. int16_t dig_T3;
  301. uint16_t dig_P1;
  302. int16_t dig_P2;
  303. int16_t dig_P3;
  304. int16_t dig_P4;
  305. int16_t dig_P5;
  306. int16_t dig_P6;
  307. int16_t dig_P7;
  308. int16_t dig_P8;
  309. int16_t dig_P9;
  310. uint8_t dig_H1;
  311. int16_t dig_H2;
  312. uint8_t dig_H3;
  313. int16_t dig_H4;
  314. int16_t dig_H5;
  315. int8_t dig_H6;
  316. } bmx280_calib_t;
  317. bmx280_calib_t _bmx280_calib;
  318. };
  319. // Static inizializations
  320. unsigned char BMX280Sensor::addresses[2] = {0x76, 0x77};
  321. #endif // SENSOR_SUPPORT && BMX280_SUPPORT