forked from UberGuidoZ/Flipper
-
Notifications
You must be signed in to change notification settings - Fork 303
/
Copy pathaudio.ir
2124 lines (2124 loc) · 72.5 KB
/
audio.ir
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
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Filetype: IR library file
Version: 1
# Last Updated 21st Mar, 2023
# Last Checked 21st Mar, 2023
#
name: POWER
type: parsed
protocol: NEC
address: 77 00 00 00
command: F1 00 00 00
#
name: MUTE
type: parsed
protocol: NEC
address: 77 00 00 00
command: F3 00 00 00
#
name: VOL+
type: parsed
protocol: NEC
address: 77 00 00 00
command: FB 00 00 00
#
name: VOL-
type: parsed
protocol: NEC
address: 77 00 00 00
command: FC 00 00 00
#
name: POWER
type: parsed
protocol: NEC
address: 80 00 00 00
command: 1A 00 00 00
#
name: POWER
type: parsed
protocol: NECext
address: 10 E7 00 00
command: 46 B9 00 00
#
name: VOL+
type: parsed
protocol: NECext
address: 10 E7 00 00
command: 06 F9 00 00
#
name: VOL-
type: parsed
protocol: NECext
address: 10 E7 00 00
command: 47 B8 00 00
#
name: MUTE
type: parsed
protocol: NECext
address: 10 E7 00 00
command: 41 BE 00 00
#
name: POWER
type: parsed
protocol: RC5
address: 10 00 00 00
command: 0C 00 00 00
#
name: MUTE
type: parsed
protocol: RC5
address: 10 00 00 00
command: 0D 00 00 00
#
name: VOL+
type: parsed
protocol: RC5
address: 10 00 00 00
command: 10 00 00 00
#
name: VOL-
type: parsed
protocol: RC5
address: 10 00 00 00
command: 11 00 00 00
#
name: POWER
type: parsed
protocol: NEC
address: 00 00 00 00
command: 40 00 00 00
#
name: VOL+
type: parsed
protocol: NEC
address: 00 00 00 00
command: 41 00 00 00
#
name: VOL-
type: parsed
protocol: NEC
address: 00 00 00 00
command: 45 00 00 00
#
name: MUTE
type: parsed
protocol: NEC
address: 00 00 00 00
command: 48 00 00 00
#
name: POWER
type: parsed
protocol: NECext
address: 2D D3 00 00
command: 12 ED 00 00
#
name: VOL+
type: parsed
protocol: NECext
address: 2D D3 00 00
command: 11 EE 00 00
#
name: VOL-
type: parsed
protocol: NECext
address: 2D D3 00 00
command: 10 EF 00 00
#
name: MUTE
type: parsed
protocol: NECext
address: 2D D3 00 00
command: 13 EC 00 00
#
name: POWER
type: parsed
protocol: SIRC15
address: 44 00 00 00
command: 15 00 00 00
#
name: VOL+
type: parsed
protocol: SIRC15
address: 44 00 00 00
command: 12 00 00 00
#
name: VOL-
type: parsed
protocol: SIRC15
address: 44 00 00 00
command: 13 00 00 00
#
name: MUTE
type: parsed
protocol: SIRC15
address: 44 00 00 00
command: 14 00 00 00
#
name: POWER
type: parsed
protocol: NECext
address: 02 A0 00 00
command: 80 7F 00 00
#
name: VOL+
type: parsed
protocol: NECext
address: 02 A0 00 00
command: AA 55 00 00
#
name: VOL-
type: parsed
protocol: NECext
address: 02 A0 00 00
command: 6A 95 00 00
#
name: MUTE
type: parsed
protocol: NECext
address: 02 A0 00 00
command: EA 15 00 00
# Standby
name: POWER
type: parsed
protocol: NEC
address: 04 00 00 00
command: 16 00 00 00
#
name: VOL+
type: parsed
protocol: NEC
address: 04 00 00 00
command: 13 00 00 00
#
name: VOL-
type: parsed
protocol: NEC
address: 04 00 00 00
command: 0B 00 00 00
#
name: MUTE
type: parsed
protocol: NEC
address: 04 00 00 00
command: 06 00 00 00
#
name: POWER
type: parsed
protocol: NECext
address: 29 A1 00 00
command: 7F 80 00 00
#
name: MUTE
type: parsed
protocol: NECext
address: 29 A1 00 00
command: 9B 64 00 00
#
name: VOL+
type: parsed
protocol: NECext
address: 29 A1 00 00
command: 9E 61 00 00
#
name: VOL-
type: parsed
protocol: NECext
address: 29 A1 00 00
command: 9F 60 00 00
#
name: POWER
type: parsed
protocol: NEC
address: 7A 00 00 00
command: 1F 00 00 00
#
name: POWER
type: parsed
protocol: NEC
address: 00 00 00 00
command: 1C 00 00 00
#
name: MUTE
type: parsed
protocol: NEC
address: 00 00 00 00
command: 0B 00 00 00
#
name: VOL+
type: parsed
protocol: NEC
address: 00 00 00 00
command: 0F 00 00 00
#
name: VOL-
type: parsed
protocol: NEC
address: 00 00 00 00
command: 05 00 00 00
#
name: VOL+
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 4617 4406 584 448 557 448 557 449 556 449 555 1430 580 1432 577 452 552 454 550 1460 549 1462 548 1462 549 1462 548 457 548 457 548 457 548 457 548 4463 548 457 548 457 548 457 548 458 548 1462 548 1462 548 1462 548 457 548 1463 547 1462 548 1462 548 458 547 458 548 458 548 458 547 1463 547 458 547 458 547 458 548 1463 547 55451 4606 4440 549 457 548 457 548 457 548 457 548 1462 548 1462 548 457 548 457 548 1462 548 1461 549 1462 548 1462 548 457 548 457 548 457 548 457 548 4462 548 457 548 457 548 457 548 457 548 1462 548 1462 548 1462 548 457 548 1462 548 1462 548 1462 547 457 548 458 547 458 547 458 547 1462 548 458 547 458 547 458 547 1462 548
#
name: VOL-
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 4614 4408 583 449 555 450 555 451 553 451 554 1432 577 1434 576 453 551 454 550 1460 549 1461 549 1461 549 1461 549 457 548 457 548 457 548 457 548 4461 548 457 548 457 548 457 548 457 548 457 548 457 548 457 548 1462 548 1461 549 1461 549 1461 548 457 548 1462 549 1461 549 1461 548 457 548 457 548 457 548 458 547 1462 548 55443 4606 4440 549 456 549 456 549 456 549 456 549 1461 549 1461 549 457 548 457 548 1461 549 1461 549 1461 549 1461 549 456 549 457 548 457 548 457 548 4461 549 456 549 457 548 457 548 457 548 457 548 457 548 457 548 1462 548 1461 549 1461 549 1461 548 457 548 1461 549 1461 549 1461 549 457 548 457 548 458 547 457 548 1462 548
#
name: POWER
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 4588 4435 556 477 556 449 555 450 555 451 554 1428 582 1429 581 451 553 452 552 1457 552 1458 551 1461 548 1463 547 458 547 458 547 458 547 458 547 4464 547 458 547 458 547 458 547 458 548 458 547 458 547 458 548 458 547 1463 547 1463 547 1464 546 459 547 1464 546 1464 546 1463 547 1464 546 459 546 459 546 459 546 1464 547 55456 4581 4468 546 458 547 458 547 458 547 458 547 1463 547 1463 547 458 547 459 547 1463 547 1464 546 1464 546 1464 547 459 546 459 546 459 546 459 547 4465 546 459 546 459 546 459 546 459 546 459 547 459 546 459 546 459 546 1464 546 1464 546 1465 546 460 545 1465 545 1465 545 1465 546 1465 546 460 545 460 546 460 545 1466 544
#
name: POWER
type: parsed
protocol: NECext
address: 3F 5C 00 00
command: 18 E7 00 00
#
name: VOL+
type: parsed
protocol: NECext
address: 3F 5C 00 00
command: 55 AA 00 00
#
name: VOL-
type: parsed
protocol: NECext
address: 3F 5C 00 00
command: 59 A6 00 00
#
name: MUTE
type: parsed
protocol: NECext
address: 3F 5C 00 00
command: 15 EA 00 00
#
name: MUTE
type: parsed
protocol: NECext
address: 00 FB 00 00
command: 1E E1 00 00
#
name: POWER
type: parsed
protocol: NECext
address: 00 FB 00 00
command: 1D E2 00 00
#
name: VOL-
type: parsed
protocol: NECext
address: 00 FB 00 00
command: 18 E7 00 00
#
name: VOL+
type: parsed
protocol: NECext
address: 00 FB 00 00
command: 0A F5 00 00
#
name: VOL+
type: parsed
protocol: NECext
address: 80 D9 00 00
command: 8A 75 00 00
#
name: VOL-
type: parsed
protocol: NECext
address: 80 D9 00 00
command: 88 77 00 00
#
name: MUTE
type: parsed
protocol: NECext
address: 80 D9 00 00
command: 8C 73 00 00
#
name: POWER
type: parsed
protocol: NECext
address: 78 0E 00 00
command: 00 FF 00 00
#
name: VOL+
type: parsed
protocol: NECext
address: 78 0E 00 00
command: 19 E6 00 00
#
name: VOL-
type: parsed
protocol: NECext
address: 78 0E 00 00
command: 1C E3 00 00
#
name: MUTE
type: parsed
protocol: NECext
address: 78 0E 00 00
command: 18 E7 00 00
#
name: VOL+
type: parsed
protocol: NEC
address: 20 00 00 00
command: 14 00 00 00
#
name: VOL-
type: parsed
protocol: NEC
address: 20 00 00 00
command: 10 00 00 00
#
# ON
name: POWER
type: parsed
protocol: RC5
address: 10 00 00 00
command: 0E 00 00 00
#
name: VOL-
type: parsed
protocol: NECext
address: 10 E7 00 00
command: 0C F3 00 00
#
name: VOL+
type: parsed
protocol: NECext
address: 10 E7 00 00
command: 09 F6 00 00
#
name: POWER
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 3309 1906 410 1178 411 1177 412 416 435 445 406 448 414 440 411 1150 439 415 436 1178 411 1177 412 442 409 444 407 1181 408 419 432 1182 407 420 442 1146 433 448 414 440 411 442 409 444 407 446 416 438 413 441 410 443 408 419 432 1182 407 446 405 422 440 414 437 416 435 445 406 1181 408 446 405 448 414 440 411 442 409 418 433 446 416 438 413 1175 414 413 438 1176 413 414 437 443 408 419 432 421 441 413 438 42493 3308 3343 355 43011 3309 3316 382 43009 3310 3314 384 43007 3303 3347 361
#
name: VOL+
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 3307 1879 437 1177 412 1176 413 415 436 417 434 446 405 448 414 1174 415 412 439 1149 440 1147 442 438 413 440 411 1177 412 441 410 1178 411 442 409 1179 410 417 434 419 432 448 414 440 411 442 409 444 407 446 416 438 413 441 410 1151 438 415 436 444 407 446 416 412 439 414 437 1177 412 1176 413 414 437 416 435 1152 437 1177 412 416 435 444 407 446 416 1146 433 421 441 1173 406 422 440 413 438 442 409 444 407 40133 3308 3341 357 42862 3301 3347 361 42859 3304 3319 379
#
name: VOL-
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 3310 1876 440 1174 415 1173 405 422 440 414 437 443 408 445 406 1182 407 420 442 1173 406 1182 407 420 442 412 439 1175 414 440 411 1150 439 415 436 1152 437 416 435 419 432 447 415 440 411 442 409 418 433 420 442 438 413 440 411 1177 412 415 436 418 433 420 442 438 413 441 410 1151 438 1150 439 415 436 1178 411 1150 439 1149 440 414 437 417 434 445 406 1155 434 420 442 438 413 1175 414 413 438 442 409 444 407 39503 3303 3320 388 42857 3304 3319 379 42867 3305 3317 381
#
name: MUTE
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 3305 1907 409 1178 411 1177 412 442 409 418 433 447 415 439 412 1176 413 441 410 1177 412 1176 413 441 410 443 408 1180 409 445 406 1181 408 446 416 1172 406 448 413 440 411 442 409 445 406 447 414 439 412 442 409 444 407 447 414 1173 405 449 413 441 410 443 408 446 405 448 413 1174 415 440 411 442 409 1178 411 1177 412 1177 412 442 409 444 407 447 415 439 412 441 410 444 407 1180 409 445 406 448 414 440 411 41125 3303 3347 360 42906 3308 3315 382
#
name: MUTE
type: parsed
protocol: NECext
address: BA A0 00 00
command: 01 FE 00 00
#
name: POWER
type: parsed
protocol: Kaseikyo
address: AC 02 20 00
command: D1 03 00 00
#
name: VOL+
type: parsed
protocol: Kaseikyo
address: A0 02 20 00
command: 00 02 00 00
#
name: VOL-
type: parsed
protocol: Kaseikyo
address: A0 02 20 00
command: 10 02 00 00
#
name: MUTE
type: parsed
protocol: Kaseikyo
address: A0 02 20 00
command: 20 03 00 00
#
name: POWER
type: parsed
protocol: NEC
address: 01 00 00 00
command: 02 00 00 00
#
name: VOL+
type: parsed
protocol: NEC
address: 01 00 00 00
command: 01 00 00 00
#
name: VOL-
type: parsed
protocol: NEC
address: 01 00 00 00
command: 0B 00 00 00
#
name: MUTE
type: parsed
protocol: NEC
address: 01 00 00 00
command: 06 00 00 00
#
name: POWER
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 9150 4435 643 1608 643 468 644 469 642 364 749 468 643 447 665 449 663 469 643 452 660 470 642 450 662 442 670 449 662 469 643 1579 672 1608 642 1580 671 1609 641 1607 643 1578 672 1607 643 1608 642 1606 644 1606 644 1606 644 1607 643 1576 675 1579 671 1605 674 438 645 466 673 438 646 466 674 437 673 439 672 439 673 438 646 1604 673 1577 673 1578 673 1577 674 1577 673 23799 9095 4485 616
#
name: VOL+
type: parsed
protocol: NEC42
address: 01 00 00 00
command: 0C 00 00 00
#
name: VOL-
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 9151 4434 644 1608 643 376 737 379 733 446 666 449 663 468 644 469 643 468 644 468 644 468 644 447 665 448 664 468 644 450 662 1608 643 1607 644 1576 676 1607 644 1608 643 1578 674 1608 643 1577 674 1579 672 1607 643 1608 643 1607 644 1607 644 1608 643 448 664 1608 643 448 664 468 644 469 643 380 732 468 644 469 643 1607 644 468 644 1608 643 1608 644 1609 643 1608 643 23837 9152 4434 642
#
name: POWER
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 8968 4344 670 460 670 460 670 1566 669 462 668 486 643 487 642 489 641 1595 640 490 640 491 640 1596 640 491 640 1596 640 1596 640 1596 640 491 640 1596 640 1596 640 1596 640 1596 640 1596 640 1596 640 1596 640 1622 640 491 640 491 640 491 640 491 640 491 640 491 640 491 640 491 639
#
name: POWER
type: parsed
protocol: SIRC
address: 10 00 00 00
command: 2E 00 00 00
#
name: POWER
type: parsed
protocol: NECext
address: 00 FD 00 00
command: 01 FE 00 00
#
name: MUTE
type: parsed
protocol: NECext
address: 00 FD 00 00
command: 03 FC 00 00
#
name: VOL+
type: parsed
protocol: NECext
address: 00 FD 00 00
command: 09 F6 00 00
#
name: VOL-
type: parsed
protocol: NECext
address: 00 FD 00 00
command: 07 F8 00 00
#
name: POWER
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 1042 1461 540 1460 541 1460 541 1460 541 1459 542 1459 542 454 536 460 540 456 544 452 538 458 542 454 546 450 540 456 544 1457 544 1456 545 1448 542 50531 1041 1462 539 1462 539 1461 540 1461 540 1460 541 1460 541 455 545 451 539 457 543 480 510 459 541 481 519 451 539 457 543 1457 543 1457 544 1449 541 50515 1037 1467 544 1456 545 1456 545 1455 546 1455 535 1465 536 486 514 483 517 479 511 485 515 481 509 487 513 483 517 478 512 1462 539 1462 539 1454 536 50537 1035 1467 544 1457 544 1457 544 1456 545 1456 544 1456 545 477 513 483 517 479 511 486 514 481 519 477 513 484 516 479 511 1464 536 1463 538 1455 546
#
name: POWER
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 1010 1491 509 1490 510 1488 512 487 513 487 513 1486 514 1485 515 484 516 1483 517 482 518 482 518 1481 509 1489 511 488 512 487 513 1486 514 484 516 50963 1011 1489 511 1488 512 1487 513 485 515 486 514 1485 515 1484 516 484 516 1483 517 482 518 482 518 1481 509 1489 511 489 511 489 511 1487 513 486 514 50986 1008 1492 518 1480 510 1488 512 487 513 487 513 1486 514 1484 516 484 516 1483 517 482 518 481 519 1480 510 1488 512 487 513 487 513 1486 514 484 516 50972 1012 1488 512 1486 514 1484 516 483 517 483 517 1482 518 1480 510 489 511 1487 513 486 514 486 514 1485 515 1483 517 483 517 483 517 1481 509 490 510 50976 1008 1491 509 1489 511 1487 513 485 515 485 515 1484 516 1481 509 491 509 1489 511 488 512 488 512 1487 513 1485 515 484 516 484 516 1483 517 481 509
#
name: POWER
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 1011 1479 517 477 516 481 512 1480 516 1473 513 482 511 485 518 1473 513 482 511 1481 515 1474 512 482 511 485 518 1473 513 1477 509 486 517 1473 513 50728 1014 1475 511 484 509 487 516 1475 511 1479 517 477 516 480 513 1478 508 487 516 1475 511 1479 517 478 514 480 513 1479 517 1473 513 508 484 1479 517 50725 1016 1473 513 481 512 484 519 1473 513 1477 509 485 518 478 515 1476 510 485 518 1473 513 1477 509 486 517 478 515 1476 510 1480 516 479 514 1476 510 50735 1069 1421 513 481 512 484 509 1483 513 1477 509 486 517 479 514 1477 509 486 517 1474 512 1479 507 488 515 480 513 1479 507 1483 513 482 511 1479 517 50733 1011 1478 508 513 490 506 486 1478 508 1483 513 508 485 511 482 1482 514 508 485 1480 516 1473 513 508 485 511 482 1483 513 1477 509 512 491 1473 513 50735 1008 1480 516 479 514 508 485 1480 516 1474 512 509 484 486 517 1472 514 508 485 1480 516 1474 512 509 484 512 481 1482 514 1477 509 512 491 1472 514 50738 1006 1509 487 508 485 486 507 1509 487 1503 483 513 490 505 488 1502 484 512 491 1473 513 1503 483 512 491 505 488 1476 510 1507 489 506 487 1503 483
#
name: MUTE
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 1010 1479 517 1474 512 509 484 512 491 505 488 507 486 510 483 512 491 505 488 508 485 1505 491 1474 512 1478 508 1483 513 1477 509 1482 514 1475 511 50713 1005 1483 513 1475 511 511 482 513 490 505 488 507 486 483 510 511 482 487 516 505 488 1501 485 1478 508 1483 513 1476 510 1479 507 1483 513 1474 512 50707 1012 1501 485 1479 506 513 490 505 488 507 486 509 484 511 482 487 516 505 488 508 485 1504 482 1482 514 1476 592 1396 590 1400 513 1476 510 1478 508 50715 1015 1473 513 1476 510 484 508 513 490 504 489 480 513 508 485 483 510 511 482 488 515 1473 513 1477 509 1480 516 1474 512 1477 591 1397 516 1472 514
#
name: VOL+
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 1041 1462 538 1462 538 485 515 481 519 478 512 484 516 1458 542 1458 542 1459 541 481 519 1481 519 1455 545 1482 518 1456 544 479 511 486 514 474 516 50532 1039 1464 536 1490 510 487 513 483 517 480 510 486 514 1460 540 1486 514 1460 540 483 517 1457 543 1484 516 1458 542 1458 542 481 519 477 513 476 513 50534 1036 1467 543 1457 543 480 509 460 540 483 517 479 511 1463 537 1463 537 1464 536 486 514 1487 513 1461 539 1461 539 1462 538 484 516 481 519 469 510
#
name: VOL-
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 1042 1461 539 457 543 1458 542 1458 542 1458 542 1458 542 454 536 461 539 457 543 1457 543 453 537 460 540 456 544 452 538 1463 537 1463 537 1456 544 50530 1065 1438 572 424 566 1434 566 1435 565 1435 565 1436 544 452 537 459 572 424 545 1456 544 451 539 458 542 454 536 460 540 1461 539 1461 539 1454 536 50538 1036 1467 543 452 537 1464 536 1464 536 1464 536 1465 545 450 540 456 544 452 537 1464 536 460 540 455 545 452 538 458 542 1459 541 1460 540 1452 538
#
name: VOL+
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 1044 1456 544 455 545 455 534 1464 536 1462 538 1460 540 1458 542 1456 544 1455 545 1453 537 1461 539 460 540 459 541 459 561 437 542 457 543 456 544 50915 1016 1483 517 482 518 482 518 1481 509 1489 511 1487 513 1486 514 1485 515 1483 517 1482 508 1490 510 489 511 488 512 487 513 487 513 486 514 485 515 50956 1047 1452 538 462 538 462 538 1461 539 1460 540 1458 542 1457 543 1456 544 1454 546 1453 547 1451 539 461 539 460 540 460 540 459 541 459 541 457 543
#
name: VOL-
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 1017 1484 516 1482 518 481 519 1480 510 1489 511 1487 513 1486 514 1485 515 1483 517 482 518 1480 510 490 510 489 511 489 511 488 512 488 512 486 514 50956 1015 1486 514 1484 516 484 516 1483 517 1482 518 1480 510 1489 511 1488 512 1486 514 486 514 1485 515 484 516 484 516 483 517 483 517 482 518 481 509 50960 1011 1488 512 1486 514 486 514 1485 515 1483 517 1482 518 1480 510 1488 512 1486 514 486 514 1484 516 483 517 483 517 482 518 481 519 481 508 489 511 50961 1040 1461 539 1459 541 459 541 1458 542 1456 544 1455 545 1454 546 1452 538 1460 540 460 540 1458 542 457 543 456 544 456 544 455 545 455 545 453 547
#
name: VOL+
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 1006 1485 511 1479 517 1473 513 509 484 511 482 514 489 506 487 508 485 511 482 513 490 505 488 1477 509 1481 515 1475 511 1480 516 1474 512 1477 509 50734 1007 1483 513 1477 509 1482 514 507 486 509 484 511 492 503 490 506 487 508 485 510 483 513 490 1474 512 1479 517 1473 513 1477 509 1481 515 1474 512 50729 1012 1477 509 1481 515 1474 512 509 484 512 491 504 489 506 487 508 485 511 482 513 490 506 487 1477 509 1481 515 1475 511 1479 517 1473 513 1476 510
#
name: VOL-
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 1012 1503 483 514 489 1475 511 483 510 486 517 478 515 481 512 483 510 486 517 1473 513 508 485 1480 516 1475 511 1479 507 1483 513 1477 509 1480 588 50646 1012 1476 510 512 491 1473 513 508 485 485 508 488 515 480 513 482 511 512 481 1482 514 482 511 1480 516 1473 513 1478 508 1482 514 1476 510 1479 590 50651 1007 1507 489 507 485 1478 508 514 489 506 487 509 484 485 508 488 515 506 487 1503 483 513 490 1474 512 1478 508 1483 513 1477 509 1481 515 1473 513 50721 1009 1505 491 478 515 1475 511 510 483 486 517 478 515 507 486 483 510 512 491 1472 514 508 485 1505 491 1473 513 1477 509 1481 587 1403 510 1478 508 50733 1008 1506 490 479 514 1477 509 512 481 514 489 506 487 508 485 484 509 513 490 1473 513 509 483 1481 515 1474 512 1479 507 1482 514 1476 510 1478 590 50642 1006 1508 488 508 485 1478 508 487 516 479 514 481 512 510 483 486 517 504 489 1474 512 510 483 1482 514 1475 511 1479 507 1483 513 1477 509 1480 516
#
name: POWER
type: parsed
protocol: NEC
address: 20 00 00 00
command: 09 00 00 00
#
name: MUTE
type: parsed
protocol: NEC
address: 20 00 00 00
command: 1F 00 00 00
#
name: VOL+
type: parsed
protocol: NEC
address: 20 00 00 00
command: 0E 00 00 00
#
name: VOL-
type: parsed
protocol: NEC
address: 20 00 00 00
command: 1A 00 00 00
#
name: VOL+
type: parsed
protocol: NEC
address: 20 00 00 00
command: 02 00 00 00
#
name: VOL-
type: parsed
protocol: NEC
address: 20 00 00 00
command: 05 00 00 00
#
name: POWER
type: parsed
protocol: NEC
address: 20 00 00 00
command: 0C 00 00 00
#
name: MUTE
type: parsed
protocol: NEC
address: 20 00 00 00
command: 08 00 00 00
#
name: POWER
type: parsed
protocol: NEC
address: 00 00 00 00
command: 12 00 00 00
#
name: MUTE
type: parsed
protocol: NEC
address: 00 00 00 00
command: 1E 00 00 00
#
name: VOL+
type: parsed
protocol: NEC
address: 00 00 00 00
command: 03 00 00 00
#
name: VOL-
type: parsed
protocol: NEC
address: 00 00 00 00
command: 01 00 00 00
#
name: VOL+
type: parsed
protocol: NEC
address: 00 00 00 00
command: 1F 00 00 00
#
name: VOL-
type: parsed
protocol: NEC
address: 00 00 00 00
command: 09 00 00 00
#
name: POWER
type: parsed
protocol: NECext
address: 10 E7 00 00
command: 01 FE 00 00
#
name: MUTE
type: parsed
protocol: NECext
address: 10 E7 00 00
command: 00 FF 00 00
#
name: MUTE
type: parsed
protocol: NECext
address: 10 E7 00 00
command: 2B D4 00 00
#
name: MUTE
type: parsed
protocol: NECext
address: 78 0E 00 00
command: 09 F6 00 00
#
name: VOL+
type: parsed
protocol: NECext
address: 78 0E 00 00
command: 01 FE 00 00
#
name: VOL-
type: parsed
protocol: NECext
address: 78 0E 00 00
command: 02 FD 00 00
#
name: VOL-
type: parsed
protocol: NEC
address: 00 00 00 00
command: 06 00 00 00
#
name: POWER
type: parsed
protocol: NEC
address: 02 00 00 00
command: 0A 00 00 00
#
name: MUTE
type: parsed
protocol: NEC
address: 02 00 00 00
command: 0D 00 00 00
#
name: VOL+
type: parsed
protocol: NEC
address: 02 00 00 00
command: 1C 00 00 00
#
name: VOL-
type: parsed
protocol: NEC
address: 02 00 00 00
command: 07 00 00 00
#
name: VOL+
type: parsed
protocol: NEC
address: 00 00 00 00
command: 14 00 00 00
#
name: VOL-
type: parsed
protocol: NEC
address: 00 00 00 00
command: 08 00 00 00
#
name: VOL+
type: parsed
protocol: NECext
address: 86 FF 00 00
command: 14 EB 00 00
#
name: VOL-
type: parsed
protocol: NECext
address: 86 FF 00 00
command: 13 EC 00 00
#
name: POWER
type: parsed
protocol: NECext
address: 86 FF 00 00
command: 1B E4 00 00
#
name: MUTE
type: parsed
protocol: NECext
address: 86 FF 00 00
command: 2A D5 00 00
#
name: POWER
type: parsed
protocol: NEC
address: 00 00 00 00
command: 07 00 00 00
#
name: MUTE
type: parsed
protocol: NEC
address: 00 00 00 00
command: 00 00 00 00
#
name: MUTE
type: parsed
protocol: NECext
address: 40 AF 00 00
command: 19 E6 00 00
#
name: VOL+
type: parsed
protocol: NECext
address: 02 BD 00 00
command: 26 D9 00 00
#
name: VOL-
type: parsed
protocol: NECext
address: 02 BD 00 00
command: 28 D7 00 00
#
name: POWER
type: parsed
protocol: NECext
address: 02 BD 00 00
command: 53 AC 00 00
#
name: MUTE
type: parsed
protocol: NECext
address: 02 BD 00 00
command: AD 52 00 00
#
name: POWER
type: parsed
protocol: SIRC
address: 10 00 00 00
command: 2F 00 00 00
#
name: VOL+
type: parsed
protocol: SIRC
address: 10 00 00 00
command: 12 00 00 00
#
name: VOL-
type: parsed
protocol: SIRC
address: 10 00 00 00
command: 13 00 00 00
#
name: POWER
type: parsed
protocol: NECext
address: 85 23 00 00
command: 99 66 00 00
#
name: MUTE
type: parsed
protocol: NECext
address: 85 23 00 00
command: 97 68 00 00
#
name: VOL+
type: parsed
protocol: NECext
address: 85 23 00 00
command: 57 A8 00 00
#
name: VOL-
type: parsed
protocol: NECext
address: 85 23 00 00
command: 47 B8 00 00
#
name: POWER
type: parsed
protocol: NEC
address: 08 00 00 00
command: 10 00 00 00
#
name: MUTE
type: parsed
protocol: NEC
address: 08 00 00 00
command: 16 00 00 00
#
name: VOL+
type: parsed
protocol: NECext
address: 86 FF 00 00
command: 21 DE 00 00
#
name: VOL-
type: parsed
protocol: NECext
address: 86 FF 00 00
command: 2B D4 00 00
#
name: VOL+
type: parsed
protocol: NECext
address: BA 4B 00 00
command: 03 FC 00 00
#
name: VOL-
type: parsed
protocol: NECext
address: BA 4B 00 00
command: 02 FD 00 00
#
name: VOL+
type: parsed
protocol: NECext
address: BA A0 00 00
command: 03 FC 00 00
#
name: VOL-
type: parsed
protocol: NECext
address: BA A0 00 00
command: 02 FD 00 00
#
name: VOL+
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 1014 1477 517 478 514 509 483 487 515 480 512 484 508 488 514 1479 515 1476 508 1483 511 1481 513 1478 516 1475 509 1482 512 1479 515 480 512 483 509 50775 1014 1477 517 504 488 508 484 513 489 506 486 510 482 514 488 1478 516 1475 509 1483 511 1480 514 1477 517 1474 510 1482 512 1478 516 505 487 509 483 50770 1009 1481 513 508 484 512 490 506 486 510 482 514 488 508 484 1481 513 1478 516 1475 509 1483 511 1480 514 1477 517 1475 509 1482 512 509 483 513 489
#
name: VOL-
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 1010 1508 486 509 483 513 489 507 485 512 490 505 487 510 482 1509 485 511 491 1501 483 1509 485 1507 487 1504 490 1502 482 1509 485 511 491 1500 484 50779 1010 1506 488 508 484 512 490 505 487 509 483 513 489 506 486 1506 488 507 485 1506 488 1503 481 1510 484 1508 486 1505 489 1503 481 514 488 1503 491
#
name: POWER
type: parsed
protocol: NECext
address: BA A0 00 00
command: 4C B3 00 00
#
name: MUTE
type: parsed
protocol: NECext
address: BA A0 00 00
command: 01 FD 00 00
#
name: POWER
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 1004 1513 481 515 487 1478 516 505 487 510 482 1484 510 1481 513 508 484 512 490 1475 509 513 489 1477 507 1484 510 511 481 515 487 1479 515 1474 510 50774 1005 1484 510 513 489 1476 508 513 489 508 484 1482 512 1479 515 506 486 511 481 1483 511 512 490 1475 509 1483 511 510 482 515 487 1504 490 1475 509 50777 1013 1503 491 506 486 1505 489 507 485 512 490 1501 483 1508 486 510 482 514 488 1503 481 515 487 1504 490 1500 484 512 490 506 486 1506 488 1502 482
#
name: MUTE
type: raw
frequency: 38000
duty_cycle: 0.330000
data: 1014 1477 507 514 488 508 484 512 490 505 487 509 483 513 489 507 485 1480 514 1477 517 1475 509 1483 511 1480 514 1477 517 1475 509 1482 512 508 484 50774 1004 1486 508 513 489 507 485 511 491 504 488 508 484 513 489 505 487 1479 515 1476 508 1484 510 1481 513 1478 516 1475 509 1482 512 1480 514 507 485 50771 1007 1507 487 509 483 513 489 507 485 511 481 515 487 508 484 513 489 1502 482 1483 511 1481 513 1479 515 1476 508 1484 510 1481 513 1478 516 506 486
#
name: POWER
type: parsed
protocol: NECext
address: BA 4B 00 00
command: 4C B3 00 00
#
name: MUTE
type: parsed
protocol: NECext
address: BA 4B 00 00
command: 01 FE 00 00
#
name: VOL+
type: parsed
protocol: NECext
address: 83 22 00 00
command: 0A F5 00 00
#
name: VOL-
type: parsed
protocol: NECext
address: 83 22 00 00
command: 01 FE 00 00
#
name: VOL+
type: parsed
protocol: NEC
address: 35 00 00 00
command: 45 00 00 00
#
name: VOL-
type: parsed
protocol: NEC
address: 35 00 00 00
command: 1B 00 00 00
#
name: POWER
type: parsed
protocol: NEC
address: 35 00 00 00
command: 09 00 00 00
#
name: MUTE
type: parsed
protocol: NEC
address: 35 00 00 00
command: 51 00 00 00
#
name: POWER
type: parsed
protocol: NECext
address: 83 22 00 00
command: 08 F7 00 00
#
name: VOL+
type: parsed
protocol: NECext
address: 0A 1D 00 00