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.

398 lines
15 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. // -----------------------------------------------------------------------------
  2. // ADS1X15-based Energy Monitor Sensor over I2C
  3. // Copyright (C) 2017 by Xose Pérez <xose dot perez at gmail dot com>
  4. // -----------------------------------------------------------------------------
  5. #if SENSOR_SUPPORT && EMON_ADS1X15_SUPPORT
  6. #pragma once
  7. #include "Arduino.h"
  8. #include "EmonSensor.h"
  9. #if I2C_USE_BRZO
  10. #include <brzo_i2c.h>
  11. #else
  12. #include <Wire.h>
  13. #endif
  14. #define ADS1X15_CHANNELS (4)
  15. #define ADS1X15_CHIP_ADS1015 (0)
  16. #define ADS1X15_CHIP_ADS1115 (1)
  17. #define ADS1X15_RESOLUTION (16)
  18. #define ADS1015_CONVERSIONDELAY (1)
  19. #define ADS1115_CONVERSIONDELAY (8)
  20. #define ADS1015_BIT_SHIFT (4)
  21. #define ADS1115_BIT_SHIFT (0)
  22. #define ADS1X15_REG_POINTER_MASK (0x03)
  23. #define ADS1X15_REG_POINTER_CONVERT (0x00)
  24. #define ADS1X15_REG_POINTER_CONFIG (0x01)
  25. #define ADS1X15_REG_POINTER_LOWTHRESH (0x02)
  26. #define ADS1X15_REG_POINTER_HITHRESH (0x03)
  27. #define ADS1X15_REG_CONFIG_OS_MASK (0x8000)
  28. #define ADS1X15_REG_CONFIG_OS_SINGLE (0x8000) // Write: Set to start a single-conversion
  29. #define ADS1X15_REG_CONFIG_OS_BUSY (0x0000) // Read: Bit = 0 when conversion is in progress
  30. #define ADS1X15_REG_CONFIG_OS_NOTBUSY (0x8000) // Read: Bit = 1 when device is not performing a conversion
  31. #define ADS1X15_REG_CONFIG_MUX_MASK (0x7000)
  32. #define ADS1X15_REG_CONFIG_MUX_DIFF_0_1 (0x0000) // Differential P = AIN0, N = AIN1 (default)
  33. #define ADS1X15_REG_CONFIG_MUX_DIFF_0_3 (0x1000) // Differential P = AIN0, N = AIN3
  34. #define ADS1X15_REG_CONFIG_MUX_DIFF_1_3 (0x2000) // Differential P = AIN1, N = AIN3
  35. #define ADS1X15_REG_CONFIG_MUX_DIFF_2_3 (0x3000) // Differential P = AIN2, N = AIN3
  36. #define ADS1X15_REG_CONFIG_MUX_SINGLE_0 (0x4000) // Single-ended AIN0
  37. #define ADS1X15_REG_CONFIG_MUX_SINGLE_1 (0x5000) // Single-ended AIN1
  38. #define ADS1X15_REG_CONFIG_MUX_SINGLE_2 (0x6000) // Single-ended AIN2
  39. #define ADS1X15_REG_CONFIG_MUX_SINGLE_3 (0x7000) // Single-ended AIN3
  40. #define ADS1X15_REG_CONFIG_PGA_MASK (0x0E00)
  41. #define ADS1X15_REG_CONFIG_PGA_6_144V (0x0000) // +/-6.144V range = Gain 2/3
  42. #define ADS1X15_REG_CONFIG_PGA_4_096V (0x0200) // +/-4.096V range = Gain 1
  43. #define ADS1X15_REG_CONFIG_PGA_2_048V (0x0400) // +/-2.048V range = Gain 2 (default)
  44. #define ADS1X15_REG_CONFIG_PGA_1_024V (0x0600) // +/-1.024V range = Gain 4
  45. #define ADS1X15_REG_CONFIG_PGA_0_512V (0x0800) // +/-0.512V range = Gain 8
  46. #define ADS1X15_REG_CONFIG_PGA_0_256V (0x0A00) // +/-0.256V range = Gain 16
  47. #define ADS1X15_REG_CONFIG_MODE_MASK (0x0100)
  48. #define ADS1X15_REG_CONFIG_MODE_CONTIN (0x0000) // Continuous conversion mode
  49. #define ADS1X15_REG_CONFIG_MODE_SINGLE (0x0100) // Power-down single-shot mode (default)
  50. #define ADS1X15_REG_CONFIG_DR_MASK (0x00E0)
  51. #define ADS1015_REG_CONFIG_DR_128SPS (0x0000) // 128 samples per second
  52. #define ADS1015_REG_CONFIG_DR_250SPS (0x0020) // 250 samples per second
  53. #define ADS1015_REG_CONFIG_DR_490SPS (0x0040) // 490 samples per second
  54. #define ADS1015_REG_CONFIG_DR_920SPS (0x0060) // 920 samples per second
  55. #define ADS1015_REG_CONFIG_DR_1600SPS (0x0080) // 1600 samples per second (default)
  56. #define ADS1015_REG_CONFIG_DR_2400SPS (0x00A0) // 2400 samples per second
  57. #define ADS1015_REG_CONFIG_DR_3300SPS (0x00C0) // 3300 samples per second
  58. #define ADS1115_REG_CONFIG_DR_8SPS (0x0000) // 8 samples per second
  59. #define ADS1115_REG_CONFIG_DR_16SPS (0x0020) // 16 samples per second
  60. #define ADS1115_REG_CONFIG_DR_32SPS (0x0040) // 32 samples per second
  61. #define ADS1115_REG_CONFIG_DR_64SPS (0x0060) // 64 samples per second
  62. #define ADS1115_REG_CONFIG_DR_128SPS (0x0080) // 128 samples per second (default)
  63. #define ADS1115_REG_CONFIG_DR_250SPS (0x00A0) // 250 samples per second
  64. #define ADS1115_REG_CONFIG_DR_475SPS (0x00C0) // 475 samples per second
  65. #define ADS1115_REG_CONFIG_DR_860SPS (0x00E0) // 860 samples per second
  66. #define ADS1X15_REG_CONFIG_CMODE_MASK (0x0010)
  67. #define ADS1X15_REG_CONFIG_CMODE_TRAD (0x0000) // Traditional comparator with hysteresis (default)
  68. #define ADS1X15_REG_CONFIG_CMODE_WINDOW (0x0010) // Window comparator
  69. #define ADS1X15_REG_CONFIG_CPOL_MASK (0x0008)
  70. #define ADS1X15_REG_CONFIG_CPOL_ACTVLOW (0x0000) // ALERT/RDY pin is low when active (default)
  71. #define ADS1X15_REG_CONFIG_CPOL_ACTVHI (0x0008) // ALERT/RDY pin is high when active
  72. #define ADS1X15_REG_CONFIG_CLAT_MASK (0x0004) // Determines if ALERT/RDY pin latches once asserted
  73. #define ADS1X15_REG_CONFIG_CLAT_NONLAT (0x0000) // Non-latching comparator (default)
  74. #define ADS1X15_REG_CONFIG_CLAT_LATCH (0x0004) // Latching comparator
  75. #define ADS1X15_REG_CONFIG_CQUE_MASK (0x0003)
  76. #define ADS1X15_REG_CONFIG_CQUE_1CONV (0x0000) // Assert ALERT/RDY after one conversions
  77. #define ADS1X15_REG_CONFIG_CQUE_2CONV (0x0001) // Assert ALERT/RDY after two conversions
  78. #define ADS1X15_REG_CONFIG_CQUE_4CONV (0x0002) // Assert ALERT/RDY after four conversions
  79. #define ADS1X15_REG_CONFIG_CQUE_NONE (0x0003) // Disable the comparator and put ALERT/RDY in high state (default)
  80. class EmonADS1X15Sensor : public EmonSensor {
  81. public:
  82. // ---------------------------------------------------------------------
  83. // Public
  84. // ---------------------------------------------------------------------
  85. EmonADS1X15Sensor(): EmonSensor() {
  86. _channels = ADS1X15_CHANNELS;
  87. _sensor_id = SENSOR_EMON_ADS1X15_ID;
  88. init();
  89. }
  90. // ---------------------------------------------------------------------
  91. void setType(unsigned char type) {
  92. if (_type == type) return;
  93. _type = type;
  94. _dirty = true;
  95. }
  96. void setMask(unsigned char mask) {
  97. if (_mask == mask) return;
  98. _mask = mask;
  99. _dirty = true;
  100. }
  101. void setGain(unsigned int gain) {
  102. if (_gain == gain) return;
  103. _gain = gain;
  104. _dirty = true;
  105. }
  106. // ---------------------------------------------------------------------
  107. unsigned char getType() {
  108. return _type;
  109. }
  110. unsigned char getMask() {
  111. return _mask;
  112. }
  113. unsigned char getGain() {
  114. return _gain;
  115. }
  116. // ---------------------------------------------------------------------
  117. // Sensor API
  118. // ---------------------------------------------------------------------
  119. // Initialization method, must be idempotent
  120. void begin() {
  121. if (!_dirty) return;
  122. _dirty = false;
  123. // Discover
  124. unsigned char addresses[] = {0x48, 0x49, 0x4A, 0x4B};
  125. _address = _begin_i2c(_address, sizeof(addresses), addresses);
  126. if (_address == 0) return;
  127. // Calculate ports
  128. _ports = 0;
  129. unsigned char mask = _mask;
  130. while (mask) {
  131. if (mask & 0x01) ++_ports;
  132. mask = mask >> 1;
  133. }
  134. _count = _ports * _magnitudes;
  135. // Bit depth
  136. _resolution = ADS1X15_RESOLUTION;
  137. // Reference based on gain
  138. if (_gain == ADS1X15_REG_CONFIG_PGA_6_144V) _reference = 12.288;
  139. if (_gain == ADS1X15_REG_CONFIG_PGA_4_096V) _reference = 8.192;
  140. if (_gain == ADS1X15_REG_CONFIG_PGA_2_048V) _reference = 4.096;
  141. if (_gain == ADS1X15_REG_CONFIG_PGA_1_024V) _reference = 2.048;
  142. if (_gain == ADS1X15_REG_CONFIG_PGA_0_512V) _reference = 1.024;
  143. if (_gain == ADS1X15_REG_CONFIG_PGA_0_256V) _reference = 0.512;
  144. // Call the parent class method
  145. EmonSensor::begin();
  146. // warmup all channels
  147. warmup();
  148. }
  149. // Descriptive name of the sensor
  150. String description() {
  151. char buffer[30];
  152. snprintf(buffer, sizeof(buffer), "EMON @ ADS1%d15 @ I2C (0x%02X)", _type == ADS1X15_CHIP_ADS1015 ? 0 : 1, _address);
  153. return String(buffer);
  154. }
  155. // Descriptive name of the slot # index
  156. String slot(unsigned char index) {
  157. char buffer[35];
  158. unsigned char channel = getChannel(index % _ports);
  159. snprintf(buffer, sizeof(buffer), "EMON @ ADS1%d15 (A%d) @ I2C (0x%02X)", _type == ADS1X15_CHIP_ADS1015 ? 0 : 1, channel, _address);
  160. return String(buffer);
  161. }
  162. // Type for slot # index
  163. unsigned char type(unsigned char index) {
  164. if (index < _count) {
  165. _error = SENSOR_ERROR_OK;
  166. unsigned char magnitude = index / _ports;
  167. unsigned char i=0;
  168. #if EMON_REPORT_CURRENT
  169. if (magnitude == i++) return MAGNITUDE_CURRENT;
  170. #endif
  171. #if EMON_REPORT_POWER
  172. if (magnitude == i++) return MAGNITUDE_POWER_APPARENT;
  173. #endif
  174. #if EMON_REPORT_ENERGY
  175. if (magnitude == i) return MAGNITUDE_ENERGY;
  176. #endif
  177. }
  178. _error = SENSOR_ERROR_OUT_OF_RANGE;
  179. return MAGNITUDE_NONE;
  180. }
  181. void pre() {
  182. static unsigned long last = 0;
  183. for (unsigned char port=0; port<_ports; port++) {
  184. unsigned char channel = getChannel(port);
  185. _current[port] = getCurrent(channel);
  186. #if EMON_REPORT_ENERGY
  187. _energy[port] += (_current[port] * _voltage * (millis() - last) / 1000);
  188. #endif
  189. }
  190. last = millis();
  191. }
  192. // Current value for slot # index
  193. double value(unsigned char index) {
  194. if (index < _count) {
  195. _error = SENSOR_ERROR_OK;
  196. unsigned char port = index % _ports;
  197. unsigned char magnitude = index / _ports;
  198. unsigned char i=0;
  199. #if EMON_REPORT_CURRENT
  200. if (magnitude == i++) return _current[port];
  201. #endif
  202. #if EMON_REPORT_POWER
  203. if (magnitude == i++) return _current[port] * _voltage;
  204. #endif
  205. #if EMON_REPORT_ENERGY
  206. if (magnitude == i) return _energy[port];
  207. #endif
  208. }
  209. _error = SENSOR_ERROR_OUT_OF_RANGE;
  210. return 0;
  211. }
  212. protected:
  213. //----------------------------------------------------------------------
  214. // Protected
  215. //----------------------------------------------------------------------
  216. unsigned char getChannel(unsigned char port) {
  217. unsigned char count = 0;
  218. unsigned char bit = 1;
  219. for (unsigned char channel=0; channel<ADS1X15_CHANNELS; channel++) {
  220. if ((_mask & bit) == bit) {
  221. if (count == port) return channel;
  222. ++count;
  223. }
  224. bit <<= 1;
  225. }
  226. return 0;
  227. }
  228. void warmup() {
  229. for (unsigned char port=0; port<_ports; port++) {
  230. unsigned char channel = getChannel(port);
  231. _pivot[channel] = _adc_counts >> 1;
  232. getCurrent(channel);
  233. }
  234. }
  235. //----------------------------------------------------------------------
  236. // I2C
  237. //----------------------------------------------------------------------
  238. void setConfigRegistry(unsigned char channel, bool continuous, bool start) {
  239. // Start with default values
  240. uint16_t config = 0;
  241. config |= _gain; // Set PGA/voltage range (0x0200)
  242. config |= ADS1X15_REG_CONFIG_DR_MASK; // Always at max speed (0x00E0)
  243. //config |= ADS1X15_REG_CONFIG_CMODE_TRAD; // Traditional comparator (default val) (0x0000)
  244. //config |= ADS1X15_REG_CONFIG_CPOL_ACTVLOW; // Alert/Rdy active low (default val) (0x0000)
  245. //config |= ADS1X15_REG_CONFIG_CLAT_NONLAT; // Non-latching (default val) (0x0000)
  246. config |= ADS1X15_REG_CONFIG_CQUE_NONE; // Disable the comparator (default val) (0x0003)
  247. if (start) {
  248. config |= ADS1X15_REG_CONFIG_OS_SINGLE; // Start a single-conversion (0x8000)
  249. }
  250. if (continuous) {
  251. //config |= ADS1X15_REG_CONFIG_MODE_CONTIN; // Continuous mode (default) (0x0000)
  252. } else {
  253. config |= ADS1X15_REG_CONFIG_MODE_SINGLE; // Single-shot mode (0x0100)
  254. }
  255. config |= ((channel + 4) << 12); // Set single-ended input channel (0x4000 - 0x7000)
  256. #if SENSOR_DEBUG
  257. //Serial.printf("[EMON] ADS1X115 Config Registry: %04X\n", config);
  258. #endif
  259. // Write config register to the ADC
  260. #if I2C_USE_BRZO
  261. uint8_t buffer[3];
  262. buffer[0] = ADS1X15_REG_POINTER_CONFIG;
  263. buffer[1] = config >> 8;
  264. buffer[2] = config & 0xFF;
  265. brzo_i2c_start_transaction(_address, I2C_SCL_FREQUENCY);
  266. brzo_i2c_write(buffer, 3, false);
  267. brzo_i2c_end_transaction();
  268. #else
  269. Wire.beginTransmission(_address);
  270. Wire.write((uint8_t) ADS1X15_REG_POINTER_CONFIG);
  271. Wire.write((uint8_t) (config >> 8));
  272. Wire.write((uint8_t) (config & 0xFF));
  273. Wire.endTransmission();
  274. #endif
  275. }
  276. double getCurrent(unsigned char channel) {
  277. // Force stop by setting single mode and back to continuous
  278. static unsigned char previous = 9;
  279. if (previous != channel) {
  280. setConfigRegistry(channel, true, false);
  281. setConfigRegistry(channel, false, false);
  282. setConfigRegistry(channel, false, true);
  283. delay(10);
  284. readADC(channel);
  285. previous = channel;
  286. }
  287. setConfigRegistry(channel, true, true);
  288. return read(channel);
  289. }
  290. unsigned int readADC(unsigned char channel) {
  291. (void) channel;
  292. unsigned int value = 0;
  293. #if I2C_USE_BRZO
  294. uint8_t buffer[3];
  295. buffer[0] = ADS1X15_REG_POINTER_CONVERT;
  296. brzo_i2c_start_transaction(_address, I2C_SCL_FREQUENCY);
  297. brzo_i2c_write(buffer, 1, false);
  298. brzo_i2c_read(buffer, 2, false);
  299. brzo_i2c_end_transaction();
  300. value |= buffer[0] << 8;
  301. value |= buffer[1];
  302. #else
  303. Wire.beginTransmission(_address);
  304. Wire.write(ADS1X15_REG_POINTER_CONVERT);
  305. Wire.endTransmission();
  306. Wire.requestFrom(_address, (unsigned char) 2);
  307. value |= Wire.read() << 8;
  308. value |= Wire.read();
  309. #endif
  310. if (_type = ADS1X15_CHIP_ADS1015) value >>= ADS1015_BIT_SHIFT;
  311. delayMicroseconds(500);
  312. return value;
  313. }
  314. unsigned char _type = ADS1X15_CHIP_ADS1115;
  315. unsigned char _mask = 0x0F;
  316. unsigned int _gain = ADS1X15_REG_CONFIG_PGA_4_096V;
  317. unsigned char _ports;
  318. };
  319. #endif // SENSOR_SUPPORT && EMON_ADS1X15_SUPPORT