Files
f11ebf4b9c Added examples for GPS service, Network service, canvas_get_buffer example (#1047)
* RPC GPS: add stream example, one-shot example

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* RPC network: add examples

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* GUI: add example_canvas_buffer with pixel-collision demo

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

---------

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
2026-07-28 13:48:22 +03:00

24 lines
542 B
Plaintext

App(
appid="example_gps_stream",
name="[RPC] GPS Stream",
apptype=FlipperAppType.EXTERNAL,
entry_point="gps_stream_app",
requires=["gui"],
stack_size=2 * 1024,
fap_icon="gps_10px.png",
fap_category="Examples",
fap_author="@apfxtech",
)
App(
appid="example_gps_click",
name="[RPC] GPS Click",
apptype=FlipperAppType.EXTERNAL,
entry_point="gps_click_app",
requires=["gui"],
stack_size=2 * 1024,
fap_icon="gps_10px.png",
fap_category="Examples",
fap_author="@apfxtech",
)