Control 7-segment display with Flipper Zero

This commit is contained in:
Derek Jamison
2023-02-21 11:45:07 -05:00
parent 668fd49fe3
commit 53e18600aa
4 changed files with 367 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
App(
appid="GPIO_7Segment_Output",
name="GPIO 7-Segment Output",
apptype=FlipperAppType.EXTERNAL,
entry_point="gpio_7segment_app",
requires=["gui", "gpio"],
stack_size=2 * 1024,
fap_icon="gpio_7segment.png",
fap_category="Gpio",
)