Search found 2 matches

by yoyo50420
Thu Sep 25, 2025 8:56 am
Forum: General Discussion
Topic: ESP32-WROOM-32E RMT Usage
Replies: 2
Views: 413

Re: ESP32-WROOM-32E RMT Usage




rmt_transmit(tx_channels[0], copy_encoder, your_raw_rmt_symbols, sizeof (your_raw_rmt_symbols), &tx_config)


Seems like you want to transmit "items", not "your_raw_rmt_symbols", here.


Thanks for reply.
It was the typo.
I am transmiting "items".
And the result remains the same.
by yoyo50420
Wed Sep 24, 2025 4:07 am
Forum: General Discussion
Topic: ESP32-WROOM-32E RMT Usage
Replies: 2
Views: 413

ESP32-WROOM-32E RMT Usage

Hi
I am trying to use RMT to generate signal.
Below is my code:
void RMT1 () {
rmt_channel_handle_t tx_channels[2] = {NULL};
int tx_gpio_number[2] = {4, 4};

rmt_copy_encoder_config_t copy_config = {};
rmt_encoder_handle_t copy_encoder = NULL;
ESP_ERROR_CHECK(rmt_new_copy_encoder(&copy_config ...

Go to advanced search