led_vu.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  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 "Configurator.h"
  25. #include "accessors.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. } strip;
  49. static int led_addr(int pos ) {
  50. if (pos < 0) return pos + strip.length;
  51. if (pos >= strip.length) return pos - strip.length;
  52. return pos;
  53. }
  54. static void battery_svc(float value, int cells) {
  55. battery_status = battery_level_svc();
  56. ESP_LOGI(TAG, "Called for battery service with volt:%f cells:%d status:%d", value, cells, battery_status);
  57. if (battery_handler_chain) battery_handler_chain(value, cells);
  58. }
  59. /****************************************************************************************
  60. * Initialize the led vu strip if configured.
  61. *
  62. */
  63. void led_vu_init()
  64. {
  65. sys_LEDStrip * config = NULL;
  66. if(!SYS_DEV_LEDSTRIP(config)){
  67. return;
  68. }
  69. if(!!config->has_gpio ){
  70. return;
  71. }
  72. // char* config = config_alloc_get_str("led_vu_config", NULL, "N/A");
  73. // Initialize led VU strip
  74. strip.length = config->length;
  75. strip.gpio = config->gpio.pin;
  76. // check for valid configuration
  77. if (config->strip_type == sys_LEDStripType_LS_UNKNOWN || !config->has_gpio || config->gpio.pin <0) {
  78. ESP_LOGI(TAG, "led_vu configuration invalid");
  79. return;
  80. }
  81. battery_handler_chain = battery_handler_svc;
  82. battery_handler_svc = battery_svc;
  83. battery_status = battery_level_svc();
  84. if (strip.length > LED_VU_MAX_LENGTH) strip.length = LED_VU_MAX_LENGTH;
  85. // initialize vu meter settings
  86. if (strip.length < 10) {
  87. // single bar for small strips
  88. strip.vu_length = strip.length;
  89. strip.vu_start_l = 0;
  90. strip.vu_start_r = strip.vu_start_l;
  91. strip.vu_status = 0;
  92. } else {
  93. strip.vu_length = (strip.length - 1) / 2;
  94. strip.vu_start_l = (strip.length % 2) ? strip.vu_length -1 : strip.vu_length;
  95. strip.vu_start_r = strip.vu_length + 1;
  96. strip.vu_status = strip.vu_length;
  97. }
  98. ESP_LOGI(TAG, "vu meter using length:%d left:%d right:%d status:%d", strip.vu_length, strip.vu_start_l, strip.vu_start_r, strip.vu_status);
  99. // create driver configuration
  100. led_strip_config.rgb_led_type = config->strip_type == sys_LEDStripType_LS_WS2812?RGB_LED_TYPE_WS2812:RGB_LED_TYPE_MAX;
  101. led_strip_config.access_semaphore = xSemaphoreCreateBinary();
  102. led_strip_config.led_strip_length = strip.length;
  103. led_strip_config.led_strip_working = heap_caps_malloc(strip.length * sizeof(struct led_color_t), MALLOC_CAP_8BIT);
  104. led_strip_config.led_strip_showing = heap_caps_malloc(strip.length * sizeof(struct led_color_t), MALLOC_CAP_8BIT);
  105. led_strip_config.gpio = strip.gpio;
  106. led_strip_config.rmt_channel = RMT_NEXT_TX_CHANNEL();
  107. // initialize driver
  108. bool led_init_ok = led_strip_init(&led_strip_config);
  109. if (led_init_ok) {
  110. led_display = &led_strip_config;
  111. ESP_LOGI(TAG, "led_vu using gpio:%d length:%d on channel:%d", strip.gpio, strip.length, led_strip_config.rmt_channel);
  112. } else {
  113. ESP_LOGE(TAG, "led_vu init failed");
  114. return;
  115. }
  116. // reserver max memory for remote management systems
  117. rmt_set_mem_block_num(led_strip_config.rmt_channel, 7);
  118. led_vu_clear(led_display);
  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. * Turns all LEDs off (Black)
  132. */
  133. void led_vu_clear() {
  134. if (!led_display) return;
  135. led_strip_clear(led_display);
  136. led_strip_show(led_display);
  137. }
  138. /****************************************************************************************
  139. * Sets all LEDs to one color
  140. * r = red (0-255), g = green (0-255), b - blue (0-255)
  141. * note - all colors are adjusted for brightness
  142. */
  143. void led_vu_color_all(uint8_t r, uint8_t g, uint8_t b) {
  144. if (!led_display) return;
  145. struct led_color_t color_on = {.red = r, .green = g, .blue = b};
  146. for (int i = 0 ; i < strip.length ; i ++){
  147. led_strip_set_pixel_color(led_display, i, &color_on);
  148. }
  149. led_strip_show(led_display);
  150. }
  151. /****************************************************************************************
  152. * Sets LEDs based on a data packet consiting of rgb data
  153. * offset - starting LED,
  154. * length - number of leds (3x rgb bytes)
  155. * data - array of rgb values in multiples of 3 bytes
  156. */
  157. void led_vu_data(uint8_t* data, uint16_t offset, uint16_t length) {
  158. if (!led_display) return;
  159. uint8_t* p = (uint8_t*) data;
  160. for (int i = 0; i < length; i++) {
  161. led_strip_set_pixel_rgb(led_display, i+offset, *p, *(p+1), *(p+2));
  162. p+=3;
  163. }
  164. led_strip_show(led_display);
  165. }
  166. /****************************************************************************************
  167. * Progress bar display
  168. * data - array of gain values(0-100)
  169. * offset - starting position
  170. * length - size of array
  171. */
  172. void led_vu_spectrum(uint8_t* data, int bright, int length, int style) {
  173. if (!led_display) return;
  174. uint8_t gain,r,g,b;
  175. int width = strip.length / length;
  176. int pos = 0;
  177. uint8_t* p = (uint8_t*) data;
  178. for (int i=0; i<length; i++) {
  179. gain = *p;
  180. r = gain*gain/bright;
  181. if (!style) {
  182. g = 0;
  183. b = gain;
  184. } else {
  185. g = r;
  186. r = 0;
  187. b = gain * (bright-gain)/bright;
  188. }
  189. for (int j=0; j<width; j++) {
  190. led_strip_set_pixel_rgb(led_display, pos, r, g, b);
  191. pos++;
  192. }
  193. p++;
  194. }
  195. led_strip_show(led_display);
  196. }
  197. /****************************************************************************************
  198. * Progress bar display
  199. * pct - percentage complete (0-100)
  200. */
  201. void led_vu_progress_bar(int pct, int bright) {
  202. if (!led_display) return;
  203. // define colors
  204. struct led_color_t color_on = {.red = bright, .green = 0, .blue = 0};
  205. struct led_color_t color_off = {.red = 0, .green = bright, .blue = 0};
  206. // calcuate led position
  207. int led_lit = strip.length * pct / 100;
  208. // set colors
  209. for (int i = 0; i < strip.length; i++) {
  210. led_strip_set_pixel_color(led_display, i, (i < led_lit) ? &color_off : &color_on);
  211. }
  212. led_strip_show(led_display);
  213. }
  214. /****************************************************************************************
  215. * Spin dial display
  216. * gain - brightness (0-100), rate - color change speed (0-100)
  217. * comet - alternate display mode
  218. */
  219. void led_vu_spin_dial(int gain, int rate, int speed, bool comet)
  220. {
  221. if (!led_display) return;
  222. static int led_pos = 0;
  223. static uint8_t r = 0;
  224. static uint8_t g = 0;
  225. static uint8_t b = 0;
  226. // calculate next color
  227. uint8_t step = rate / 2; // controls color change speed
  228. if (r == 0 && g == 0 && b == 0) {
  229. r = LED_VU_MAX; g = step;
  230. } else if (b == 0) {
  231. g = (g > LED_VU_MAX-step) ? LED_VU_MAX : g + step;
  232. r = (r < step) ? 0 : r - step;
  233. if (r == 0) b = step;
  234. } else if (r == 0) {
  235. b = (b > LED_VU_MAX-step) ? LED_VU_MAX : b + step;
  236. g = (g < step) ? 0 : g- step;
  237. if (g == 0) r = step;
  238. } else {
  239. r = (r > LED_VU_MAX-step) ? LED_VU_MAX : r + step;
  240. b = (b < step) ? 0 : b - step;
  241. if (r == 0) b = step;
  242. }
  243. uint8_t rp = r * gain / LED_VU_MAX;
  244. uint8_t gp = g * gain / LED_VU_MAX;
  245. uint8_t bp = b * gain / LED_VU_MAX;
  246. // set led color
  247. speed++;
  248. if (comet) {
  249. led_strip_clear(led_display);
  250. led_strip_set_pixel_rgb(led_display, led_addr(led_pos-1), rp/2, gp/2, bp/2);
  251. led_strip_set_pixel_rgb(led_display, led_addr(led_pos-2), rp/4, gp/4, bp/4);
  252. led_strip_set_pixel_rgb(led_display, led_addr(led_pos-3), rp/8, gp/8, bp/8);
  253. //led_strip_set_pixel_rgb(led_display, led_addr(led_pos-4), 0, 0, 0);
  254. }
  255. for (int i = 0; i < speed; i++) {
  256. led_strip_set_pixel_rgb(led_display, led_pos, rp, gp, bp);
  257. led_pos = led_addr(++led_pos);
  258. }
  259. led_strip_show(led_display);
  260. }
  261. /****************************************************************************************
  262. * VU meter display
  263. * vu_l - left response (0-100), vu_r - right response (0-100)
  264. * comet - alternate display mode
  265. */
  266. void led_vu_display(int vu_l, int vu_r, int bright, bool comet) {
  267. static int peak_l = 0;
  268. static int peak_r = 0;
  269. static int decay_l = 0;
  270. static int decay_r = 0;
  271. if (!led_display) return;
  272. // single bar
  273. if (strip.vu_start_l == strip.vu_start_r) {
  274. vu_r = (vu_l + vu_r) / 2;
  275. vu_l = 0;
  276. }
  277. // scale vu samples to length
  278. vu_l = vu_l * strip.vu_length / bright;
  279. vu_r = vu_r * strip.vu_length / bright;
  280. // calculate hold peaks
  281. if (peak_l > vu_l) {
  282. if (decay_l-- < 0) {
  283. decay_l = LED_VU_PEAK_HOLD;
  284. peak_l--;
  285. }
  286. } else {
  287. peak_l = vu_l;
  288. decay_l = LED_VU_PEAK_HOLD;
  289. }
  290. if (peak_r > vu_r) {
  291. if (decay_r-- < 0) {
  292. decay_r = LED_VU_PEAK_HOLD;
  293. peak_r--;
  294. }
  295. } else {
  296. peak_r = vu_r;
  297. decay_r = LED_VU_PEAK_HOLD;
  298. }
  299. // turn off all leds
  300. led_strip_clear(led_display);
  301. // set the led bar values
  302. uint8_t step = bright / (strip.vu_length-1);
  303. if (step < 1) step = 1; // dor low brightness or larger strips
  304. uint8_t g = bright * 2 / 3; // more red at top
  305. uint8_t r = 0;
  306. int shift = 0;
  307. for (int i = 0; i < strip.vu_length; i++) {
  308. // set left
  309. if (i == peak_l) {
  310. led_strip_set_pixel_rgb(led_display, strip.vu_start_l - i, r, g, bright);
  311. } else if (i <= vu_l) {
  312. shift = vu_l - i;
  313. if (comet)
  314. led_strip_set_pixel_rgb(led_display, strip.vu_start_l - i, r>>shift, g>>shift, 0);
  315. else
  316. led_strip_set_pixel_rgb(led_display, strip.vu_start_l - i, r, g, 0);
  317. }
  318. // set right
  319. if (i == peak_r) {
  320. led_strip_set_pixel_rgb(led_display, strip.vu_start_r + i, r, g, bright);
  321. } else if (i <= vu_r) {
  322. shift = vu_r - i;
  323. if (comet)
  324. led_strip_set_pixel_rgb(led_display, strip.vu_start_r + i, r>>shift, g>>shift, 0);
  325. else
  326. led_strip_set_pixel_rgb(led_display, strip.vu_start_r + i, r, g, 0);
  327. }
  328. // adjust colors (with limit checks)
  329. r = (r > bright-step) ? bright : r + step;
  330. g = (g < step) ? 0 : g - step;
  331. }
  332. // show battery status
  333. if (battery_status > LED_VU_STATUS_GREEN)
  334. led_strip_set_pixel_rgb(led_display, strip.vu_status, 0, bright, 0);
  335. else if (battery_status > LED_VU_STATUS_RED)
  336. led_strip_set_pixel_rgb(led_display, strip.vu_status, bright/2, bright/2, 0);
  337. else if (battery_status > 0)
  338. led_strip_set_pixel_rgb(led_display, strip.vu_status, bright, 0, 0);
  339. led_strip_show(led_display);
  340. }