-
Notifications
You must be signed in to change notification settings - Fork 393
/
Copy pathRemoteControl.json
965 lines (965 loc) · 35.7 KB
/
RemoteControl.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
{
"$schema": "https://raw.githubusercontent.com/rdkcentral/rdkservices/main/Tools/json_generator/schemas/interface.schema.json",
"jsonrpc": "2.0",
"info": {
"title": "RemoteControl API",
"class": "RemoteControl",
"description": "The `RemoteControl` plugin provides the ability to pair and IR-program remote controls."
},
"common": {
"$ref": "../common/common.json"
},
"definitions": {
"version": {
"summary": "The API version number",
"type": "integer",
"example": 1
},
"netType": {
"summary": "The type of network",
"type": "integer",
"example": 21
},
"netTypeSupported": {
"summary": "a list of the network types that the STB supports, Note that some devices may only support one network type.",
"type": "array",
"items": {
"type":"integer",
"example": [21]
}
},
"pairingState": {
"summary": "The current overall pairing state of the specified network",
"type": "string",
"enum": [
"INITIALISING",
"IDLE",
"SEARCHING",
"PAIRING",
"COMPLETE",
"FAILED"
],
"example": "COMPLETE"
},
"irProgState": {
"summary": "The current state of the IR code programming request to the remote",
"type": "string",
"enum": [
"IDLE",
"WAITING",
"COMPLETE",
"FAILED"
],
"example": "COMPLETE"
},
"remoteData": {
"summary": "Remote information for each paired remote control. This array may be empty, if there are no paired remotes on the specified network.",
"type": "array",
"items": {
"type": "object",
"properties": {
"macAddress": {
"$ref": "#/definitions/macAddress"
},
"connected": {
"summary": "`true` if the remote is connected, otherwise `false`",
"type": "boolean",
"example": true
},
"name": {
"summary": "The remote name",
"type": "string",
"example": "P073 SkyQ EC201"
},
"remoteId": {
"summary": "This integer is the remote ID number, assigned by the network",
"type": "integer",
"example": 1
},
"deviceId": {
"summary": "The device ID number that is assigned by the network.",
"type": "integer",
"example": 65
},
"make": {
"summary": "The manufacturer name of the remote",
"type": "string",
"example": "Omni Remotes"
},
"model": {
"summary": "The remote model name",
"type": "string",
"example": "EC201"
},
"hwVersion": {
"summary": "The remote hardware revision",
"type": "string",
"example": "201.2.0.0"
},
"swVersion": {
"summary": "The remote software revision",
"type": "string",
"example": "1.0.0"
},
"btlVersion": {
"summary": "The remote bootloader revision",
"type": "string",
"example": "2.0"
},
"serialNumber": {
"summary": "The remote serial number",
"type": "string",
"example": "18464408B544"
},
"batteryPercent": {
"summary": "The current remote battery level as a percentage (0 to 100)",
"type": "integer",
"example": 82
},
"tvIRCode": {
"summary": "The current TV IR code that the remote is programmed with. If the remote is not presently programmed with an IR code or if the TV IR code is not known, then this value is not returned.",
"type": "string",
"example": 1
},
"ampIRCode": {
"summary": "The current AVR/AMP IR code that the remote is programmed with. If the remote is not presently programmed with an IR code or if the AVR/AMP IR code is unknown, then this value is not returned",
"type": "string",
"example": 1
},
"wakeupKeyCode": {
"summary": "The Linux key code of the last button to be pressed on the remote before wakeup from deepsleep",
"type": "integer",
"example": 65
},
"wakeupConfig": {
"summary": "The current deepsleep wakeup key configuration of the remote. (possible values: all - all keys on the remote will wake target from deepsleep, none - no keys on the remote will wake target from deepsleep, custom - the custom list of Linux key codes provided in wakeupCustomList will wake target from deepsleep)",
"type": "string",
"enum": [
"all",
"none",
"custom"
],
"example": "custom"
},
"wakeupCustomList": {
"summary": "will only be present if wakeupConfig is custom, this parameter will list the linux keycodes that can wake the target from deepsleep",
"type": "string",
"example":"[3,1]"
},
"upgradeSessionId": {
"$ref": "#/definitions/upgradeSessionId"
}
},
"required": [
"macAddress",
"connected",
"remoteId"
]
}
},
"avDevType": {
"summary": "Whether the device is a video (TV) or audio (AVR, amplifier, or soundbar) device",
"type": "string",
"enum": [
"TV",
"AMP"
],
"example": "AMP"
},
"manufacturer": {
"summary": "The manufacturer name of the AV device",
"type": "string",
"example": "Samsung"
},
"model": {
"summary": "The model name of the AV device",
"type": "string",
"example": "AH5901068L"
},
"remoteId": {
"summary": "The remote ID of the target remote on the specified network",
"type": "integer",
"example": 1
},
"macAddress": {
"summary": "The MAC address of the remote in hex-colon format",
"type": "string",
"example": "E8:1C:FD:9A:07:1E"
},
"upgradeSessionId": {
"summary": "The unique identifier for the firmware update session, generated by the underlying RDK stack",
"type": "string",
"example": "1b11359e-23fe-4f2f-9ba8-cc19b87203cf"
},
"firmwareUpdateStatus": {
"type": "object",
"properties": {
"macAddress": {
"$ref": "#/definitions/macAddress"
},
"percentComplete": {
"summary": "The estimated percentage of the firmware update that has completed in percent (0 - 100)",
"type": "integer",
"example": 25
},
"upgradeState": {
"summary": "The state of the firmware update session (`idle`, `pending`, `success`, `error`, `canceled`, `invalid`)",
"type": "string",
"example": "success"
},
"error": {
"summary": "This optional object is included only if the return error string from the underlying RDK stack exists",
"type": "string",
"example": "abort"
}
},
"required": ["macAddress", "percentComplete", "upgradeState", "error"]
},
"macAddressList": {
"summary": "A list of MAC addresses",
"type": "array",
"items": {
"$ref": "#/definitions/macAddress"
}
},
"result": {
"type":"object",
"properties": {
"success": {
"$ref": "#/definitions/success"
}
},
"required": [
"success"
]
},
"success": {
"summary": "Whether the request succeeded",
"type": "boolean",
"example": true
}
},
"methods": {
"getApiVersionNumber": {
"summary": "Gets the current API version number.",
"result": {
"type": "object",
"properties": {
"version": {
"$ref": "#/definitions/version"
},
"success": {
"$ref": "#/definitions/success"
}
},
"required":[
"version",
"success"
]
}
},
"getNetStatus": {
"summary": "Returns the status information provided by the last `onStatus` event for the specified network.",
"params": {
"type": "object",
"properties": {
"netType": {
"$ref": "#/definitions/netType"
}
},
"required": [
"netType"
]
},
"result": {
"type": "object",
"properties": {
"status":{
"type":"object",
"properties":{
"netType": {
"$ref": "#/definitions/netType"
},
"netTypeSupported": {
"$ref": "#/definitions/netTypeSupported"
},
"pairingState": {
"$ref": "#/definitions/pairingState"
},
"irProgState": {
"$ref": "#/definitions/irProgState"
},
"remoteData": {
"$ref": "#/definitions/remoteData"
}
},
"required":[
"netType",
"netTypeSupported",
"pairingState",
"irProgState",
"remoteData"
]
},
"success": {
"$ref": "#/definitions/success"
}
},
"required":[
"status",
"success"
]
}
},
"startPairing": {
"summary": "Initiates pairing a remote with the STB on the specified network.",
"events": {
"onStatus" : "pairingState will be updated to relect the current status of the request, along with updated remoteData upon a successful pairing."
},
"params": {
"type": "object",
"properties": {
"netType": {
"$ref": "#/definitions/netType"
},
"timeout": {
"summary": "The amount of time, in seconds, to attempt pairing before timing out. If this parameter is not present, an STB-defined default is used for the specified network. A value of `0` indicates no timeout.",
"type": "integer",
"minimum": 0,
"example": 30
},
"macAddressList": {
"$ref": "#/definitions/macAddressList"
}
},
"required": [
"netType"
]
},
"result": {
"$ref": "#/definitions/result"
}
},
"initializeIRDB": {
"summary": "Initializes the IR database.",
"params": {
"type": "object",
"properties": {
"netType": {
"$ref": "#/definitions/netType"
}
},
"required": [
"netType"
]
},
"result": {
"$ref": "#/definitions/result"
}
},
"clearIRCodes": {
"summary": "Clears the IR codes from the specified remote.",
"events": {
"onStatus" : "irProgState will be updated to relect the current status of the request"
},
"params": {
"type": "object",
"properties": {
"remoteId": {
"$ref": "#/definitions/remoteId"
},
"netType": {
"$ref": "#/definitions/netType"
}
},
"required": [
"remoteId",
"netType"
]
},
"result": {
"$ref": "#/definitions/result"
}
},
"setIRCode": {
"summary": "Programs an IR code into the specified remote control.",
"events":{
"onStatus" : "irProgState will be updated to relect the current status of the request"
},
"params": {
"type": "object",
"properties": {
"remoteId": {
"$ref": "#/definitions/remoteId"
},
"netType": {
"$ref": "#/definitions/netType"
},
"avDevType": {
"$ref": "#/definitions/avDevType"
},
"code": {
"summary": "The IR code being programmed into the remote.",
"type": "string",
"example": "M3320"
}
},
"required": [
"remoteId",
"netType",
"avDevType",
"code"
]
},
"result": {
"$ref": "#/definitions/result"
}
},
"getIRCodesByAutoLookup": {
"summary": "Returns a list of available IR codes for the TV and AVRs specified by the input parameters.",
"params": {
"type": "object",
"properties": {
"netType": {
"$ref": "#/definitions/netType"
}
},
"required": [
"netType"
]
},
"result": {
"type": "object",
"properties": {
"tvManufacturer": {
"summary": "The TV manufacturer for which codes are provided",
"type": "string",
"example": "Samsung"
},
"tvModel": {
"summary": "The TV model for which codes are provided (this is a best guess and might not be completely accurate)",
"type": "string",
"example": "AH5"
},
"tvCodes": {
"summary": "A list of TV IR codes",
"type": "array",
"items": {
"type": "string",
"example": "1156"
}
},
"avrManufacturer": {
"summary": "The AVR manufacturer for which codes are provided",
"type": "string",
"example": "Samsung"
},
"avrModel": {
"summary": "The AVR model for which codes are provided (this is a best guess and might not be completely accurate)",
"type": "string",
"example": "AH5"
},
"avrCodes": {
"summary": "A list of AVR IR codes",
"type": "array",
"items": {
"type": "string",
"example": "R2467"
}
},
"success": {
"$ref": "#/definitions/success"
}
},
"required":[
"tvCodes",
"avrCodes",
"success"
]
}
},
"getIRCodesByNames": {
"summary": "Returns a list of IR codes for the AV device specified by the input parameters.",
"params": {
"type": "object",
"properties": {
"netType": {
"$ref": "#/definitions/netType"
},
"avDevType": {
"$ref": "#/definitions/avDevType"
},
"manufacturer": {
"$ref": "#/definitions/manufacturer"
},
"model": {
"$ref": "#/definitions/model"
}
},
"required": [
"netType",
"avDevType",
"manufacturer",
"model"
]
},
"result": {
"type": "object",
"properties": {
"avDevType": {
"$ref": "#/definitions/avDevType"
},
"manufacturer": {
"$ref": "#/definitions/manufacturer"
},
"model": {
"$ref": "#/definitions/model"
},
"codes": {
"summary": "A list of IR codes",
"type": "array",
"items": {
"type": "string",
"example": "R2467"
}
},
"success": {
"$ref": "#/definitions/success"
}
},
"required":[
"avDevType",
"manufacturer",
"model",
"codes",
"success"
]
}
},
"getIRDBManufacturers": {
"summary": "Returns a list of manufacturer names based on the specified input parameters.",
"params": {
"type": "object",
"properties": {
"netType": {
"$ref": "#/definitions/netType"
},
"avDevType": {
"$ref": "#/definitions/avDevType"
},
"manufacturer": {
"summary": "A part of the name of the manufacturer of the AV device",
"type": "string",
"example": "Sa"
}
},
"required": [
"netType",
"avDevType",
"manufacturer"
]
},
"result": {
"type": "object",
"properties": {
"avDevType": {
"$ref": "#/definitions/avDevType"
},
"manufacturers": {
"summary": "A list of manufacturer names",
"type": "array",
"items": {
"type": "string",
"example": "Samsung"
}
},
"success": {
"$ref": "#/definitions/success"
}
},
"required":[
"avDevType",
"manufacturers",
"success"
]
}
},
"getIRDBModels": {
"summary": "Returns a list of model names based on the specified input parameters.",
"params": {
"type": "object",
"properties": {
"netType": {
"$ref": "#/definitions/netType"
},
"avDevType": {
"$ref": "#/definitions/avDevType"
},
"manufacturer": {
"$ref": "#/definitions/manufacturer"
},
"model": {
"summary": "A part (minimum of 3 characters) of the model name of the AV device",
"type": "string",
"example": "AH5"
}
},
"required": [
"netType",
"avDevType",
"manufacturer",
"model"
]
},
"result": {
"type": "object",
"properties": {
"avDevType": {
"$ref": "#/definitions/avDevType"
},
"manufacturer": {
"$ref": "#/definitions/manufacturer"
},
"models": {
"summary": "A list of model names",
"type": "array",
"items": {
"type": "string",
"example": "AH5901068L"
}
},
"success": {
"$ref": "#/definitions/success"
}
},
"required":[
"avDevType",
"manufacturer",
"models",
"success"
]
}
},
"getLastKeypressSource": {
"summary": "Returns last key press source data.",
"params": {
"type": "object",
"properties": {
"netType": {
"$ref": "#/definitions/netType"
}
},
"required": [
"netType"
]
},
"result": {
"type": "object",
"properties": {
"controllerId": {
"summary": "The controller ID of the target remote on the specified network",
"type": "integer",
"example": 1
},
"timestamp": {
"summary": "The time of the last key press",
"type": "integer",
"example": 1621005572000
},
"sourceName": {
"summary": "The source of the last key press",
"type": "string",
"example": "XR15-10"
},
"sourceType": {
"summary": "The source type of the last key press",
"type": "string",
"example": "IR"
},
"sourceKeyCode": {
"summary": "The source key code",
"type": "integer",
"example": 192
},
"bIsScreenBindMode": {
"summary": "`true` if in screen bind mode, otherwise `false`",
"type": "boolean",
"example": false
},
"remoteKeypadConfig": {
"summary": "The configuration of the remote keypad",
"type": "integer",
"example": 1
},
"success": {
"$ref": "#/definitions/success"
}
},
"required":[
"controllerId",
"timestamp",
"sourceName",
"sourceType",
"sourceKeyCode",
"bIsScreenBindMode",
"remoteKeypadConfig",
"success"
]
}
},
"configureWakeupKeys": {
"summary": "Configures which keys on the remote will wake the target from deepsleep.",
"params": {
"type": "object",
"properties": {
"netType": {
"summary": "The type of network.(currently on Bluetooth Low Energy network supports this feature)",
"type": "integer",
"example": 1
},
"wakeupConfig": {
"summary": "The deepsleep wakeup key configuration of the remote. (possible values: all - all keys on the remote will wake target from deepsleep, none - no keys on the remote will wake target from deepsleep, custom - the custom list of Linux key codes provided in customKeys will wake target from deepsleep)",
"type": "string",
"enum": [
"all",
"none",
"custom"
],
"example": "custom"
},
"customKeys": {
"summary": "Mandatory param only if wakeupConfig is custom, otherwise it should be omitted. This parameter is a list of linux keycodes that can wake the target from deepsleep",
"type": "string",
"example": "3,1"
}
},
"required": [
"netType",
"wakeupConfig"
]
},
"result": {
"$ref": "#/definitions/result"
}
},
"findMyRemote": {
"summary": "Tells the most recently used remote to beep.",
"params": {
"type": "object",
"properties": {
"netType": {
"$ref": "#/definitions/netType"
},
"level": {
"summary": "The level at which the remote will beep",
"type": "string",
"enum": [
"off",
"mid",
"high"
],
"example": "mid"
}
},
"required": [
"netType",
"level"
]
},
"result": {
"$ref": "#/definitions/result"
}
},
"factoryReset": {
"summary": "Tells all paired and connected remotes to factory reset.",
"result": {
"$ref": "#/definitions/result"
}
},
"unpair": {
"summary": "Unpairs a given or all remote(s) from the STB.",
"params": {
"type": "object",
"properties": {
"macAddressList": {
"$ref": "#/definitions/macAddressList"
}
}
},
"result": {
"$ref": "#/definitions/result"
}
},
"startFirmwareUpdate": {
"summary": "Starts a firmware image update session for the specified remote(s).",
"events":{
"onFirmwareUpdateProgress" : "Generated at 0 and 100 percent and each time a download percent increment is reached"
},
"params": {
"type": "object",
"properties": {
"macAddress": {
"$ref": "#/definitions/macAddress"
},
"fileName": {
"summary": "The full path and filename for the firmware image.",
"type": "string",
"example": "/tmp/rcu_model_x_ver_a.tgz"
},
"fileType": {
"summary": "The type of firmware image file",
"type": "string",
"example": "ABC"
},
"percentIncrement": {
"summary": "The increment change of a firmware update to notify (1 - 100 percent)",
"type": "integer",
"example": 5
}
},
"required": [
"fileName"
]
},
"result": {
"type": "object",
"properties": {
"status":{
"type":"object",
"properties":{
"sessionIdList": {
"summary": "A list of session identifiers",
"type": "array",
"items": {
"$ref": "#/definitions/upgradeSessionId"
}
}
},
"required":[
"sessionIdList"
]
},
"success": {
"$ref": "#/definitions/success"
}
},
"required":[
"status",
"success"
]
}
},
"statusFirmwareUpdate": {
"summary": "Returns the status of an active firmware image update session.",
"params": {
"type": "object",
"properties": {
"sessionId": {
"$ref": "#/definitions/upgradeSessionId"
}
},
"required": [
"sessionId"
]
},
"result": {
"type": "object",
"properties": {
"status":{
"type":"object",
"properties":{
"result": {
"$ref": "#/definitions/firmwareUpdateStatus"
}
},
"required":[
"result"
]
},
"success": {
"$ref": "#/definitions/success"
}
},
"required":[
"status",
"success"
]
}
},
"cancelFirmwareUpdate": {
"summary": "Cancels an active firmware image update session.",
"params": {
"type": "object",
"properties": {
"sessionId": {
"$ref": "#/definitions/upgradeSessionId"
}
},
"required": [
"sessionId"
]
},
"result": {
"$ref": "#/definitions/result"
}
}
},
"events": {
"onStatus":{
"summary": "Triggered at any time when the status of any one of the supported STB remote networks changes",
"params": {
"type": "object",
"properties": {
"status":{
"type":"object",
"properties":{
"netType": {
"$ref": "#/definitions/netType"
},
"netTypeSupported": {
"$ref": "#/definitions/netTypeSupported"
},
"pairingState": {
"$ref": "#/definitions/pairingState"
},
"irProgState": {
"$ref": "#/definitions/irProgState"
},
"remoteData": {
"$ref": "#/definitions/remoteData"
}
},
"required":[
"netType",
"netTypeSupported",
"pairingState",
"irProgState",
"remoteData"
]
}
},
"required":[
"status"
]
}
},
"onFirmwareUpdateProgress": {
"summary": "Generated at 0 and 100 percent and each time a download percent increment is reached.",
"params": {
"type": "object",
"properties": {
"sessionId": {
"$ref": "#/definitions/upgradeSessionId"
},
"status": {
"$ref": "#/definitions/firmwareUpdateStatus"
}
},
"required": [
"sessionId",
"status"
]
}
}
}
}