https://github.com/danielperna84/ha-philipsjs
Wrapper library to integrate Philips TVs with jointSPACE API into Home-Assistant
https://github.com/danielperna84/ha-philipsjs
home-assistant philips
Last synced: 8 months ago
JSON representation
Wrapper library to integrate Philips TVs with jointSPACE API into Home-Assistant
- Host: GitHub
- URL: https://github.com/danielperna84/ha-philipsjs
- Owner: danielperna84
- License: mit
- Created: 2016-11-02T20:38:39.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-11-13T18:00:36.000Z (over 1 year ago)
- Last Synced: 2025-04-08T19:24:16.683Z (about 1 year ago)
- Topics: home-assistant, philips
- Language: Python
- Size: 325 KB
- Stars: 20
- Watchers: 4
- Forks: 25
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ha-philipsjs
Wrapper library to integrate Philips TVs with jointSPACE API into Home-Assistant
This is just being used to wrap the API into a nice object. Nothing fancy.
* Support version 1 and 6 of the jointspace API
* Support pairing process
* Python typing information on endpoints
* NotifyChange support for supported tv's
Print system data
```python
from haphilipsjs import PhilipsTV
tv = PhilipsTV("tv2.example.com", 6)
tv.getSystem()
print(tv.system)
```
Pairing with TV
```python
from haphilipsjs import PhilipsTV
tv = PhilipsTV("tv2.example.com", 6)
tv.getSystem()
state = tv.pairRequest("my_test_app", "My Test App", "mox", "OSX", "native")
pin = input("Enter pin:")
username, password = tv.pairGrant(state, pin)
print(username)
print(password)
```
Command line utility:
```
usage: python -m haphilipsjs [-h] [-d] -i HOST -a API [-u USERNAME] [-p PASSWORD] {status,monitor,ambilight,pair} ...
positional arguments:
{status,monitor,ambilight,pair}
commands
status Show current tv status
monitor Monitor current tv status
ambilight Control ambilight
pair Pair with tv
optional arguments:
-h, --help show this help message and exit
-d, --debug Debug output
-i HOST, --host HOST
-a API, --api API
-u USERNAME, --username USERNAME
Username
-p PASSWORD, --password PASSWORD
Password
```