-
Notifications
You must be signed in to change notification settings - Fork 6
/
esp-rc-ir-front-room.yaml
1102 lines (1089 loc) · 30.1 KB
/
esp-rc-ir-front-room.yaml
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
substitutions:
node_name: esp-rc-ir-front-room
node_friendly_name: "Front Room IR Controller"
packages:
esp_common: !include shared/esp__common_core.yaml
esp32:
board: esp32dev
framework:
type: esp-idf
version: 5.1.1
platform_version: 6.4.0
globals:
# the temperature periodically transmitted to the AC unit
- id: current_temperature
type: float
restore_value: yes
initial_value: "24"
# number of missed updates; reset when toshiba_ac_temperature_sensor is updated
- id: missed_update_count
type: int
restore_value: no
initial_value: "24"
interval:
- interval: 30s
then:
lambda: |-
if (id(missed_update_count) < 12) {
id(toshiba_ac_comfort_sense_error).turn_off();
} else {
id(toshiba_ac_comfort_sense_error).turn_on();
}
id(missed_update_count) += 1;
status_led:
pin:
inverted: true
number: 13
remote_receiver:
id: ir_rx
dump: [samsung, toshiba_ac]
# dump: all
# dump: raw
pin:
inverted: true
number: 34
remote_transmitter:
- id: ir_tx
pin: 12
carrier_duty_percent: 50%
# - pin: 15
# id: rf_tx
# carrier_duty_percent: 100%
climate:
- platform: toshiba
id: toshiba_ac_front_room
name: "Toshiba AC Front Room"
model: RAC-PT1411HWRU-F
receiver_id: ir_rx
transmitter_id: ir_tx
sensor: toshiba_ac_temperature_sensor
visual:
temperature_step:
target_temperature: 1.0
current_temperature: 0.1
binary_sensor:
- platform: gpio
id: gpio_0
# name: IO0 Button
pin:
number: 0
inverted: true
mode:
input: true
pullup: true
on_click:
- min_length: 50ms
max_length: 500ms
then:
- button.press: toshiba_ac_display_toggle
- min_length: 501ms
max_length: 1000ms
then:
- switch.toggle: front_room_infotainment
sensor:
- platform: template
id: toshiba_ac_temperature_sensor
# name: Toshiba AC Temperature Sensor
unit_of_measurement: "°C"
lambda: "return id(current_temperature);"
update_interval: 30s
- platform: template
id: missed_update_count_sensor
name: Missed Temperature Update Count
lambda: "return id(missed_update_count);"
accuracy_decimals: 0
state_class: measurement
update_interval: 30s
# HA sensors we track - temperature
- platform: homeassistant
id: system_temperature_ha
entity_id: sensor.thermostat_system_temperature
on_value:
then:
- globals.set:
id: current_temperature
value: !lambda |-
auto temperature = x;
switch (id(toshiba_ac_front_room).mode) {
case climate::CLIMATE_MODE_COOL:
temperature += id(cool_offset).state;
break;
case climate::CLIMATE_MODE_HEAT:
temperature += id(heat_offset).state;
break;
default:
break;
}
ESP_LOGD("homeassistant.sensor.system_temperature_ha", "Adjusted temperature: %.1f°F", temperature);
return fahrenheit_to_celsius(temperature);
- globals.set:
id: missed_update_count
value: "0"
number:
- platform: template
id: cool_offset
name: Cool Mode Temperature Offset
entity_category: config
mode: box
optimistic: true
min_value: -5
max_value: 5
step: 0.1
initial_value: 0.5
restore_value: true
unit_of_measurement: °F
- platform: template
id: heat_offset
name: Heat Mode Temperature Offset
entity_category: config
mode: box
optimistic: true
min_value: -5
max_value: 5
step: 0.1
initial_value: 1.5
restore_value: true
unit_of_measurement: °F
switch:
- platform: gpio
id: toshiba_ac_comfort_sense_error
restore_mode: ALWAYS_ON
pin:
inverted: true
mode: OUTPUT
number: 15
- platform: template
id: ac_unit_sync
name: AC Unit Sync
optimistic: true
restore_mode: RESTORE_DEFAULT_OFF
- platform: template
id: front_room_infotainment
name: Infotainment System
lambda: "return id(pioneer_power).state || id(panasonic_power).state;"
turn_off_action:
- switch.turn_off: panasonic_power
- delay: 250ms
- switch.turn_off: pioneer_power
turn_on_action:
- switch.turn_on: pioneer_power
- delay: 250ms
- switch.turn_on: panasonic_power
- platform: template
id: panasonic_power
name: Panasonic Power
optimistic: true
restore_mode: RESTORE_DEFAULT_OFF
turn_off_action:
- remote_transmitter.transmit_panasonic:
transmitter_id: ir_tx
address: 0x4004
command: 0x0100FCFD
turn_on_action:
- remote_transmitter.transmit_panasonic:
transmitter_id: ir_tx
address: 0x4004
command: 0x01007C7D
- platform: template
id: pioneer_power
name: Pioneer Power
optimistic: true
restore_mode: RESTORE_DEFAULT_OFF
turn_off_action:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA51B
repeat:
times: 2
turn_on_action:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA51A
repeat:
times: 2
button:
- platform: template
id: nixie_a
name: Nixie A
on_press:
- remote_transmitter.transmit_nec:
transmitter_id: ir_tx
address: 0xBF00
command: 0xF609
- platform: template
id: nixie_b
name: Nixie B
on_press:
- remote_transmitter.transmit_nec:
transmitter_id: ir_tx
address: 0xBF00
command: 0xF50A
- platform: template
id: nixie_c
name: Nixie C
on_press:
- remote_transmitter.transmit_nec:
transmitter_id: ir_tx
address: 0xBF00
command: 0xF708
- platform: template
id: nixie_d
name: Nixie D
on_press:
- remote_transmitter.transmit_nec:
transmitter_id: ir_tx
address: 0xBF00
command: 0xF20D
- platform: template
id: nixie_e
name: Nixie E
on_press:
- remote_transmitter.transmit_nec:
transmitter_id: ir_tx
address: 0xBF00
command: 0xF906
- platform: template
id: nixie_u
name: Nixie U
on_press:
- remote_transmitter.transmit_nec:
transmitter_id: ir_tx
address: 0xBF00
command: 0xFA05
- platform: template
id: apple_tv_down
name: Apple TV Down
on_press:
- remote_transmitter.transmit_lg:
transmitter_id: ir_tx
data: 0xAA5500FF
nbits: 32
repeat:
times: 2
wait_time: 10ms
- platform: template
id: apple_tv_left
name: Apple TV Left
on_press:
- remote_transmitter.transmit_lg:
transmitter_id: ir_tx
data: 0xAA5501FE
nbits: 32
repeat:
times: 2
wait_time: 10ms
- platform: template
id: apple_tv_right
name: Apple TV Right
on_press:
- remote_transmitter.transmit_lg:
transmitter_id: ir_tx
data: 0xAA5502FD
nbits: 32
repeat:
times: 2
wait_time: 10ms
- platform: template
id: apple_tv_up
name: Apple TV Up
on_press:
- remote_transmitter.transmit_lg:
transmitter_id: ir_tx
data: 0xAA5503FC
nbits: 32
repeat:
times: 2
wait_time: 10ms
- platform: template
id: apple_tv_menu
name: Apple TV Menu
on_press:
- remote_transmitter.transmit_lg:
transmitter_id: ir_tx
data: 0xAA5504FB
nbits: 32
repeat:
times: 2
wait_time: 10ms
- platform: template
id: apple_tv_select
name: Apple TV Select
on_press:
- remote_transmitter.transmit_lg:
transmitter_id: ir_tx
data: 0xAA5505FA
nbits: 32
repeat:
times: 2
wait_time: 10ms
- platform: template
id: apple_tv_play
name: Apple TV Play
on_press:
- remote_transmitter.transmit_lg:
transmitter_id: ir_tx
data: 0xAA5506F9
nbits: 32
repeat:
times: 2
wait_time: 10ms
- platform: template
id: apple_tv_pause
name: Apple TV Pause
on_press:
- remote_transmitter.transmit_lg:
transmitter_id: ir_tx
data: 0xAA5507F8
nbits: 32
repeat:
times: 2
wait_time: 10ms
- platform: template
id: apple_tv_stop
name: Apple TV Stop
on_press:
- remote_transmitter.transmit_lg:
transmitter_id: ir_tx
data: 0xAA5508F7
nbits: 32
repeat:
times: 2
wait_time: 10ms
- platform: template
id: apple_tv_rewind
name: Apple TV Rewind
on_press:
- remote_transmitter.transmit_lg:
transmitter_id: ir_tx
data: 0xAA5509F6
nbits: 32
repeat:
times: 2
wait_time: 10ms
- platform: template
id: apple_tv_fast_forward
name: Apple TV Fast Forward
on_press:
- remote_transmitter.transmit_lg:
transmitter_id: ir_tx
data: 0xAA550AF5
nbits: 32
repeat:
times: 2
wait_time: 10ms
- platform: template
id: apple_tv_previous_track
name: Apple TV Previous Track
on_press:
- remote_transmitter.transmit_lg:
transmitter_id: ir_tx
data: 0xAA550BF4
nbits: 32
repeat:
times: 2
wait_time: 10ms
- platform: template
id: apple_tv_next_track
name: Apple TV Next Track
on_press:
- remote_transmitter.transmit_lg:
transmitter_id: ir_tx
data: 0xAA550CF3
nbits: 32
repeat:
times: 2
wait_time: 10ms
- platform: template
id: apple_tv_skip_back
name: Apple TV Skip Back
on_press:
- remote_transmitter.transmit_lg:
transmitter_id: ir_tx
data: 0xAA550DF2
nbits: 32
repeat:
times: 2
wait_time: 10ms
- platform: template
id: apple_tv_skip_forward
name: Apple TV Skip Forward
on_press:
- remote_transmitter.transmit_lg:
transmitter_id: ir_tx
data: 0xAA550EF1
nbits: 32
repeat:
times: 2
wait_time: 10ms
# - platform: template
# id: air_cleaner_power
# name: Air Cleaner Power
# on_press:
# - remote_transmitter.transmit_nec:
# transmitter_id: ir_tx
# address: 0x00FF
# command: 0xB04F
# - platform: template
# id: air_cleaner_sleep
# name: Air Cleaner Sleep
# on_press:
# - remote_transmitter.transmit_nec:
# transmitter_id: ir_tx
# address: 0x00FF
# command: 0x50AF
# - platform: template
# id: air_cleaner_fan_down
# name: Air Cleaner Fan Down
# on_press:
# - remote_transmitter.transmit_nec:
# transmitter_id: ir_tx
# address: 0x00FF
# command: 0xE01F
# - platform: template
# id: air_cleaner_fan_up
# name: Air Cleaner Fan Up
# on_press:
# - remote_transmitter.transmit_nec:
# transmitter_id: ir_tx
# address: 0x00FF
# command: 0x20DF
# - platform: template
# id: air_cleaner_purify_down
# name: Air Cleaner Purify Down
# on_press:
# - remote_transmitter.transmit_nec:
# transmitter_id: ir_tx
# address: 0x00FF
# command: 0xF807
# - platform: template
# id: air_cleaner_purify_up
# name: Air Cleaner Purify Up
# on_press:
# - remote_transmitter.transmit_nec:
# transmitter_id: ir_tx
# address: 0x00FF
# command: 0x08F7
# - platform: template
# id: air_cleaner_anion
# name: Air Cleaner Anion
# on_press:
# - remote_transmitter.transmit_nec:
# transmitter_id: ir_tx
# address: 0x00FF
# command: 0xA05F
# - platform: template
# id: air_cleaner_sterilize
# name: Air Cleaner Sterilize
# on_press:
# - remote_transmitter.transmit_nec:
# transmitter_id: ir_tx
# address: 0x00FF
# command: 0x40BF
# - platform: template
# id: air_cleaner_time_set
# name: Air Cleaner Time/Set
# on_press:
# - remote_transmitter.transmit_nec:
# transmitter_id: ir_tx
# address: 0x00FF
# command: 0x10EF
- platform: template
id: panasonic_power_toggle
name: Panasonic Power Toggle
on_press:
- remote_transmitter.transmit_panasonic:
transmitter_id: ir_tx
address: 0x4004
command: 0x0100BCBD
- platform: template
id: panasonic_input_button
name: Panasonic Input Button
on_press:
- remote_transmitter.transmit_panasonic:
transmitter_id: ir_tx
address: 0x4004
command: 0x0100A0A1
- platform: template
id: panasonic_ok_button
name: Panasonic Ok Button
on_press:
- remote_transmitter.transmit_panasonic:
transmitter_id: ir_tx
address: 0x4004
command: 0x01009293
- platform: template
id: panasonic_exit_button
name: Panasonic Exit Button
on_press:
- remote_transmitter.transmit_panasonic:
transmitter_id: ir_tx
address: 0x4004
command: 0x019059C8
- platform: template
id: panasonic_menu_button
name: Panasonic Menu Button
on_press:
- remote_transmitter.transmit_panasonic:
transmitter_id: ir_tx
address: 0x4004
command: 0x01004A4B
- platform: template
id: panasonic_down_button
name: Panasonic Down Button
on_press:
- remote_transmitter.transmit_panasonic:
transmitter_id: ir_tx
address: 0x4004
command: 0x0100D2D3
- platform: template
id: panasonic_up_button
name: Panasonic Up Button
on_press:
- remote_transmitter.transmit_panasonic:
transmitter_id: ir_tx
address: 0x4004
command: 0x01005253
- platform: template
id: panasonic_left_button
name: Panasonic Left Button
on_press:
- remote_transmitter.transmit_panasonic:
transmitter_id: ir_tx
address: 0x4004
command: 0x01007273
- platform: template
id: panasonic_right_button
name: Panasonic Right Button
on_press:
- remote_transmitter.transmit_panasonic:
transmitter_id: ir_tx
address: 0x4004
command: 0x0100F2F3
- platform: template
id: panasonic_return_button
name: Panasonic Return Button
on_press:
- remote_transmitter.transmit_panasonic:
transmitter_id: ir_tx
address: 0x4004
command: 0x01002B2A
- platform: template
id: panasonic_info_button
name: Panasonic Info Button
on_press:
- remote_transmitter.transmit_panasonic:
transmitter_id: ir_tx
address: 0x4004
command: 0x01009C9D
- platform: template
id: panasonic_volume_down_button
name: Panasonic Volume Down Button
on_press:
- remote_transmitter.transmit_panasonic:
transmitter_id: ir_tx
address: 0x4004
command: 0x01008485
- platform: template
id: panasonic_volume_up_button
name: Panasonic Volume Up Button
on_press:
- remote_transmitter.transmit_panasonic:
transmitter_id: ir_tx
address: 0x4004
command: 0x01000405
- platform: template
id: panasonic_mute_button
name: Panasonic Mute Button
on_press:
- remote_transmitter.transmit_panasonic:
transmitter_id: ir_tx
address: 0x4004
command: 0x01004C4D
- platform: template
id: pioneer_power_toggle
name: Pioneer Power Toggle
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA51C
repeat:
times: 2
- platform: template
id: pioneer_mute_button
name: Pioneer Mute Button
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA512
repeat:
times: 2
- platform: template
id: pioneer_mute_off_button
name: Pioneer Mute Off Button
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA552
repeat:
times: 2
- platform: template
id: pioneer_mute_on_button
name: Pioneer Mute On Button
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA551
repeat:
times: 2
- platform: template
id: pioneer_volume_down_button
name: Pioneer Volume Down Button
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA50B
repeat:
times: 2
- platform: template
id: pioneer_volume_up_button
name: Pioneer Volume Up Button
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA50A
repeat:
times: 2
- platform: template
id: pioneer_volume_down_button_x5
name: Pioneer Volume Down Button x5
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA50B
repeat:
times: 9
- platform: template
id: pioneer_volume_up_button_x5
name: Pioneer Volume Up Button x5
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA50A
repeat:
times: 9
- platform: template
id: pioneer_bass_down_button
name: Pioneer Bass Down Button
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA557
rc_code_2: 0xA501
repeat:
times: 2
- platform: template
id: pioneer_bass_up_button
name: Pioneer Bass Up Button
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA557
rc_code_2: 0xA500
repeat:
times: 2
- platform: template
id: pioneer_treble_down_button
name: Pioneer Treble Down Button
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA557
rc_code_2: 0xA503
repeat:
times: 2
- platform: template
id: pioneer_treble_up_button
name: Pioneer Treble Up Button
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA557
rc_code_2: 0xA502
repeat:
times: 2
- platform: template
id: pioneer_dimmer_button
name: Pioneer Dimmer Button
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA556
rc_code_2: 0xA506
repeat:
times: 2
- platform: template
id: pioneer_bddvd_input_button
name: Pioneer BDDVD Input Button
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA55C
rc_code_2: 0xA5C0
repeat:
times: 2
- platform: template
id: pioneer_bluetooth_input_button
name: Pioneer Bluetooth Input Button
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA55C
rc_code_2: 0xA5C4
repeat:
times: 2
- platform: template
id: pioneer_cable_sat_input_button
name: Pioneer Cable Sat Input Button
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA510
repeat:
times: 2
- platform: template
id: pioneer_game_input_button
name: Pioneer Game Input Button
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA55C
rc_code_2: 0xA5C5
repeat:
times: 2
- platform: template
id: pioneer_stream_box_input_button
name: Pioneer Stream Box Input Button
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA557
rc_code_2: 0xF536
repeat:
times: 2
- platform: template
id: pioneer_auto_direct_button
name: Pioneer Auto Direct Button
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA59A
rc_code_2: 0xA5C3
repeat:
times: 2
- platform: template
id: pioneer_stereo_button
name: Pioneer Stereo Button
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA59F
rc_code_2: 0xA5C0
repeat:
times: 2
- platform: template
id: pioneer_alc_standard_button
name: Pioneer ALC Standard Button
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA55E
rc_code_2: 0xA508
repeat:
times: 2
- platform: template
id: pioneer_surround_button
name: Pioneer Surround Button
on_press:
- remote_transmitter.transmit_pioneer:
transmitter_id: ir_tx
rc_code_1: 0xA59F
rc_code_2: 0xA5D3
repeat:
times: 2
- platform: template
id: toshiba_ac_display_toggle
name: Toshiba AC Display Toggle
on_press:
- remote_transmitter.transmit_samsung:
transmitter_id: ir_tx
data: 0xB946F50A09F6
nbits: 48
repeat:
times: 2
wait_time: 4ms
- platform: template
id: toshiba_ac_continuous_fan_toggle
name: Toshiba AC Continuous Fan Toggle
on_press:
- remote_transmitter.transmit_samsung:
transmitter_id: ir_tx
data: 0xB946F50A6996
nbits: 48
repeat:
times: 2
wait_time: 4ms
- platform: template
id: toshiba_ac_louver_angle_10_degrees
name: Toshiba AC Louver Angle 10 degrees
on_press:
- remote_transmitter.transmit_samsung:
transmitter_id: ir_tx
data: 0xB946F50A2ED1
nbits: 48
repeat:
times: 2
wait_time: 4ms
- platform: template
id: toshiba_ac_louver_angle_30_degrees
name: Toshiba AC Louver Angle 30 degrees
on_press:
- remote_transmitter.transmit_samsung:
transmitter_id: ir_tx
data: 0xB946F50A2DD2
nbits: 48
repeat:
times: 2
wait_time: 4ms
- platform: template
id: toshiba_ac_louver_angle_50_degrees
name: Toshiba AC Louver Angle 50 degrees
on_press:
- remote_transmitter.transmit_samsung:
transmitter_id: ir_tx
data: 0xB946F50A2CD3
nbits: 48
repeat:
times: 2
wait_time: 4ms
- platform: template
id: toshiba_ac_louver_angle_70_degrees
name: Toshiba AC Louver Angle 70 degrees
on_press:
- remote_transmitter.transmit_samsung:
transmitter_id: ir_tx
data: 0xB946F50A2BD4
nbits: 48
repeat:
times: 2
wait_time: 4ms
- platform: template
id: toshiba_ac_louver_angle_90_degrees
name: Toshiba AC Louver Angle 90 degrees
on_press:
- remote_transmitter.transmit_samsung:
transmitter_id: ir_tx
data: 0xB946F50A2AD5
nbits: 48
repeat:
times: 2
wait_time: 4ms
# String lights receiver uses modified JVC protocol:
# swap dst->item() bits and HEADER_HIGH_US = 2000, HEADER_LOW_US = 550, BIT_ONE_LOW_US = 1000, BIT_ZERO_LOW_US = 500, BIT_HIGH_US = 550
# - platform: template
# name: String Lights Off Button
# on_press:
# - remote_transmitter.transmit_jvc:
# transmitter_id: rf
# data: 0xAA01
# repeat:
# times: 40
# wait_time: 7ms
# - platform: template
# name: String Lights On Button
# on_press:
# - remote_transmitter.transmit_jvc:
# transmitter_id: rf
# data: 0xAA08
# repeat:
# times: 40
# wait_time: 7ms
# - platform: template
# name: String Lights Brighter Button
# on_press:
# - remote_transmitter.transmit_jvc:
# transmitter_id: rf
# data: 0xAA04
# repeat:
# times: 12
# wait_time: 7ms
# - platform: template
# name: String Lights Dimmer Button
# on_press:
# - remote_transmitter.transmit_jvc:
# transmitter_id: rf
# data: 0xAA02
# repeat:
# times: 12
# wait_time: 7ms
# - platform: template
# name: String Lights Red Button
# on_press:
# - remote_transmitter.transmit_jvc:
# transmitter_id: rf
# data: 0xAA10
# repeat:
# times: 40
# wait_time: 7ms
# - platform: template
# name: String Lights Green Button
# on_press:
# - remote_transmitter.transmit_jvc:
# transmitter_id: rf
# data: 0xAA20
# repeat:
# times: 40
# wait_time: 7ms
# - platform: template
# name: String Lights Blue Button
# on_press:
# - remote_transmitter.transmit_jvc:
# transmitter_id: rf
# data: 0xAA40
# repeat:
# times: 40
# wait_time: 7ms
# - platform: template
# name: String Lights White Button
# on_press:
# - remote_transmitter.transmit_jvc:
# transmitter_id: rf
# data: 0xAA80
# repeat:
# times: 40
# wait_time: 7ms
# - platform: template
# name: String Lights Amber Button
# on_press:
# - remote_transmitter.transmit_jvc:
# transmitter_id: rf
# data: 0xAA82
# repeat:
# times: 40
# wait_time: 7ms
# - platform: template
# name: String Lights Yellow Button
# on_press:
# - remote_transmitter.transmit_jvc:
# transmitter_id: rf
# data: 0xAA05
# repeat:
# times: 40
# wait_time: 7ms
# - platform: template
# name: String Lights Light Blue Button
# on_press:
# - remote_transmitter.transmit_jvc:
# transmitter_id: rf
# data: 0xAA09