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
11 changes: 11 additions & 0 deletions cli/broadlink_cli
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ parser.add_argument("--turnnloff", action="store_true", help="turn off nightligh
parser.add_argument("--switch", action="store_true", help="switch state from on to off and off to on")
parser.add_argument("--send", action="store_true", help="send command")
parser.add_argument("--sensors", action="store_true", help="check all sensors")
parser.add_argument("--sensorsJson", action="store_true", help="check all sensors and print in json format")
parser.add_argument("--learn", action="store_true", help="learn command")
parser.add_argument("--rflearn", action="store_true", help="rf scan learning")
parser.add_argument("--frequency", type=float, help="specify radiofrequency for learning")
Expand Down Expand Up @@ -88,6 +89,16 @@ if args.sensors:
data = dev.check_sensors()
for key in data:
print("{} {}".format(key, data[key]))
if args.sensorsJson:
data = dev.check_sensors()
print("{")
ftt = True
for key in data:
if not ftt:
print(",")
print(" \"{}\" : {}".format(key, data[key]))
ftt = False
print("}")
if args.send:
data = (
pulses_to_data(parse_pulses(args.data))
Expand Down
2 changes: 1 addition & 1 deletion protocol.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ You must obtain an authorisation key from the device before you can communicate.
|------|--------|
|0x00-0x03|00|
|0x04-0x12|A 15-digit value that represents this device. Broadlink's implementation uses the IMEI.|
|0x13|01|
|0x1e|0x01|
|0x14-0x2c|00|
|0x2d|0x01|
|0x30-0x7f|NULL-terminated ASCII string containing the device name|
Expand Down