Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Ooggle/FlipperAnimationManager
Visualize and manage your Flipper Zero animations directly from your computer - Flipper Animation Manager
https://github.com/Ooggle/FlipperAnimationManager
flipper-zero flipperzero
Last synced: 7 days ago
JSON representation
Visualize and manage your Flipper Zero animations directly from your computer - Flipper Animation Manager
- Host: GitHub
- URL: https://github.com/Ooggle/FlipperAnimationManager
- Owner: Ooggle
- License: mit
- Created: 2022-12-26T14:43:16.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-11-16T17:55:40.000Z (12 months ago)
- Last Synced: 2024-02-13T21:34:55.896Z (9 months ago)
- Topics: flipper-zero, flipperzero
- Language: C++
- Homepage:
- Size: 2.57 MB
- Stars: 350
- Watchers: 13
- Forks: 13
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- fucking-awesome-flipperzero - `Flipper Animation Manager` Visualize and manage animations directly from your computer.
- awesome-flipperzero - `Flipper Animation Manager` Visualize and manage animations directly from your computer.
- awesome-flipperzero-withModules - `Flipper Animation Manager` Visualize and manage animations directly from your computer.
README
![banner](.github/banner.png)
Visualize and manage your Flipper Zero animations directly from your computer.
Preview
# Installation
Detailed Installation Guide here### Builds are available for Windows, Linux and Mac OS. Download the latest version for your distribution from the Releases.
# Usage
See wiki for basic usage guide
# Build from sources
## Linux and Mac OS
Install dependencies:
```bash
# On Linux
sudo apt install libsdl2-dev g++ make# On Mac OS (be sure to have g++ and make installed, via XCode for example)
brew install sdl2
```Clone the repository:
```bash
git clone https://github.com/Ooggle/FlipperAnimationManager.git && cd FlipperAnimationManager
```Building the project:
```bash
make
```The binary will be located in `build` folder.
## Windows
## Via Visual Studio
Clone the project or download a zipped copy of it.
Download the SDL2 library from [the releases](https://github.com/libsdl-org/SDL/releases) (the sdl2-devel-2.xx.x-vc.zip archive) and extract it somewhere in the computer.
Open the `FlipperAM.sln` file with Visual Studio.
Then, go to project settings and replace any %SDL2_DIR% you find in the compiler and linker section by the path of the SDL2 directory previously downloaded. An alternative method is to directly open the FlipperAM.vcxproj file and replace by hand every %SDL2_DIR% by the path of the SDL2 directory.
⚠️ If it's not done correctly, the build won't work.Select the Release configuration and build the project, the output binary will be located in `Release` folder.
Note: You will have to get a copy of `SDL2.dll` from the SDL repository (it's in the SDL2-2.x.x-win32-x64.zip archive) and have it alongside the .exe in order to run the application.
## Via MSYS2/MINGW
Install the following dependencies via the command line tool:
```bash
pacman -S mingw-w64-i686-SDL2
```Clone the repository:
```bash
git clone https://github.com/Ooggle/FlipperAnimationManager.git && cd FlipperAnimationManager
```Building the project:
```bash
make
```The binary will be located in `build` folder.
# Contributing
Pull requests are welcome. Feel free to open an issue if you want to request/discuss other features.
## Stargazers over time
[![Stargazers over time](https://starchart.cc/Ooggle/FlipperAnimationManager.svg)](https://starchart.cc/Ooggle/FlipperAnimationManager)