-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from jlusiardi/master
Sync
- Loading branch information
Showing
12 changed files
with
275 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#!/usr/bin/env python3 | ||
|
||
# | ||
# Copyright 2018 Joachim Lusiardi | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
import argparse | ||
import os | ||
|
||
|
||
def setup_args_parser(): | ||
parser = argparse.ArgumentParser(description='HomeKit initialize storage') | ||
parser.add_argument('-f', action='store', required=True, dest='file', help='HomeKit pairing data file') | ||
return parser.parse_args() | ||
|
||
|
||
if __name__ == '__main__': | ||
args = setup_args_parser() | ||
if not os.path.isfile(args.file): | ||
try: | ||
with open(args.file, 'w') as fp: | ||
fp.write('{}') | ||
except PermissionError: | ||
print('Permission denied to create file "{f}".'.format(f=args.file)) | ||
else: | ||
print('File "{f}" already exists.'.format(f=args.file)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# | ||
# Copyright 2018 Joachim Lusiardi | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
|
||
class _IpStatusFlags(object): | ||
""" | ||
Data taken form table 5-9 page 70 | ||
""" | ||
|
||
def __getitem__(self, item): | ||
i = int(item) | ||
result = [] | ||
if i & 0x01: | ||
result.append('Accessory has not been paired with any controllers.') | ||
i = i - 0x01 | ||
else: | ||
result.append('Accessory has been paired.') | ||
if i & 0x02: | ||
result.append('Accessory has not been configured to join a Wi-Fi network.') | ||
i = i - 0x02 | ||
if i & 0x04: | ||
result.append('A problem has been detected on the accessory.') | ||
i = i - 0x04 | ||
if i == 0: | ||
return ' '.join(result) | ||
else: | ||
raise KeyError('Item {item} not found'.format(item=item)) | ||
|
||
|
||
IpStatusFlags = _IpStatusFlags() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.