pwm_in.h 193 B

123456789101112131415161718
  1. #ifndef __PWM_IN_H
  2. #define __PWM_IN_H
  3. #include <stdbool.h>
  4. //
  5. void tim_pwm_in_init(void);
  6. //
  7. void tim_print_out_pwm(void);
  8. //
  9. bool get_button(void);
  10. //
  11. void set_button(bool state);
  12. #endif