led.h 215 B

123456789101112
  1. #ifndef _TS27_LED_H
  2. #define _TS27_LED_H
  3. // LED_BUILTIN 13
  4. #if defined( ARDUINO_ARCH_ESP32 )
  5. #define LED_BUILTIN 23 // esp32 dev2 kit does not have LED
  6. #endif
  7. void LEDOff();
  8. void LEDOn();
  9. #endif // _TS27_LED_H