Collection of preconfigured presets for OpenIPC FPV Configurator application.
OpenIPC FPV Presets provide ready-to-use configurations for FPV camera systems. These presets help you quickly set up your camera with optimal settings for different scenarios, such as racing, freestyle, or long-range flying.
- Quickly apply optimized camera settings for different flying styles
- Easily share configurations with the community
- Standardized format for consistent configuration across devices
- Open the OpenIPC FPV Configurator application
- Navigate to the Presets tab
- Browse and select a preset from the list
- View the details to understand what the preset optimizes
- Click "Apply Preset" to configure your camera
The repository contains:
PRESET_INDEX.yaml: Auto-generated index of all presets with their metadata. This file is used by the OpenIPC Configurator to quickly discover and load available presets.presets/directory: Contains individual preset folders
Each preset is a self-contained folder under the presets/ directory that includes:
preset-config.yaml: Defines preset metadata, attributes, and modified files- Additional files referenced in the configuration (e.g.,
vtxmenu.ini)
Example Structure:
/
├── PRESET_INDEX.yaml
├── presets/
│ ├── high_power_fpv/
│ │ ├── preset-config.yaml
│ │ ├── vtxmenu.ini
The preset-config.yaml file defines:
- Metadata:
name,author,description, andcategory - Files: Specifies files and their key-value modifications
- Additional Files: Specifies supplementary files to be copied to the device
Example:
name: "High Power FPV"
author: "OpenIPC"
description: "Optimized settings for high-power FPV."
files:
wfb.yaml:
wireless.txpower: "30"
wireless.channel: "161"
majestic.yaml:
fpv.enabled: "true"
system.logLevel: "info"
additional_files:
- vtxmenu.iniWhen a preset is applied:
-
File Modifications:
- Settings are applied to configuration files on your device
-
Additional Files Transfer:
- Any specified additional files are copied to your device
-
Logs:
- Success or failure of the operations is logged
Want to share your optimal camera settings with the community? Follow these steps to contribute a preset.
- Click the "Fork" button at the top right of this repository
- Clone your forked repository to your local machine:
git clone https://github.com/YOUR-USERNAME/fpv-presets.git cd fpv-presets
- Run the provided creation script which will guide you through the process:
This interactive script will:
./create_preset.sh
- Ask for your preset details
- Create the necessary folder structure
- Generate a template
preset-config.yamlfile
-
Create a new folder inside the
presetsdirectory. Use a descriptive name for your preset:mkdir -p presets/my-awesome-preset
-
Inside your preset folder, create a
preset-config.yamlfile with the following structure:name: "My Awesome Preset" category: "Race" # Options: Race, Freestyle, Cinematic, Indoor, LongRange, etc. author: "Your Name" description: "A detailed description of what this preset is optimized for" status: "Official" # Options: Draft, Testing, Stable, Official (used by OpenIPC devs) tags: - mario - aio - daylight - lowlatency # Camera configuration settings files: majestic.yaml: nightMode: false bitrate: 4 wdr: false # Add all your camera configuration parameters here # Additional files to be copied to /etc on the device # These files must exist in your preset folder additional_files: - vtxmenu.ini
-
Add any additional files referenced in the
additional_filessection to your preset folder.
- Test your preset with the OpenIPC FPV Configurator to ensure it works as expected
- Verify that your
preset-config.yamlfile is properly formatted and contains all necessary settings
To test presets from your forked repository before submitting a pull request, you can configure the OpenIPC Configurator to use your fork:
-
Locate the
appsettings.yamlfile on your system:- Mac:
$HOME/Library/Application Support/OpenIPC_Config/Logs - Windows:
%APPDATA%\Local\OpenIPC_Config\Logs - Linux:
~/.config/openipc-configurator.log
- Mac:
-
Add your forked repository to the
Presetssection in theappsettings.yamlfile:"Presets": { "Repositories": [ { "Url": "https://github.com/OpenIPC/fpv-presets", "Branch": "master", "Description": "Official OpenIPC presets repository", "IsActive": true }, { "Url": "https://github.com/YOUR-USERNAME/fpv-presets", "Branch": "main", "Description": "My custom presets repository", "IsActive": true } ] }
-
Save the file and restart the OpenIPC Configurator
-
Your custom presets should now appear in the presets list within the application
-
Update the PRESET_INDEX.yaml file:
- In the official OpenIPC repository, this is automatically done by GitHub Actions
- For your forked repository, you may need to manually run the build script:
./build.sh
- Make sure to commit the updated PRESET_INDEX.yaml file with your changes
-
Commit your changes:
git add presets/my-awesome-preset/ git add PRESET_INDEX.yaml git commit -m "Add My Awesome Preset for XYZ camera" git push origin main -
Go to the original repository and click "Pull Request"
-
Fill out the PR template with details about your preset
- The
PRESET_INDEX.yamlfile is automatically generated - don't modify it manually - Each preset must include a complete
preset-config.yamlfile - Make sure your preset has a unique and descriptive name
- Include as much detail as possible in the description to help users understand when to use your preset
- The application first reads the
PRESET_INDEX.yamlfile to get a list of all available presets. - For each preset in the index, it then loads the corresponding preset folder.
- It parses each
preset-config.yamlto create aPresetobject with all its settings.
-
Preset List:
- Displays all available presets using a
ListBox. - Users can select a preset by its name.
- Displays all available presets using a
-
Details Panel:
- Displays metadata (
Name,Author,Description). - Lists file modifications and sensor file.
- Displays metadata (
-
"Apply Preset" Button:
- Applies the selected preset's changes to the remote device.
- Button is enabled only if a preset is selected.
- Dynamic Preset Management:
- Add/remove presets by simply editing the
presets/directory.
- Add/remove presets by simply editing the
- File Abstraction:
- Presets only define attributes; the app handles file locations.
- User-Friendly UI:
- Select a preset, view details, and apply it with a single click.
The preset indexer is a critical component that generates the PRESET_INDEX.yaml file used by the OpenIPC Configurator to discover and load available presets.
- Generates the
PRESET_INDEX.yamlfile in the root of the repository - Scans all presets and creates a centralized index
- Enables the OpenIPC Configurator to quickly load available presets without scanning individual directories
- Located at
tools/indexer/indexer.jsin the repository - Run using:
npx node tools/indexer/indexer.js - Automatically called by the
build.shscript during repository updates
- The indexer scans through all folders in the
presets/directory - It reads each
preset-config.yamlfile it finds - It extracts metadata (name, author, category, tags, etc.)
- It compiles all this information into a single
PRESET_INDEX.yamlfile in the root of the repository
When developing locally, you need to run the indexer after making changes:
# From the repository root
npx node tools/indexer/indexer.jsOr simply use the build script:
# From the repository root
./build.sh- The indexer must be run after any changes to preset files
- Never edit
PRESET_INDEX.yamlmanually as it will be overwritten by the indexer - The index file is crucial for the OpenIPC Configurator to discover presets
- In the official repository, GitHub Actions automatically runs the indexer when changes are pushed
- When working with a forked repository, you must manually run the indexer before submitting a pull request
- Add capability for users to add their own repositories
- Save current settings to a file
- Import/export preset configurations between devices

