mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2026-08-22 05:59:49 +00:00
* 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>
24 lines
542 B
Plaintext
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",
|
|
)
|