gpio_simple_motor.h 335 B

12345678910111213
  1. #pragma once
  2. #include <gui/view.h>
  3. #include <furi_hal_gpio.h>
  4. #include <furi_hal_pwm.h>
  5. typedef struct FBP FBP;
  6. typedef struct GPIOSimpleMotor GPIOSimpleMotor;
  7. GPIOSimpleMotor* gpio_simple_motor_alloc(FBP* fbp);
  8. void gpio_simple_motor_free(GPIOSimpleMotor* motor_app);
  9. View* gpio_simple_motor_get_view(GPIOSimpleMotor* motor_app);