mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
Store and forwarding
This commit is contained in:
parent
8fe3197928
commit
55080fa91f
6 changed files with 47 additions and 4 deletions
|
|
@ -103,7 +103,6 @@ struct DetectionSensorConfig: View {
|
|||
|
||||
Section(header: Text("update.interval")) {
|
||||
Picker("Minimum time between detection broadcasts", selection: $minimumBroadcastSecs) {
|
||||
Text("Default").tag(0)
|
||||
ForEach(UpdateIntervals.allCases) { ui in
|
||||
Text(ui.description).tag(ui.rawValue)
|
||||
}
|
||||
|
|
@ -113,7 +112,7 @@ struct DetectionSensorConfig: View {
|
|||
.font(.caption)
|
||||
|
||||
Picker("State Broadcast Interval", selection: $stateBroadcastSecs) {
|
||||
Text("Default").tag(0)
|
||||
Text("Never").tag(0)
|
||||
ForEach(UpdateIntervals.allCases) { ui in
|
||||
Text(ui.description).tag(ui.rawValue)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue