Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
impankratov committed Apr 4, 2020
0 parents commit 2413e81
Show file tree
Hide file tree
Showing 5 changed files with 220 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Compiled python modules.
*.pyc

# Setuptools distribution folder.
/dist/

# Python egg metadata, regenerated from source files by setuptools.
/*.egg-info
114 changes: 114 additions & 0 deletions .vim/.ropeproject/config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
# The default ``config.py``
# flake8: noqa


def set_prefs(prefs):
"""This function is called before opening the project"""

# Specify which files and folders to ignore in the project.
# Changes to ignored resources are not added to the history and
# VCSs. Also they are not returned in `Project.get_files()`.
# Note that ``?`` and ``*`` match all characters but slashes.
# '*.pyc': matches 'test.pyc' and 'pkg/test.pyc'
# 'mod*.pyc': matches 'test/mod1.pyc' but not 'mod/1.pyc'
# '.svn': matches 'pkg/.svn' and all of its children
# 'build/*.o': matches 'build/lib.o' but not 'build/sub/lib.o'
# 'build//*.o': matches 'build/lib.o' and 'build/sub/lib.o'
prefs['ignored_resources'] = ['*.pyc', '*~', '.ropeproject',
'.hg', '.svn', '_svn', '.git', '.tox']

# Specifies which files should be considered python files. It is
# useful when you have scripts inside your project. Only files
# ending with ``.py`` are considered to be python files by
# default.
# prefs['python_files'] = ['*.py']

# Custom source folders: By default rope searches the project
# for finding source folders (folders that should be searched
# for finding modules). You can add paths to that list. Note
# that rope guesses project source folders correctly most of the
# time; use this if you have any problems.
# The folders should be relative to project root and use '/' for
# separating folders regardless of the platform rope is running on.
# 'src/my_source_folder' for instance.
# prefs.add('source_folders', 'src')

# You can extend python path for looking up modules
# prefs.add('python_path', '~/python/')

# Should rope save object information or not.
prefs['save_objectdb'] = True
prefs['compress_objectdb'] = False

# If `True`, rope analyzes each module when it is being saved.
prefs['automatic_soa'] = True
# The depth of calls to follow in static object analysis
prefs['soa_followed_calls'] = 0

# If `False` when running modules or unit tests "dynamic object
# analysis" is turned off. This makes them much faster.
prefs['perform_doa'] = True

# Rope can check the validity of its object DB when running.
prefs['validate_objectdb'] = True

# How many undos to hold?
prefs['max_history_items'] = 32

# Shows whether to save history across sessions.
prefs['save_history'] = True
prefs['compress_history'] = False

# Set the number spaces used for indenting. According to
# :PEP:`8`, it is best to use 4 spaces. Since most of rope's
# unit-tests use 4 spaces it is more reliable, too.
prefs['indent_size'] = 4

# Builtin and c-extension modules that are allowed to be imported
# and inspected by rope.
prefs['extension_modules'] = []

# Add all standard c-extensions to extension_modules list.
prefs['import_dynload_stdmods'] = True

# If `True` modules with syntax errors are considered to be empty.
# The default value is `False`; When `False` syntax errors raise
# `rope.base.exceptions.ModuleSyntaxError` exception.
prefs['ignore_syntax_errors'] = False

# If `True`, rope ignores unresolvable imports. Otherwise, they
# appear in the importing namespace.
prefs['ignore_bad_imports'] = False

# If `True`, rope will insert new module imports as
# `from <package> import <module>` by default.
prefs['prefer_module_from_imports'] = False

# If `True`, rope will transform a comma list of imports into
# multiple separate import statements when organizing
# imports.
prefs['split_imports'] = False

# If `True`, rope will remove all top-level import statements and
# reinsert them at the top of the module when making changes.
prefs['pull_imports_to_top'] = True

# If `True`, rope will sort imports alphabetically by module name instead
# of alphabetically by import statement, with from imports after normal
# imports.
prefs['sort_imports_alphabetically'] = False

# Location of implementation of
# rope.base.oi.type_hinting.interfaces.ITypeHintingFactory In general
# case, you don't have to change this value, unless you're an rope expert.
# Change this value to inject you own implementations of interfaces
# listed in module rope.base.oi.type_hinting.providers.interfaces
# For example, you can add you own providers for Django Models, or disable
# the search type-hinting in a class hierarchy, etc.
prefs['type_hinting_factory'] = (
'rope.base.oi.type_hinting.factory.default_type_hinting_factory')


def project_opened(project):
"""This function is called after opening the project"""
# Do whatever you like here!
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from setuptools import setup

setup(name='sony-headphones-control',
version='0.1',
description='',
url='',
author='',
author_email='',
license='',
packages=['sony-headphones-control'],
install_requires=[
'PyBluez',
],
zip_safe=False)
66 changes: 66 additions & 0 deletions sony-headphones-control/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
#!/usr/bin/env python3

import sys
import bluetooth
import control

addr = None
mode = None

if len(sys.argv) < 3:
print("Invalid arguments, please specify BT address and desired mode")
sys.exit(0)
else:
addr = sys.argv[1]
mode = sys.argv[2]
print("Searching for {}...".format(addr))

uuid = "96cc203e-5068-46ad-b32d-e316f5e069ba"
service_matches = bluetooth.find_service(uuid=uuid, address=addr)

if len(service_matches) == 0:
print("Couldn't find the device service.")
sys.exit(0)

first_match = service_matches[0]
port = first_match["port"]
host = first_match["host"]

ambientSoundBytes = None

if mode == 'noise-cancelling':
# Noise cancelling ?
ambientSoundBytes = control.getAmbientSound(True, 2, 0, False)

elif mode == 'wind-cancelling':
# Wind cancelling ?
ambientSoundBytes = control.getAmbientSound(True, 1, 0, False)

elif mode == 'ambient-sound':
# Ambient sound
ambientSoundBytes = control.getAmbientSound(True, 0, 19, False)

elif mode == 'disable':
# Disabled ambient sound control
ambientSoundBytes = control.getAmbientSound(False, 0, 0, False)

else:
print('Unknown mode, exiting')
sys.exit(0)

print("Connecting to {} to enable {}".format(host, mode))

# Create the client socket
sock = bluetooth.BluetoothSocket(bluetooth.RFCOMM)
sock.connect((host, port))

# print('ambientSoundBytes', ambientSoundBytes)
packetBytes = control.getPacket(ambientSoundBytes)
# print('packetBytes', packetBytes)
packetCrcBytes = control.getCrcPacket(packetBytes)
# print('packetCrcBytes', packetCrcBytes)
result = bytes(packetCrcBytes)
# print('result', result)

sock.send(result)
sock.close()
18 changes: 18 additions & 0 deletions sony-headphones-control/control.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
def getAmbientSound(enabled: bool, noiseCancelling: int, volume: int, voice: bool):
enabledValue = 16 if enabled else 0
return [0, 0, 0, 8, 104, 2, enabledValue, 2, noiseCancelling, 1, voice, volume]

def getPacket(data: list):
packetPrefix = [12, 0]
packet = packetPrefix + data
return packet

def getCrcPacket(packet: list):
crc = 0

for b in packet:
crc += b

crcPacket = [62] + packet + [crc] + [60]

return crcPacket

0 comments on commit 2413e81

Please sign in to comment.