mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 13:33:06 +00:00
58 lines
1.3 KiB
C
58 lines
1.3 KiB
C
#pragma once
|
|
|
|
#include <furi.h>
|
|
#include <furi_hal.h>
|
|
|
|
#include <gui/gui.h>
|
|
#include <gui/view.h>
|
|
#include <gui/view_dispatcher.h>
|
|
#include <gui/scene_manager.h>
|
|
|
|
#include "gui/views/main_view.h"
|
|
|
|
#include <gui/modules/widget.h>
|
|
#include <gui/modules/variable_item_list.h>
|
|
|
|
#include "gui/scenes/config/lightmeter_scene.h"
|
|
#include <notification/notification_messages.h>
|
|
|
|
#include "lightmeter_config.h"
|
|
#include <BH1750.h>
|
|
|
|
typedef struct {
|
|
int iso;
|
|
int nd;
|
|
int aperture;
|
|
int dome;
|
|
int backlight;
|
|
int lux_only;
|
|
} LightMeterConfig;
|
|
|
|
typedef struct {
|
|
Gui* gui;
|
|
SceneManager* scene_manager;
|
|
ViewDispatcher* view_dispatcher;
|
|
MainView* main_view;
|
|
VariableItemList* var_item_list;
|
|
LightMeterConfig* config;
|
|
NotificationApp* notifications;
|
|
Widget* widget;
|
|
} LightMeterApp;
|
|
|
|
typedef enum {
|
|
LightMeterAppViewMainView,
|
|
LightMeterAppViewConfigView,
|
|
LightMeterAppViewVarItemList,
|
|
LightMeterAppViewAbout,
|
|
LightMeterAppViewHelp,
|
|
} LightMeterAppView;
|
|
|
|
typedef enum {
|
|
LightMeterAppCustomEventConfig,
|
|
LightMeterAppCustomEventHelp,
|
|
LightMeterAppCustomEventAbout,
|
|
} LightMeterAppCustomEvent;
|
|
|
|
void lightmeter_app_set_config(LightMeterApp* context, LightMeterConfig* config);
|
|
|
|
void lightmeter_app_i2c_callback(LightMeterApp* context);
|