how can I add more plugins to my flipper, I really don’t know
1 Like
This is a easy one.
- change to a directory, f.ex.
mkdir work; cd ~/work
- Clone Firmware with
git clone --recursive https://github.com/flipperdevices/flipperzero-firmware.git
cd ~/work/flipperzero-firmware
- Build firmware with
./fbt
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