mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
0917494a80
* Separate ibutton to its own module, add one_wire to f18 * Move onewire cli to a separate app Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
14 lines
273 B
Text
14 lines
273 B
Text
App(
|
|
appid="onewire",
|
|
name="1-Wire",
|
|
apptype=FlipperAppType.METAPACKAGE,
|
|
provides=["onewire_start"],
|
|
)
|
|
|
|
App(
|
|
appid="onewire_start",
|
|
apptype=FlipperAppType.STARTUP,
|
|
entry_point="onewire_on_system_start",
|
|
requires=["onewire"],
|
|
order=60,
|
|
)
|