Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
__pycache__/*
lastConnect.json
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
This is an **unofficial** API for the Anker SoundCore Life Headphones. I am not partnered with Soundcore or Anker in any way.

## Supported Devices
The Anker Soundcore Life Q30 is the only device I currently own, making me only able to test this one. However, other devices such as the Q35 should still work properly despite this. If not, feel free to report an Issue or send a Pull Request.
The Anker Soundcore Life Q30 is the only device I currently own, making me only able to test this one. However, other devices such as the Q35 and A2 should still work properly despite this. If not, feel free to report an Issue or send a Pull Request.

## Requirements
- Python 3 (both the API and the application)
Expand Down
4 changes: 2 additions & 2 deletions SoundcoreDesktop.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def removeImg():
text = {
"ANC Outdoor": "Reduce ambient sound on-the-go for quieter city spaces",
"ANC Trans": "Targets low-end frequencies like engine and road noise for serene journeys and commutes.",
"ANC INDOOR": "Eliminate voices and mid-frequency noise from coffee shaps and other inside spaces."
"ANC INDOOR": "Eliminate voices and mid-frequency noise from coffee shops and other inside spaces."
}

def forgetANCWegets():
Expand Down Expand Up @@ -170,7 +170,7 @@ def getAction(data=None):
label.configure(image=image)
Headphone.ANC("ANC Transport")
elif data == 2:
Modeinfo.configure(text="Eliminate voices and mid-frequency noise from\n coffee shaps and other inside spaces.")
Modeinfo.configure(text="Eliminate voices and mid-frequency noise from\n coffee shops and other inside spaces.")
image = tkinter.PhotoImage(file="Images//ANC//a3951_img_indoor.png")
image = image.subsample(3,3)
label.configure(image=image)
Expand Down