mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 01:03:22 +00:00
15 lines
334 B
Text
15 lines
334 B
Text
|
App(
|
||
|
appid="temperature_sensor",
|
||
|
name="[GPIO] Temperature Sensor",
|
||
|
apptype=FlipperAppType.EXTERNAL,
|
||
|
entry_point="temperature_sensor_app",
|
||
|
cdefines=["APP_TEMPERATURE_SENSOR"],
|
||
|
requires=[
|
||
|
"gui",
|
||
|
],
|
||
|
stack_size=2 * 1024,
|
||
|
order=90,
|
||
|
fap_icon="temperature_sensor.png",
|
||
|
fap_category="GPIO",
|
||
|
)
|