12345678910111213141516171819 |
- #ifndef __NEXATX__
- #define __NEXATX__
- #include <stdint.h>
- typedef struct nexaCodeData_t {
- uint32_t data;
- bool send_dim;
- uint8_t dim_level;
- } nexaCodeData_t;
- void sendNexaCode(uint32_t data, bool send_dim, uint8_t dim_level);
- void sendNexaCodeStr(char *str);
- void initNexaTransmit();
- #endif
|