Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Persisting last user selected Anr setting on connect #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions NoQCNoLife/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ import os.log
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {

// store last selected Anr mode
var lastSelectedAnrMode = Bose.AnrMode.OFF

var bt: Bt!
var statusItem: StatusItem!
var connectBtUserNotification: IOBluetoothUserNotification!
Expand Down Expand Up @@ -64,6 +67,9 @@ extension AppDelegate: BluetoothDelegate {
print("[BT]: Connected to \(productID.getProductName())")
#endif
self.statusItem.connected(productID)

// Persist last selected Anr mode on connect
noiseCancelModeSelected(lastSelectedAnrMode)
}

func onDisconnect() {
Expand All @@ -85,6 +91,11 @@ extension AppDelegate: BluetoothDelegate {
print("[AnrModeEvent]: \(mode?.toString() ?? "nil")")
#endif
self.statusItem.setNoiseCancelMode(mode)

// Update last selected Anr mode
if (mode != nil) {
lastSelectedAnrMode = mode!
}
}
}

Expand Down