18 lines
550 B
Plaintext
Raw Normal View History

2023-11-25 15:05:52 -06:00
App(
appid="ws2812b_tester_app",
2023-12-06 18:30:15 -06:00
name="WS2812B LED Tester",
2023-11-25 15:05:52 -06:00
apptype=FlipperAppType.EXTERNAL,
entry_point="ws2812b_led_tester_app",
fap_version=(1, 9),
2023-11-25 15:05:52 -06:00
stack_size=4 * 1024,
requires=[
"gui",
],
order=10,
fap_icon="app.png",
fap_category="GPIO",
2023-11-25 18:30:52 -06:00
fap_author="jamisonderek",
2023-11-25 15:05:52 -06:00
fap_description="WS2812B LED Tester App. This is intended to test that WS2812B LEDs are functioning correctly.",
2023-11-25 18:30:52 -06:00
fap_weburl="https://github.com/jamisonderek/flipper-zero-tutorials/tree/main/gpio/ws2812b_tester",
2023-11-25 15:05:52 -06:00
)