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.

208 lines
5.9 KiB

6 years ago
  1. // -----------------------------------------------------------------------------
  2. // MHZ19 CO2 sensor
  3. // Based on: https://github.com/nara256/mhz19_uart
  4. // http://www.winsen-sensor.com/d/files/infrared-gas-sensor/mh-z19b-co2-ver1_0.pdf
  5. // Uses SoftwareSerial library
  6. // Copyright (C) 2017 by Xose Pérez <xose dot perez at gmail dot com>
  7. // -----------------------------------------------------------------------------
  8. #if SENSOR_SUPPORT && MHZ19_SUPPORT
  9. #pragma once
  10. #include "Arduino.h"
  11. #include "BaseSensor.h"
  12. #include <SoftwareSerial.h>
  13. #define MHZ19_REQUEST_LEN 8
  14. #define MHZ19_RESPONSE_LEN 9
  15. #define MHZ19_TIMEOUT 1000
  16. #define MHZ19_GETPPM 0x8600
  17. #define MHZ19_ZEROCALIB 0x8700
  18. #define MHZ19_SPANCALIB 0x8800
  19. #define MHZ19_AUTOCALIB_ON 0x79A0
  20. #define MHZ19_AUTOCALIB_OFF 0x7900
  21. class MHZ19Sensor : public BaseSensor {
  22. public:
  23. // ---------------------------------------------------------------------
  24. // Public
  25. // ---------------------------------------------------------------------
  26. MHZ19Sensor(): BaseSensor() {
  27. _count = 1;
  28. _sensor_id = SENSOR_MHZ19_ID;
  29. }
  30. ~MHZ19Sensor() {
  31. if (_serial) delete _serial;
  32. }
  33. // ---------------------------------------------------------------------
  34. void setRX(unsigned char pin_rx) {
  35. if (_pin_rx == pin_rx) return;
  36. _pin_rx = pin_rx;
  37. _dirty = true;
  38. }
  39. void setTX(unsigned char pin_tx) {
  40. if (_pin_tx == pin_tx) return;
  41. _pin_tx = pin_tx;
  42. _dirty = true;
  43. }
  44. // ---------------------------------------------------------------------
  45. unsigned char getRX() {
  46. return _pin_rx;
  47. }
  48. unsigned char getTX() {
  49. return _pin_tx;
  50. }
  51. // ---------------------------------------------------------------------
  52. // Sensor API
  53. // ---------------------------------------------------------------------
  54. // Initialization method, must be idempotent
  55. void begin() {
  56. if (!_dirty) return;
  57. _dirty = false;
  58. if (_serial) delete _serial;
  59. _serial = new SoftwareSerial(_pin_rx, _pin_tx, false, 256);
  60. _serial->begin(9600);
  61. calibrateAuto(false);
  62. }
  63. // Descriptive name of the sensor
  64. String description() {
  65. char buffer[28];
  66. snprintf(buffer, sizeof(buffer), "MHZ19 @ SwSerial(%i,%i)", _pin_rx, _pin_tx);
  67. return String(buffer);
  68. }
  69. // Type for slot # index
  70. unsigned char type(unsigned char index) {
  71. _error = SENSOR_ERROR_OK;
  72. if (index == 0) return MAGNITUDE_CO2;
  73. _error = SENSOR_ERROR_OUT_OF_RANGE;
  74. return MAGNITUDE_NONE;
  75. }
  76. void pre() {
  77. _read();
  78. }
  79. // Current value for slot # index
  80. double value(unsigned char index) {
  81. _error = SENSOR_ERROR_OK;
  82. if (index == 0) return _co2;
  83. _error = SENSOR_ERROR_OUT_OF_RANGE;
  84. return 0;
  85. }
  86. void calibrateAuto(boolean state){
  87. _write(state ? MHZ19_AUTOCALIB_ON : MHZ19_AUTOCALIB_OFF);
  88. }
  89. void calibrateZero() {
  90. _write(MHZ19_ZEROCALIB);
  91. }
  92. void calibrateSpan(unsigned int ppm) {
  93. if( ppm < 1000 ) return;
  94. unsigned char buffer[MHZ19_REQUEST_LEN] = {0};
  95. buffer[0] = 0xFF;
  96. buffer[1] = 0x01;
  97. buffer[2] = MHZ19_SPANCALIB >> 8;
  98. buffer[3] = ppm >> 8;
  99. buffer[4] = ppm & 0xFF;
  100. _write(buffer);
  101. }
  102. protected:
  103. // ---------------------------------------------------------------------
  104. // Protected
  105. // ---------------------------------------------------------------------
  106. void _write(unsigned char * command) {
  107. _serial->write(command, MHZ19_REQUEST_LEN);
  108. _serial->write(_checksum(command));
  109. _serial->flush();
  110. }
  111. void _write(unsigned int command, unsigned char * response) {
  112. unsigned char buffer[MHZ19_REQUEST_LEN] = {0};
  113. buffer[0] = 0xFF;
  114. buffer[1] = 0x01;
  115. buffer[2] = command >> 8;
  116. buffer[3] = command & 0xFF;
  117. _write(buffer);
  118. if (response != NULL) {
  119. unsigned long start = millis();
  120. while (_serial->available() == 0) {
  121. if (millis() - start > MHZ19_TIMEOUT) {
  122. _error = SENSOR_ERROR_TIMEOUT;
  123. return;
  124. }
  125. yield();
  126. }
  127. _serial->readBytes(response, MHZ19_RESPONSE_LEN);
  128. }
  129. }
  130. void _write(unsigned int command) {
  131. _write(command, NULL);
  132. }
  133. void _read() {
  134. unsigned char buffer[MHZ19_RESPONSE_LEN] = {0};
  135. _write(MHZ19_GETPPM, buffer);
  136. // Check response
  137. if ((buffer[0] == 0xFF)
  138. && (buffer[1] == 0x86)
  139. && (_checksum(buffer) == buffer[MHZ19_RESPONSE_LEN-1])) {
  140. unsigned int value = buffer[2] * 256 + buffer[3];
  141. if (0 <= value && value <= 5000) {
  142. _co2 = value;
  143. _error = SENSOR_ERROR_OK;
  144. } else {
  145. _error = SENSOR_ERROR_OUT_OF_RANGE;
  146. }
  147. }
  148. }
  149. uint8_t _checksum(uint8_t * command) {
  150. uint8_t sum = 0x00;
  151. for (unsigned char i = 1; i < MHZ19_REQUEST_LEN-1; i++) {
  152. sum += command[i];
  153. }
  154. sum = 0xFF - sum + 0x01;
  155. return sum;
  156. }
  157. double _co2 = 0;
  158. unsigned int _pin_rx;
  159. unsigned int _pin_tx;
  160. SoftwareSerial * _serial = NULL;
  161. };
  162. #endif // SENSOR_SUPPORT && MHZ19_SUPPORT