rcwl_0516.h 401 B

12345678910111213141516171819202122
  1. #pragma once
  2. #include <furi.h>
  3. #include <furi_hal.h>
  4. #include <gui/gui.h>
  5. #include <notification/notification_messages.h>
  6. struct Rcwl_0516 {
  7. Gui* gui;
  8. ViewPort* view_port;
  9. FuriMessageQueue* event_queue;
  10. const GpioPin* input_pin;
  11. const GpioPin* output_pin;
  12. bool input_value;
  13. bool output_value;
  14. NotificationApp* notifications;
  15. };
  16. typedef struct Rcwl_0516 Rcwl_0516;