mirror of
https://github.com/HendrikRauh/dmx-interface.git
synced 2026-04-07 10:22:21 +00:00
15 lines
194 B
C
15 lines
194 B
C
#pragma once
|
|
|
|
#include "esp_dmx.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void init_dmx(dmx_port_t port, int pin_tx, int pin_rx);
|
|
|
|
void send_dmx(dmx_port_t port);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|