mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
25 lines
503 B
Text
25 lines
503 B
Text
|
App(
|
||
|
appid="lightmeter",
|
||
|
name="[BH1750] Lightmeter",
|
||
|
apptype=FlipperAppType.EXTERNAL,
|
||
|
entry_point="lightmeter_app",
|
||
|
cdefines=["APP_LIGHTMETER"],
|
||
|
requires=[
|
||
|
"gui",
|
||
|
],
|
||
|
stack_size=1 * 1024,
|
||
|
order=90,
|
||
|
fap_icon="lightmeter.png",
|
||
|
fap_category="GPIO",
|
||
|
fap_private_libs=[
|
||
|
Lib(
|
||
|
name="BH1750",
|
||
|
cincludes=["."],
|
||
|
sources=[
|
||
|
"BH1750.c",
|
||
|
],
|
||
|
),
|
||
|
],
|
||
|
fap_icon_assets="icons",
|
||
|
)
|