led_vu.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. /*
  2. * Control of LED strip within squeezelite-esp32
  3. *
  4. * (c) Wizmo 2021
  5. *
  6. * Loosely based on code by
  7. * Chuck Rohs 2020, chuck@zethus.ca
  8. *
  9. * This software is released under the MIT License.
  10. * https://opensource.org/licenses/MIT
  11. *
  12. * ToDo:
  13. * Driver does support other led device. Maybe look at supporting in future.
  14. * The VU refresh rate has been decreaced (100->75) to optimize animation of spin dial. Could make
  15. * configurable like text scrolling (or use the same value)
  16. * Artwork function, but not released as very buggy and not really practical
  17. */
  18. #include <ctype.h>
  19. #include <math.h>
  20. #include "esp_log.h"
  21. #include "globdefs.h"
  22. #include "monitor.h"
  23. #include "led_strip.h"
  24. #include "platform_config.h"
  25. #include "services.h"
  26. #include "led_vu.h"
  27. static const char *TAG = "led_vu";
  28. static void (*battery_handler_chain)(float value, int cells);
  29. static void battery_svc(float value, int cells);
  30. static int battery_status = 0;
  31. #define LED_VU_STACK_SIZE (3*1024)
  32. #define LED_VU_PEAK_HOLD 6U
  33. #define LED_VU_DEFAULT_GPIO 22
  34. #define LED_VU_DEFAULT_LENGTH 19
  35. #define LED_VU_MAX_LENGTH 255
  36. #define LED_VU_STATUS_GREEN 75
  37. #define LED_VU_STATUS_RED 25
  38. #define max(a,b) (((a) > (b)) ? (a) : (b))
  39. struct led_strip_t* led_display = NULL;
  40. static EXT_RAM_ATTR struct led_strip_t led_strip_config;
  41. static EXT_RAM_ATTR struct {
  42. int gpio;
  43. int length;
  44. int vu_length;
  45. int vu_start_l;
  46. int vu_start_r;
  47. int vu_status;
  48. int vu_scale;
  49. } strip;
  50. static int led_addr(int pos ) {
  51. if (pos < 0) return pos + strip.length;
  52. if (pos >= strip.length) return pos - strip.length;
  53. return pos;
  54. }
  55. static void battery_svc(float value, int cells) {
  56. battery_status = battery_level_svc();
  57. ESP_LOGI(TAG, "Called for battery service with volt:%f cells:%d status:%d", value, cells, battery_status);
  58. if (battery_handler_chain) battery_handler_chain(value, cells);
  59. }
  60. static void led_vu_sleep(void) { led_vu_clear(led_display); }
  61. /****************************************************************************************
  62. * Initialize the led vu strip if configured.
  63. *
  64. */
  65. void led_vu_init()
  66. {
  67. char* config = config_alloc_get_str("led_vu_config", NULL, "N/A");
  68. PARSE_PARAM(config, "length",'=', strip.length);
  69. PARSE_PARAM(config, "gpio",'=', strip.gpio);
  70. // check for valid configuration
  71. if (!strip.gpio) {
  72. ESP_LOGI(TAG, "led_vu configuration invalid");
  73. goto done;
  74. }
  75. strip.vu_scale = 100;
  76. PARSE_PARAM(config, "scale",'=',strip.vu_scale);
  77. battery_handler_chain = battery_handler_svc;
  78. battery_handler_svc = battery_svc;
  79. battery_status = battery_level_svc();
  80. if (strip.length > LED_VU_MAX_LENGTH) strip.length = LED_VU_MAX_LENGTH;
  81. // initialize vu meter settings
  82. if (strip.length < 10) {
  83. // single bar for small strips
  84. strip.vu_length = strip.length;
  85. strip.vu_start_l = 0;
  86. strip.vu_start_r = strip.vu_start_l;
  87. strip.vu_status = 0;
  88. } else {
  89. strip.vu_length = (strip.length - 1) / 2;
  90. strip.vu_start_l = (strip.length % 2) ? strip.vu_length -1 : strip.vu_length;
  91. strip.vu_start_r = strip.vu_length + 1;
  92. strip.vu_status = strip.vu_length;
  93. }
  94. ESP_LOGI(TAG, "vu meter using length:%d left:%d right:%d status:%d scale:%d", strip.vu_length, strip.vu_start_l, strip.vu_start_r, strip.vu_status, strip.vu_scale);
  95. // create driver configuration
  96. led_strip_config.rgb_led_type = RGB_LED_TYPE_WS2812;
  97. led_strip_config.access_semaphore = xSemaphoreCreateBinary();
  98. led_strip_config.led_strip_length = strip.length;
  99. led_strip_config.led_strip_working = heap_caps_malloc(strip.length * sizeof(struct led_color_t), MALLOC_CAP_8BIT);
  100. led_strip_config.led_strip_showing = heap_caps_malloc(strip.length * sizeof(struct led_color_t), MALLOC_CAP_8BIT);
  101. led_strip_config.gpio = strip.gpio;
  102. led_strip_config.rmt_channel = RMT_NEXT_TX_CHANNEL();
  103. // initialize driver
  104. bool led_init_ok = led_strip_init(&led_strip_config);
  105. if (led_init_ok) {
  106. led_display = &led_strip_config;
  107. ESP_LOGI(TAG, "led_vu using gpio:%d length:%d on channel:%d", strip.gpio, strip.length, led_strip_config.rmt_channel);
  108. } else {
  109. ESP_LOGE(TAG, "led_vu init failed");
  110. goto done;
  111. }
  112. // reserver max memory for remote management systems
  113. rmt_set_mem_block_num(led_strip_config.rmt_channel, 7);
  114. services_sleep_setsuspend(led_vu_sleep);
  115. led_vu_clear(led_display);
  116. done:
  117. free(config);
  118. return;
  119. }
  120. inline bool inRange(double x, double y, double z) {
  121. return (x > y && x < z);
  122. }
  123. /****************************************************************************************
  124. * Returns the led strip length
  125. */
  126. uint16_t led_vu_string_length() {
  127. if (!led_display) return 0;
  128. return (uint16_t)strip.length;
  129. }
  130. /****************************************************************************************
  131. * Returns a user defined scale (percent)
  132. */
  133. uint16_t led_vu_scale() {
  134. if (!led_display) return 0;
  135. return (uint16_t)strip.vu_scale;
  136. }
  137. /****************************************************************************************
  138. * Turns all LEDs off (Black)
  139. */
  140. void led_vu_clear() {
  141. if (!led_display) return;
  142. led_strip_clear(led_display);
  143. led_strip_show(led_display);
  144. }
  145. /****************************************************************************************
  146. * Sets all LEDs to one color
  147. * r = red (0-255), g = green (0-255), b - blue (0-255)
  148. * note - all colors are adjusted for brightness
  149. */
  150. void led_vu_color_all(uint8_t r, uint8_t g, uint8_t b) {
  151. if (!led_display) return;
  152. struct led_color_t color_on = {.red = r, .green = g, .blue = b};
  153. for (int i = 0 ; i < strip.length ; i ++){
  154. led_strip_set_pixel_color(led_display, i, &color_on);
  155. }
  156. led_strip_show(led_display);
  157. }
  158. /****************************************************************************************
  159. * Sets LEDs based on a data packet consiting of rgb data
  160. * offset - starting LED,
  161. * length - number of leds (3x rgb bytes)
  162. * data - array of rgb values in multiples of 3 bytes
  163. */
  164. void led_vu_data(uint8_t* data, uint16_t offset, uint16_t length) {
  165. if (!led_display) return;
  166. uint8_t* p = (uint8_t*) data;
  167. for (int i = 0; i < length; i++) {
  168. led_strip_set_pixel_rgb(led_display, i+offset, *p, *(p+1), *(p+2));
  169. p+=3;
  170. }
  171. led_strip_show(led_display);
  172. }
  173. /****************************************************************************************
  174. * Progress bar display
  175. * data - array of gain values(0-100)
  176. * offset - starting position
  177. * length - size of array
  178. */
  179. void led_vu_spectrum(uint8_t* data, int bright, int length, int style) {
  180. if (!led_display) return;
  181. uint8_t gain,r,g,b;
  182. int width = strip.length / length;
  183. int pos = 0;
  184. uint8_t* p = (uint8_t*) data;
  185. for (int i=0; i<length; i++) {
  186. gain = *p;
  187. r = gain*gain/bright;
  188. if (!style) {
  189. g = 0;
  190. b = gain;
  191. } else {
  192. g = r;
  193. r = 0;
  194. b = gain * (bright-gain)/bright;
  195. }
  196. for (int j=0; j<width; j++) {
  197. led_strip_set_pixel_rgb(led_display, pos, r, g, b);
  198. pos++;
  199. }
  200. p++;
  201. }
  202. led_strip_show(led_display);
  203. }
  204. /****************************************************************************************
  205. * Progress bar display
  206. * pct - percentage complete (0-100)
  207. */
  208. void led_vu_progress_bar(int pct, int bright) {
  209. if (!led_display) return;
  210. // define colors
  211. struct led_color_t color_on = {.red = bright, .green = 0, .blue = 0};
  212. struct led_color_t color_off = {.red = 0, .green = bright, .blue = 0};
  213. // calcuate led position
  214. int led_lit = strip.length * pct / 100;
  215. // set colors
  216. for (int i = 0; i < strip.length; i++) {
  217. led_strip_set_pixel_color(led_display, i, (i < led_lit) ? &color_off : &color_on);
  218. }
  219. led_strip_show(led_display);
  220. }
  221. /****************************************************************************************
  222. * Spin dial display
  223. * gain - brightness (0-100), rate - color change speed (0-100)
  224. * comet - alternate display mode
  225. */
  226. void led_vu_spin_dial(int gain, int rate, int speed, bool comet)
  227. {
  228. if (!led_display) return;
  229. static int led_pos = 0;
  230. static uint8_t r = 0;
  231. static uint8_t g = 0;
  232. static uint8_t b = 0;
  233. // calculate next color
  234. uint8_t step = rate / 2; // controls color change speed
  235. if (r == 0 && g == 0 && b == 0) {
  236. r = LED_VU_MAX; g = step;
  237. } else if (b == 0) {
  238. g = (g > LED_VU_MAX-step) ? LED_VU_MAX : g + step;
  239. r = (r < step) ? 0 : r - step;
  240. if (r == 0) b = step;
  241. } else if (r == 0) {
  242. b = (b > LED_VU_MAX-step) ? LED_VU_MAX : b + step;
  243. g = (g < step) ? 0 : g- step;
  244. if (g == 0) r = step;
  245. } else {
  246. r = (r > LED_VU_MAX-step) ? LED_VU_MAX : r + step;
  247. b = (b < step) ? 0 : b - step;
  248. if (r == 0) b = step;
  249. }
  250. uint8_t rp = r * gain / LED_VU_MAX;
  251. uint8_t gp = g * gain / LED_VU_MAX;
  252. uint8_t bp = b * gain / LED_VU_MAX;
  253. // set led color
  254. speed++;
  255. if (comet) {
  256. led_strip_clear(led_display);
  257. led_strip_set_pixel_rgb(led_display, led_addr(led_pos-1), rp/2, gp/2, bp/2);
  258. led_strip_set_pixel_rgb(led_display, led_addr(led_pos-2), rp/4, gp/4, bp/4);
  259. led_strip_set_pixel_rgb(led_display, led_addr(led_pos-3), rp/8, gp/8, bp/8);
  260. //led_strip_set_pixel_rgb(led_display, led_addr(led_pos-4), 0, 0, 0);
  261. }
  262. for (int i = 0; i < speed; i++) {
  263. led_strip_set_pixel_rgb(led_display, led_pos, rp, gp, bp);
  264. led_pos = led_addr(++led_pos);
  265. }
  266. led_strip_show(led_display);
  267. }
  268. /****************************************************************************************
  269. * VU meter display
  270. * vu_l - left response (0-100), vu_r - right response (0-100)
  271. * comet - alternate display mode
  272. */
  273. void led_vu_display(int vu_l, int vu_r, int bright, bool comet) {
  274. static int peak_l = 0;
  275. static int peak_r = 0;
  276. static int decay_l = 0;
  277. static int decay_r = 0;
  278. if (!led_display) return;
  279. // single bar
  280. if (strip.vu_start_l == strip.vu_start_r) {
  281. vu_r = (vu_l + vu_r) / 2;
  282. vu_l = 0;
  283. }
  284. // scale vu samples to length
  285. vu_l = vu_l * strip.vu_length / bright;
  286. vu_r = vu_r * strip.vu_length / bright;
  287. // calculate hold peaks
  288. if (peak_l > vu_l) {
  289. if (decay_l-- < 0) {
  290. decay_l = LED_VU_PEAK_HOLD;
  291. peak_l--;
  292. }
  293. } else {
  294. peak_l = vu_l;
  295. decay_l = LED_VU_PEAK_HOLD;
  296. }
  297. if (peak_r > vu_r) {
  298. if (decay_r-- < 0) {
  299. decay_r = LED_VU_PEAK_HOLD;
  300. peak_r--;
  301. }
  302. } else {
  303. peak_r = vu_r;
  304. decay_r = LED_VU_PEAK_HOLD;
  305. }
  306. // turn off all leds
  307. led_strip_clear(led_display);
  308. // set the led bar values
  309. uint8_t step = bright / (strip.vu_length-1);
  310. if (step < 1) step = 1; // dor low brightness or larger strips
  311. uint8_t g = bright * 2 / 3; // more red at top
  312. uint8_t r = 0;
  313. int shift = 0;
  314. for (int i = 0; i < strip.vu_length; i++) {
  315. // set left
  316. if (i == peak_l) {
  317. led_strip_set_pixel_rgb(led_display, strip.vu_start_l - i, r, g, bright);
  318. } else if (i <= vu_l) {
  319. shift = vu_l - i;
  320. if (comet)
  321. led_strip_set_pixel_rgb(led_display, strip.vu_start_l - i, r>>shift, g>>shift, 0);
  322. else
  323. led_strip_set_pixel_rgb(led_display, strip.vu_start_l - i, r, g, 0);
  324. }
  325. // set right
  326. if (i == peak_r) {
  327. led_strip_set_pixel_rgb(led_display, strip.vu_start_r + i, r, g, bright);
  328. } else if (i <= vu_r) {
  329. shift = vu_r - i;
  330. if (comet)
  331. led_strip_set_pixel_rgb(led_display, strip.vu_start_r + i, r>>shift, g>>shift, 0);
  332. else
  333. led_strip_set_pixel_rgb(led_display, strip.vu_start_r + i, r, g, 0);
  334. }
  335. // adjust colors (with limit checks)
  336. r = (r > bright-step) ? bright : r + step;
  337. g = (g < step) ? 0 : g - step;
  338. }
  339. // show battery status
  340. if (battery_status > LED_VU_STATUS_GREEN)
  341. led_strip_set_pixel_rgb(led_display, strip.vu_status, 0, bright, 0);
  342. else if (battery_status > LED_VU_STATUS_RED)
  343. led_strip_set_pixel_rgb(led_display, strip.vu_status, bright/2, bright/2, 0);
  344. else if (battery_status > 0)
  345. led_strip_set_pixel_rgb(led_display, strip.vu_status, bright, 0, 0);
  346. led_strip_show(led_display);
  347. }