gpio_app_i.h 586 B

12345678910111213141516171819202122232425262728
  1. #pragma once
  2. #include "gpio_app.h"
  3. #include "gpio_item.h"
  4. #include "scenes/gpio_scene.h"
  5. #include <gui/gui.h>
  6. #include <gui/view_dispatcher.h>
  7. #include <gui/scene_manager.h>
  8. #include <notification/notification-messages.h>
  9. #include <gui/modules/variable-item-list.h>
  10. #include "views/gpio_test.h"
  11. struct GpioApp {
  12. Gui* gui;
  13. ViewDispatcher* view_dispatcher;
  14. SceneManager* scene_manager;
  15. NotificationApp* notifications;
  16. VariableItemList* var_item_list;
  17. GpioTest* gpio_test;
  18. };
  19. typedef enum {
  20. GpioAppViewVarItemList,
  21. GpioAppViewGpioTest,
  22. } GpioAppView;