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.

634 lines
18 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. /*
  2. LIGHT MODULE
  3. Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>
  4. */
  5. #if LIGHT_PROVIDER != LIGHT_PROVIDER_NONE
  6. #ifndef LIGHT_PROVIDER_EXPERIMENTAL_RGB_ONLY_HSV_IR
  7. #include <Ticker.h>
  8. #include <ArduinoJson.h>
  9. #include <vector>
  10. Ticker colorTicker;
  11. typedef struct {
  12. unsigned char pin;
  13. bool reverse;
  14. unsigned char value;
  15. unsigned char shadow;
  16. } channel_t;
  17. std::vector<channel_t> _channels;
  18. bool _lightState = false;
  19. unsigned int _brightness = LIGHT_MAX_BRIGHTNESS;
  20. #if LIGHT_PROVIDER == LIGHT_PROVIDER_MY9192
  21. #include <my9291.h>
  22. my9291 * _my9291;
  23. #endif
  24. // Gamma Correction lookup table for gamma=2.8 and 12 bit (4095) full scale
  25. // TODO: move to PROGMEM
  26. const unsigned short gamma_table[LIGHT_MAX_VALUE+1] = {
  27. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1,
  28. 2, 2, 2, 3, 3, 4, 4, 5, 5, 6, 7, 8, 8, 9, 10, 11,
  29. 12, 13, 15, 16, 17, 18, 20, 21, 23, 25, 26, 28, 30, 32, 34, 36,
  30. 38, 40, 43, 45, 48, 50, 53, 56, 59, 62, 65, 68, 71, 75, 78, 82,
  31. 85, 89, 93, 97, 101, 105, 110, 114, 119, 123, 128, 133, 138, 143, 149, 154,
  32. 159, 165, 171, 177, 183, 189, 195, 202, 208, 215, 222, 229, 236, 243, 250, 258,
  33. 266, 273, 281, 290, 298, 306, 315, 324, 332, 341, 351, 360, 369, 379, 389, 399,
  34. 409, 419, 430, 440, 451, 462, 473, 485, 496, 508, 520, 532, 544, 556, 569, 582,
  35. 594, 608, 621, 634, 648, 662, 676, 690, 704, 719, 734, 749, 764, 779, 795, 811,
  36. 827, 843, 859, 876, 893, 910, 927, 944, 962, 980, 998,1016,1034,1053,1072,1091,
  37. 1110,1130,1150,1170,1190,1210,1231,1252,1273,1294,1316,1338,1360,1382,1404,1427,
  38. 1450,1473,1497,1520,1544,1568,1593,1617,1642,1667,1693,1718,1744,1770,1797,1823,
  39. 1850,1877,1905,1932,1960,1988,2017,2045,2074,2103,2133,2162,2192,2223,2253,2284,
  40. 2315,2346,2378,2410,2442,2474,2507,2540,2573,2606,2640,2674,2708,2743,2778,2813,
  41. 2849,2884,2920,2957,2993,3030,3067,3105,3143,3181,3219,3258,3297,3336,3376,3416,
  42. 3456,3496,3537,3578,3619,3661,3703,3745,3788,3831,3874,3918,3962,4006,4050,4095 };
  43. // -----------------------------------------------------------------------------
  44. // UTILS
  45. // -----------------------------------------------------------------------------
  46. void _fromRGB(const char * rgb) {
  47. char * p = (char *) rgb;
  48. if (strlen(p) == 0) return;
  49. // if color begins with a # then assume HEX RGB
  50. if (p[0] == '#') {
  51. if (lightHasColor()) {
  52. ++p;
  53. unsigned long value = strtoul(p, NULL, 16);
  54. // RGBA values are interpreted like RGB + brightness
  55. if (strlen(p) > 7) {
  56. _channels[0].value = (value >> 24) & 0xFF;
  57. _channels[1].value = (value >> 16) & 0xFF;
  58. _channels[2].value = (value >> 8) & 0xFF;
  59. _brightness = (value & 0xFF) * LIGHT_MAX_BRIGHTNESS / 255;
  60. } else {
  61. _channels[0].value = (value >> 16) & 0xFF;
  62. _channels[1].value = (value >> 8) & 0xFF;
  63. _channels[2].value = (value) & 0xFF;
  64. }
  65. }
  66. // it's a temperature in mireds
  67. } else if (p[0] == 'M') {
  68. if (lightHasColor()) {
  69. unsigned long mireds = atol(p + 1);
  70. _fromMireds(mireds);
  71. }
  72. // it's a temperature in kelvin
  73. } else if (p[0] == 'K') {
  74. if (lightHasColor()) {
  75. unsigned long kelvin = atol(p + 1);
  76. _fromKelvin(kelvin);
  77. }
  78. // otherwise assume decimal values separated by commas
  79. } else {
  80. char * tok;
  81. unsigned char count = 0;
  82. unsigned char channels = _channels.size();
  83. tok = strtok(p, ",");
  84. while (tok != NULL) {
  85. _channels[count].value = atoi(tok);
  86. if (++count == channels) break;
  87. tok = strtok(NULL, ",");
  88. }
  89. // RGB but less than 3 values received
  90. if (lightHasColor() && (count < 3)) {
  91. _channels[1].value = _channels[0].value;
  92. _channels[2].value = _channels[0].value;
  93. }
  94. }
  95. }
  96. void _toRGB(char * rgb, size_t len, bool applyBrightness) {
  97. if (!lightHasColor()) return;
  98. float b = applyBrightness ? (float) _brightness / LIGHT_MAX_BRIGHTNESS : 1;
  99. unsigned long value = 0;
  100. value += _channels[0].value * b;
  101. value <<= 8;
  102. value += _channels[1].value * b;
  103. value <<= 8;
  104. value += _channels[2].value * b;
  105. snprintf_P(rgb, len, PSTR("#%06X"), value);
  106. }
  107. void _toRGB(char * rgb, size_t len) {
  108. _toRGB(rgb, len, false);
  109. }
  110. void _toLong(char * color, size_t len, bool applyBrightness) {
  111. if (!lightHasColor()) return;
  112. float b = applyBrightness ? (float) _brightness / LIGHT_MAX_BRIGHTNESS : 1;
  113. snprintf_P(color, len, PSTR("%d,%d,%d"),
  114. (int) (_channels[0].value * b),
  115. (int) (_channels[1].value * b),
  116. (int) (_channels[2].value * b)
  117. );
  118. }
  119. void _toLong(char * color, size_t len) {
  120. _toLong(color, len, false);
  121. }
  122. // Thanks to Sacha Telgenhof for sharing this code in his AiLight library
  123. // https://github.com/stelgenhof/AiLight
  124. void _fromKelvin(unsigned long kelvin) {
  125. // Check we have RGB channels
  126. if (!lightHasColor()) return;
  127. // Calculate colors
  128. unsigned int red = (kelvin <= 66)
  129. ? LIGHT_MAX_VALUE
  130. : 329.698727446 * pow((kelvin - 60), -0.1332047592);
  131. unsigned int green = (kelvin <= 66)
  132. ? 99.4708025861 * log(kelvin) - 161.1195681661
  133. : 288.1221695283 * pow(kelvin, -0.0755148492);
  134. unsigned int blue = (kelvin >= 66)
  135. ? LIGHT_MAX_VALUE
  136. : ((kelvin <= 19)
  137. ? 0
  138. : 138.5177312231 * log(kelvin - 10) - 305.0447927307);
  139. // Save values
  140. _channels[0].value = constrain(red, 0, LIGHT_MAX_VALUE);
  141. _channels[1].value = constrain(green, 0, LIGHT_MAX_VALUE);
  142. _channels[2].value = constrain(blue, 0, LIGHT_MAX_VALUE);
  143. }
  144. // Color temperature is measured in mireds (kelvin = 1e6/mired)
  145. void _fromMireds(unsigned long mireds) {
  146. if (mireds == 0) mireds = 1;
  147. unsigned long kelvin = constrain(1000000UL / mireds, 1000, 40000) / 100;
  148. _fromKelvin(kelvin);
  149. }
  150. unsigned int _toPWM(unsigned long value, bool bright, bool gamma, bool reverse) {
  151. value = constrain(value, 0, LIGHT_MAX_VALUE);
  152. if (bright) value *= ((float) _brightness / LIGHT_MAX_BRIGHTNESS);
  153. unsigned int pwm = gamma ? gamma_table[value] : map(value, 0, LIGHT_MAX_VALUE, 0, LIGHT_MAX_PWM);
  154. if (reverse) pwm = LIGHT_MAX_PWM - pwm;
  155. return pwm;
  156. }
  157. // Returns a PWM valule for the given channel ID
  158. unsigned int _toPWM(unsigned char id) {
  159. if (id < _channels.size()) {
  160. bool isColor = lightHasColor() && (id < 3);
  161. bool bright = isColor;
  162. bool gamma = isColor & (getSetting("useGamma", LIGHT_USE_GAMMA).toInt() == 1);
  163. return _toPWM(_channels[id].shadow, bright, gamma, _channels[id].reverse);
  164. }
  165. return 0;
  166. }
  167. // -----------------------------------------------------------------------------
  168. // PROVIDER
  169. // -----------------------------------------------------------------------------
  170. void _shadow() {
  171. for (unsigned int i=0; i < _channels.size(); i++) {
  172. _channels[i].shadow = _lightState ? _channels[i].value : 0;
  173. }
  174. if (lightHasColor()) {
  175. bool useWhite = getSetting("useWhite", LIGHT_USE_WHITE).toInt() == 1;
  176. if (_lightState && useWhite && (_channels.size() > 3)) {
  177. if (_channels[0].shadow == _channels[1].shadow && _channels[1].shadow == _channels[2].shadow ) {
  178. _channels[3].shadow = _channels[0].shadow * ((float) _brightness / LIGHT_MAX_BRIGHTNESS);
  179. _channels[2].shadow = 0;
  180. _channels[1].shadow = 0;
  181. _channels[0].shadow = 0;
  182. }
  183. }
  184. }
  185. }
  186. void _lightProviderUpdate() {
  187. _shadow();
  188. #ifdef LIGHT_ENABLE_PIN
  189. digitalWrite(LIGHT_ENABLE_PIN, _lightState);
  190. #endif
  191. #if LIGHT_PROVIDER == LIGHT_PROVIDER_MY9192
  192. if (_lightState) {
  193. float ratio = (float) LIGHT_MAX_VALUE / LIGHT_MAX_PWM;
  194. unsigned int red = _toPWM(0) * ratio;
  195. unsigned int green = _toPWM(1) * ratio;
  196. unsigned int blue = _toPWM(2) * ratio;
  197. unsigned int white = _toPWM(3) * ratio;
  198. unsigned int warm = _toPWM(4) * ratio;
  199. _my9291->setColor((my9291_color_t) { red, green, blue, white, warm });
  200. _my9291->setState(true);
  201. } else {
  202. _my9291->setColor((my9291_color_t) { 0, 0, 0, 0, 0 });
  203. _my9291->setState(false);
  204. }
  205. #endif
  206. #if LIGHT_PROVIDER == LIGHT_PROVIDER_DIMMER
  207. for (unsigned int i=0; i < _channels.size(); i++) {
  208. analogWrite(_channels[i].pin, _toPWM(i));
  209. }
  210. #endif
  211. }
  212. // -----------------------------------------------------------------------------
  213. // PERSISTANCE
  214. // -----------------------------------------------------------------------------
  215. void _lightColorSave() {
  216. for (unsigned int i=0; i < _channels.size(); i++) {
  217. setSetting("ch", i, _channels[i].value);
  218. }
  219. setSetting("brightness", _brightness);
  220. saveSettings();
  221. }
  222. void _lightColorRestore() {
  223. for (unsigned int i=0; i < _channels.size(); i++) {
  224. _channels[i].value = getSetting("ch", i, i==0 ? 255 : 0).toInt();
  225. }
  226. _brightness = getSetting("brightness", LIGHT_MAX_BRIGHTNESS).toInt();
  227. lightUpdate(false, false);
  228. }
  229. // -----------------------------------------------------------------------------
  230. // MQTT
  231. // -----------------------------------------------------------------------------
  232. void _lightMQTTCallback(unsigned int type, const char * topic, const char * payload) {
  233. if (type == MQTT_CONNECT_EVENT) {
  234. if (lightHasColor()) {
  235. mqttSubscribe(MQTT_TOPIC_BRIGHTNESS);
  236. mqttSubscribe(MQTT_TOPIC_MIRED);
  237. mqttSubscribe(MQTT_TOPIC_KELVIN);
  238. mqttSubscribe(MQTT_TOPIC_COLOR);
  239. }
  240. char buffer[strlen(MQTT_TOPIC_CHANNEL) + 3];
  241. snprintf_P(buffer, sizeof(buffer), PSTR("%s/+"), MQTT_TOPIC_CHANNEL);
  242. mqttSubscribe(buffer);
  243. }
  244. if (type == MQTT_MESSAGE_EVENT) {
  245. // Match topic
  246. String t = mqttSubtopic((char *) topic);
  247. // Color temperature in mireds
  248. if (t.equals(MQTT_TOPIC_MIRED)) {
  249. _fromMireds(atol(payload));
  250. lightUpdate(true, mqttForward());
  251. }
  252. // Color temperature in kelvins
  253. if (t.equals(MQTT_TOPIC_KELVIN)) {
  254. _fromKelvin(atol(payload));
  255. lightUpdate(true, mqttForward());
  256. }
  257. // Color
  258. if (t.equals(MQTT_TOPIC_COLOR)) {
  259. lightColor(payload);
  260. lightUpdate(true, mqttForward());
  261. }
  262. // Brightness
  263. if (t.equals(MQTT_TOPIC_BRIGHTNESS)) {
  264. _brightness = constrain(atoi(payload), 0, LIGHT_MAX_BRIGHTNESS);
  265. lightUpdate(true, mqttForward());
  266. }
  267. // Channel
  268. if (t.startsWith(MQTT_TOPIC_CHANNEL)) {
  269. unsigned int channelID = t.substring(strlen(MQTT_TOPIC_CHANNEL)+1).toInt();
  270. if (channelID >= _channels.size()) {
  271. DEBUG_MSG_P(PSTR("[LIGHT] Wrong channelID (%d)\n"), channelID);
  272. return;
  273. }
  274. lightChannel(channelID, atoi(payload));
  275. lightUpdate(true, mqttForward());
  276. }
  277. }
  278. }
  279. // -----------------------------------------------------------------------------
  280. // API
  281. // -----------------------------------------------------------------------------
  282. unsigned char lightChannels() {
  283. return _channels.size();
  284. }
  285. bool lightHasColor() {
  286. bool useColor = getSetting("useColor", LIGHT_USE_COLOR).toInt() == 1;
  287. return useColor && (_channels.size() > 2);
  288. }
  289. unsigned char lightWhiteChannels() {
  290. return _channels.size() % 3;
  291. }
  292. void lightMQTT() {
  293. char buffer[12];
  294. if (lightHasColor()) {
  295. // Color
  296. if (getSetting("useCSS", LIGHT_USE_CSS).toInt() == 1) {
  297. _toRGB(buffer, 12, false);
  298. } else {
  299. _toLong(buffer, 12, false);
  300. }
  301. mqttSend(MQTT_TOPIC_COLOR, buffer);
  302. // Brightness
  303. snprintf_P(buffer, sizeof(buffer), PSTR("%d"), _brightness);
  304. mqttSend(MQTT_TOPIC_BRIGHTNESS, buffer);
  305. }
  306. // Channels
  307. for (unsigned int i=0; i < _channels.size(); i++) {
  308. snprintf_P(buffer, sizeof(buffer), PSTR("%d"), _channels[i].value);
  309. mqttSend(MQTT_TOPIC_CHANNEL, i, buffer);
  310. }
  311. }
  312. void lightUpdate(bool save, bool forward) {
  313. _lightProviderUpdate();
  314. // Report color & brightness to MQTT broker
  315. if (forward) lightMQTT();
  316. // Report color to WS clients (using current brightness setting)
  317. #if WEB_SUPPORT
  318. {
  319. DynamicJsonBuffer jsonBuffer;
  320. JsonObject& root = jsonBuffer.createObject();
  321. root["colorVisible"] = 1;
  322. root["useColor"] = getSetting("useColor", LIGHT_USE_COLOR).toInt() == 1;
  323. root["useWhite"] = getSetting("useWhite", LIGHT_USE_WHITE).toInt() == 1;
  324. root["useGamma"] = getSetting("useGamma", LIGHT_USE_GAMMA).toInt() == 1;
  325. if (lightHasColor()) {
  326. root["color"] = lightColor();
  327. root["brightness"] = lightBrightness();
  328. }
  329. JsonArray& channels = root.createNestedArray("channels");
  330. for (unsigned char id=0; id < lightChannels(); id++) {
  331. channels.add(lightChannel(id));
  332. }
  333. String output;
  334. root.printTo(output);
  335. wsSend(output.c_str());
  336. }
  337. #endif
  338. #if LIGHT_SAVE_ENABLED
  339. // Delay saving to EEPROM 5 seconds to avoid wearing it out unnecessarily
  340. if (save) colorTicker.once(LIGHT_SAVE_DELAY, _lightColorSave);
  341. #endif
  342. };
  343. #if LIGHT_SAVE_ENABLED == 0
  344. void lightSave() {
  345. _lightColorSave();
  346. }
  347. #endif
  348. void lightState(bool state) {
  349. _lightState = state;
  350. }
  351. bool lightState() {
  352. return _lightState;
  353. }
  354. void lightColor(const char * color) {
  355. _fromRGB(color);
  356. }
  357. String lightColor() {
  358. char rgb[8];
  359. _toRGB(rgb, 8, false);
  360. return String(rgb);
  361. }
  362. unsigned int lightChannel(unsigned char id) {
  363. if (id <= _channels.size()) {
  364. return _channels[id].value;
  365. }
  366. return 0;
  367. }
  368. void lightChannel(unsigned char id, unsigned int value) {
  369. if (id <= _channels.size()) {
  370. _channels[id].value = constrain(value, 0, LIGHT_MAX_VALUE);
  371. }
  372. }
  373. unsigned int lightBrightness() {
  374. return _brightness;
  375. }
  376. void lightBrightness(unsigned int b) {
  377. _brightness = constrain(b, 0, LIGHT_MAX_BRIGHTNESS);
  378. }
  379. // -----------------------------------------------------------------------------
  380. // SETUP
  381. // -----------------------------------------------------------------------------
  382. void _lightAPISetup() {
  383. #if WEB_SUPPORT
  384. // API entry points (protected with apikey)
  385. if (lightHasColor()) {
  386. apiRegister(MQTT_TOPIC_COLOR, MQTT_TOPIC_COLOR,
  387. [](char * buffer, size_t len) {
  388. if (getSetting("useCSS", LIGHT_USE_CSS).toInt() == 1) {
  389. _toRGB(buffer, len, false);
  390. } else {
  391. _toLong(buffer, len, false);
  392. }
  393. },
  394. [](const char * payload) {
  395. lightColor(payload);
  396. lightUpdate(true, true);
  397. }
  398. );
  399. apiRegister(MQTT_TOPIC_BRIGHTNESS, MQTT_TOPIC_BRIGHTNESS,
  400. [](char * buffer, size_t len) {
  401. snprintf_P(buffer, len, PSTR("%d"), _brightness);
  402. },
  403. [](const char * payload) {
  404. lightBrightness(atoi(payload));
  405. lightUpdate(true, true);
  406. }
  407. );
  408. apiRegister(MQTT_TOPIC_KELVIN, MQTT_TOPIC_KELVIN,
  409. [](char * buffer, size_t len) {},
  410. [](const char * payload) {
  411. _fromKelvin(atol(payload));
  412. lightUpdate(true, true);
  413. }
  414. );
  415. apiRegister(MQTT_TOPIC_MIRED, MQTT_TOPIC_MIRED,
  416. [](char * buffer, size_t len) {},
  417. [](const char * payload) {
  418. _fromMireds(atol(payload));
  419. lightUpdate(true, true);
  420. }
  421. );
  422. }
  423. for (unsigned int id=0; id<lightChannels(); id++) {
  424. char url[15];
  425. snprintf_P(url, sizeof(url), PSTR("%s/%d"), MQTT_TOPIC_CHANNEL, id);
  426. char key[10];
  427. snprintf_P(key, sizeof(key), PSTR("%s%d"), MQTT_TOPIC_CHANNEL, id);
  428. apiRegister(url, key,
  429. [id](char * buffer, size_t len) {
  430. snprintf_P(buffer, len, PSTR("%d"), lightChannel(id));
  431. },
  432. [id](const char * payload) {
  433. lightChannel(id, atoi(payload));
  434. lightUpdate(true, true);
  435. }
  436. );
  437. }
  438. #endif // WEB_SUPPORT
  439. }
  440. void lightSetup() {
  441. #ifdef LIGHT_ENABLE_PIN
  442. pinMode(LIGHT_ENABLE_PIN, OUTPUT);
  443. #endif
  444. #if LIGHT_PROVIDER == LIGHT_PROVIDER_MY9192
  445. _my9291 = new my9291(MY9291_DI_PIN, MY9291_DCKI_PIN, MY9291_COMMAND, MY9291_CHANNELS);
  446. for (unsigned char i=0; i<MY9291_CHANNELS; i++) {
  447. _channels.push_back((channel_t) {0, false, 0});
  448. }
  449. #endif
  450. #if LIGHT_PROVIDER == LIGHT_PROVIDER_DIMMER
  451. #ifdef LIGHT_CH1_PIN
  452. _channels.push_back((channel_t) {LIGHT_CH1_PIN, LIGHT_CH1_INVERSE, 0});
  453. #endif
  454. #ifdef LIGHT_CH2_PIN
  455. _channels.push_back((channel_t) {LIGHT_CH2_PIN, LIGHT_CH2_INVERSE, 0});
  456. #endif
  457. #ifdef LIGHT_CH3_PIN
  458. _channels.push_back((channel_t) {LIGHT_CH3_PIN, LIGHT_CH3_INVERSE, 0});
  459. #endif
  460. #ifdef LIGHT_CH4_PIN
  461. _channels.push_back((channel_t) {LIGHT_CH4_PIN, LIGHT_CH4_INVERSE, 0});
  462. #endif
  463. #ifdef LIGHT_CH5_PIN
  464. _channels.push_back((channel_t) {LIGHT_CH5_PIN, LIGHT_CH5_INVERSE, 0});
  465. #endif
  466. analogWriteRange(LIGHT_MAX_PWM+1);
  467. analogWriteFreq(LIGHT_PWM_FREQUENCY);
  468. for (unsigned int i=0; i < _channels.size(); i++) {
  469. pinMode(_channels[i].pin, OUTPUT);
  470. }
  471. #endif
  472. DEBUG_MSG_P(PSTR("[LIGHT] LIGHT_PROVIDER = %d\n"), LIGHT_PROVIDER);
  473. DEBUG_MSG_P(PSTR("[LIGHT] Number of channels: %d\n"), _channels.size());
  474. _lightColorRestore();
  475. _lightAPISetup();
  476. mqttRegister(_lightMQTTCallback);
  477. }
  478. void lightLoop(){
  479. }
  480. #endif // LIGHT_PROVIDER_EXPERIMENTAL_RGB_ONLY_HSV_IR
  481. #endif // LIGHT_PROVIDER != LIGHT_PROVIDER_NONE