You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there an existing issue for this feature request?
I have searched the existing issues
The problem
apps like "Flight count" elrs-setup, flight-history need to keep data for their operation
the data is related to specific model, but currently cannot be kept there
over the year workaround where developed:
keep flight number on GV9
keep history data on csv file
keep flight-controller name on csv file
Describe the solution you'd like
Implement key/value, that will be save and retrieve on the yaml file (they do NOT need to be kept on the memory)
offer-shmuely
changed the title
allow to keep key/value strings in model yaml for lua apps
allow lua apps to keep key/value data in model yaml
Jan 5, 2025
Is there an existing issue for this feature request?
The problem
apps like "Flight count" elrs-setup, flight-history need to keep data for their operation
the data is related to specific model, but currently cannot be kept there
over the year workaround where developed:
Describe the solution you'd like
Implement key/value, that will be save and retrieve on the yaml file (they do NOT need to be kept on the memory)
write apps properties.
model.appPropertySet(appName, key, value)
Parameters
retrieve app property by name.
app.appPropertyGet(appName, key)
Parameters
Return: the value
remove all app properties .
app.appPropertyDelete(appName)
Parameters
Return: the value
Samples:
The text was updated successfully, but these errors were encountered: