|
| 1 | +#include "esp32-hal-rgb-led.h" |
| 2 | + |
| 3 | + |
| 4 | +void neopixelWrite(uint8_t pin, uint8_t red_val, uint8_t green_val, uint8_t blue_val){ |
| 5 | + rmt_data_t led_data[24]; |
| 6 | + static rmt_obj_t* rmt_send = NULL; |
| 7 | + static bool initialized = false; |
| 8 | + |
| 9 | + uint8_t _pin = pin; |
| 10 | +#ifdef BOARD_HAS_NEOPIXEL |
| 11 | + if(pin == LED_BUILTIN){ |
| 12 | + _pin = LED_BUILTIN-SOC_GPIO_PIN_COUNT; |
| 13 | + } |
| 14 | +#endif |
| 15 | + |
| 16 | + if(!initialized){ |
| 17 | + if((rmt_send = rmtInit(_pin, RMT_TX_MODE, RMT_MEM_64)) == NULL){ |
| 18 | + log_e("RGB LED driver initialization failed!"); |
| 19 | + rmt_send = NULL; |
| 20 | + return; |
| 21 | + } |
| 22 | + rmtSetTick(rmt_send, 100); |
| 23 | + initialized = true; |
| 24 | + } |
| 25 | + |
| 26 | + int color[] = {green_val, red_val, blue_val}; // Color coding is in order GREEN, RED, BLUE |
| 27 | + int i = 0; |
| 28 | + for(int col=0; col<3; col++ ){ |
| 29 | + for(int bit=0; bit<8; bit++){ |
| 30 | + if((color[col] & (1<<(7-bit)))){ |
| 31 | + // HIGH bit |
| 32 | + led_data[i].level0 = 1; // T1H |
| 33 | + led_data[i].duration0 = 8; // 0.8us |
| 34 | + led_data[i].level1 = 0; // T1L |
| 35 | + led_data[i].duration1 = 4; // 0.4us |
| 36 | + }else{ |
| 37 | + // LOW bit |
| 38 | + led_data[i].level0 = 1; // T0H |
| 39 | + led_data[i].duration0 = 4; // 0.4us |
| 40 | + led_data[i].level1 = 0; // T0L |
| 41 | + led_data[i].duration1 = 8; // 0.8us |
| 42 | + } |
| 43 | + i++; |
| 44 | + } |
| 45 | + } |
| 46 | + rmtWrite(rmt_send, led_data, 24); |
| 47 | +} |
0 commit comments