ESP32Tone.h 385 B

12345678910111213141516171819
  1. /*
  2. * ESP32Tone.h
  3. *
  4. * Created on: Sep 23, 2018
  5. * Author: hephaestus
  6. */
  7. #ifndef LIBRARIES_ESP32SERVO_SRC_ESP32TONE_H_
  8. #define LIBRARIES_ESP32SERVO_SRC_ESP32TONE_H_
  9. #include "ESP32PWM.h"
  10. void tone(int pin,unsigned int frequency);
  11. void tone(int pin, unsigned int frequency, unsigned long duration);
  12. void noTone(int pin);
  13. #endif /* LIBRARIES_ESP32SERVO_SRC_ESP32TONE_H_ */