mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-22 04:41:36 +03:00
42 lines
1.2 KiB
C
42 lines
1.2 KiB
C
#include "../../lightmeter.h"
|
|
|
|
void lightmeter_scene_help_on_enter(void* context) {
|
|
LightMeterApp* app = context;
|
|
|
|
FuriString* temp_str;
|
|
temp_str = furi_string_alloc();
|
|
furi_string_printf(
|
|
temp_str,
|
|
"App works with BH1750/MAX44009\nambient light sensor\nconnected via I2C interface\n\n");
|
|
furi_string_cat(temp_str, "\e#Pinout:\r\n");
|
|
furi_string_cat(
|
|
temp_str,
|
|
" VCC: 3.3V\r\n"
|
|
" GND: GND\r\n"
|
|
" SDA: 15 [C1]\r\n"
|
|
" SCL: 16 [C0]\r\n");
|
|
furi_string_cat(temp_str, "\r\n\e#Resolutions:\r\n");
|
|
furi_string_cat(
|
|
temp_str,
|
|
"Low: 4.0lx (16ms, 0-54k)\r\n"
|
|
"High: 1.0lx (120ms, 0-54k)\r\n"
|
|
"High2: 0.5lx (120ms, 0-27k)\r\n");
|
|
|
|
widget_add_text_scroll_element(app->widget, 0, 0, 128, 64, furi_string_get_cstr(temp_str));
|
|
furi_string_free(temp_str);
|
|
|
|
view_dispatcher_switch_to_view(app->view_dispatcher, LightMeterAppViewHelp);
|
|
}
|
|
|
|
bool lightmeter_scene_help_on_event(void* context, SceneManagerEvent event) {
|
|
UNUSED(context);
|
|
UNUSED(event);
|
|
return false;
|
|
}
|
|
|
|
void lightmeter_scene_help_on_exit(void* context) {
|
|
LightMeterApp* app = context;
|
|
|
|
widget_reset(app->widget);
|
|
}
|