2017-11-25 21:14:34 +01:00
|
|
|
#!/usr/bin/env python
|
2017-01-11 01:55:02 +01:00
|
|
|
|
|
|
|
import broadlink
|
|
|
|
import time
|
|
|
|
import argparse
|
|
|
|
|
|
|
|
parser = argparse.ArgumentParser(fromfile_prefix_chars='@');
|
|
|
|
parser.add_argument("--timeout", type=int, default=5, help="timeout to wait for receiving discovery responses")
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
2019-05-22 07:28:02 +02:00
|
|
|
print("Discovering...")
|
2017-01-11 01:55:02 +01:00
|
|
|
devices = broadlink.discover(timeout=args.timeout)
|
|
|
|
for device in devices:
|
|
|
|
if device.auth():
|
2019-05-22 07:28:02 +02:00
|
|
|
print("###########################################")
|
|
|
|
print(device.type)
|
|
|
|
print("# broadlink_cli --type {} --host {} --mac {}".format(hex(device.devtype), device.host[0], ''.join(format(x, '02x') for x in device.mac)))
|
|
|
|
print("Device file data (to be used with --device @filename in broadlink_cli) : ")
|
|
|
|
print("{} {} {}".format(hex(device.devtype), device.host[0], ''.join(format(x, '02x') for x in device.mac)))
|
2017-11-25 21:04:10 +01:00
|
|
|
if hasattr(device, 'check_temperature'):
|
2019-05-22 07:28:02 +02:00
|
|
|
print("temperature = {}".format(device.check_temperature()))
|
|
|
|
print("")
|
2017-01-11 01:55:02 +01:00
|
|
|
else:
|
2019-05-22 07:28:02 +02:00
|
|
|
print("Error authenticating with device : {}".format(device.host))
|