HELP TO ADD NEW PLUGINS

how can I add more plugins to my flipper, I really don’t know

1 Like

This is a easy one.

  1. change to a directory, f.ex. mkdir work; cd ~/work
  2. Clone Firmware with git clone --recursive https://github.com/flipperdevices/flipperzero-firmware.git
  3. cd ~/work/flipperzero-firmware
  4. Build firmware with ./fbt
  5. cd ~/work/flipperzero-firmware/applications-user

Now open any editor or IDE and write your plugin.

Compile from the source in cd ~/work/flipper-firmware/ with the command ./fbt fap_myNewPlugin (./ftb fap_[AppID from application.fam]).
See also

1 Like