PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

28 行
426B

  1. /**
  2. * DmxSimple - A simple interface to DMX.
  3. *
  4. * Copyright (c) 2008-2009 Peter Knight, Tinker.it! All rights reserved.
  5. */
  6. #ifndef DmxSimple_h
  7. #define DmxSimple_h
  8. #include <inttypes.h>
  9. #if RAMEND <= 0x4FF
  10. #define DMX_SIZE 128
  11. #else
  12. #define DMX_SIZE 512
  13. #endif
  14. class DmxSimpleClass
  15. {
  16. public:
  17. void maxChannel(int);
  18. void write(int, uint8_t);
  19. void usePin(uint8_t);
  20. };
  21. extern DmxSimpleClass DmxSimple;
  22. #endif