nexaTransmit.h 308 B

12345678910111213141516171819
  1. #ifndef __NEXATX__
  2. #define __NEXATX__
  3. #include <stdint.h>
  4. typedef struct nexaCodeData_t {
  5. uint32_t data;
  6. bool send_dim;
  7. uint8_t dim_level;
  8. } nexaCodeData_t;
  9. void sendNexaCode(uint32_t data, bool send_dim, uint8_t dim_level);
  10. void sendNexaCodeStr(char *str);
  11. void initNexaTransmit();
  12. #endif