Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- esphome:
- name: esp32-d1-mini
- devices:
- - id: radio_control_device
- name: "Radio Control"
- external_components:
- - source: github://pr#6300
- components: [ cc1101 ]
- esp32:
- board: esp32dev
- framework:
- type: arduino
- # Enable logging
- logger:
- # Enable Home Assistant API
- api:
- encryption:
- key: "abcd"
- ota:
- platform: esphome
- password: "abcd"
- wifi:
- ssid: !secret wifi_ssid
- password: !secret wifi_password
- web_server:
- port: 80
- spi:
- clk_pin: GPIO18
- miso_pin: GPIO19
- mosi_pin: GPIO23
- cc1101:
- id: transceiver
- cs_pin: GPIO5
- number:
- - platform: cc1101
- tuner:
- frequency:
- id: tuner_frequency
- name: "Tuner Frequency (kHz)"
- remote_transmitter:
- id: cc1101_transmitter
- pin: GPIO33 # This is GDO0
- carrier_duty_percent: 100%
- on_transmit:
- then:
- - cc1101.begin_tx: transceiver
- on_complete:
- then:
- - cc1101.end_tx: transceiver
- script:
- - id: radio_tx
- mode: queued # Enforce that transmissions don't overlap
- parameters:
- freq_khz: int
- code: int[]
- trailing_delay: bool
- then:
- - number.set: # Set the broadcast frequency
- id: tuner_frequency
- value: !lambda 'return freq_khz;' # use the parameter
- - delay: 3ms
- - lambda: |-
- esphome::remote_base::RawTimings timings;
- timings.reserve(code.size());
- for (auto v : code)
- timings.push_back(static_cast<int32_t>(v));
- auto call = id(cc1101_transmitter).transmit();
- call.get_data()->set_data(timings);
- call.set_send_times(2);
- call.set_send_wait(10);
- call.perform();
- - delay: !lambda 'return trailing_delay ? 700 : 0;'
- button:
- - platform: template
- id: hallway_bedroom_light
- icon: "mdi:ceiling-fan-light"
- name: Hallway Bedroom Light
- on_press:
- - lambda: |-
- std::vector<int> timings{461,-356,425,-356,469,-352,441,-354,441,-350,441,-354,445,-354,445,-356,443,-356,443,-352,447,-356,445,-5176,843,-346,425,-788,417,-780,837,-364,835,-346,447,-742,869,-324,843,-386,419,-752,477,-744,415,-788,829,-384,401,-766,859,-348,439,-758,855,-346,835,-378,429,-754,441,-778,431,-746,427,-776,437,-746,441,-766,449,-750,841,-374,831,-348,841,-386,817,-350,467,-744,443,-750,849,-350,439,-774,837,-350,795,-454,341,-852,385,-812,377,-820,383,-826,343,-832,387,-824,377,-798,421,-782,409,-808,819,-380,793,-384,425,-778,411,-804,415,-760,415,-802,413,-776,433,-778,419,-746,441,-778,849,-324,847,-384,425,-772,443,-740,839,-362,849,-352,847,-354,851,-352,823,-380,837,-352,823,-386,835,-354,429,-25634,429,-352,463,-350,439,-350,409,-420,407,-390,375,-424,373,-422,409,-392,373,-424,409,-390,411,-390,409,-5184,805,-380,423,-792,411,-798,821,-380,797,-362,453,-776,801,-386,847,-352,457,-752,431,-754,425,-774,831,-382,429,-774,823,-380,415,-780,815,-372,839,-364,413,-784,443,-744,439,-778,411,-782,445,-744,451,-752,445,-740,873,-332,855,-354,853,-326,841,-386,421,-780,441,-744,843,-358,449,-750,841,-366,839,-344,427,-768,441,-780,431,-746,449,-752,459,-744,449,-752,425,-782,427,-776,431,-772,815,-356,839,-384,423,-752,475,-744,417,-782,445,-748,415,-786,447,-750,451,-754,433,-746,853,-356,859,-346,445,-746,439,-774,839,-356,849,-352,825,-358,861,-352,823,-362,845,-384,823,-364,805,-378,449};
- id(radio_tx).execute(433920, timings, true);
- device_id: radio_control_device
- - platform: template
- id: hallway_bedroom_fan_off
- name: Hallway Bedroom Fan Off
- icon: "mdi:fan-off"
- on_press:
- - button.press: hallway_bedroom_fan_up # We don't know the state. Turn it on beforehand.
- - button.press: hallway_bedroom_fan # Now toggle it off.
- device_id: radio_control_device
- - platform: template
- id: hallway_bedroom_fan_speed_1
- icon: "mdi:fan-speed-1"
- name: Hallway Bedroom Fan Speed 1
- on_press:
- - button.press: hallway_bedroom_fan_off
- - delay: 10ms # This yields to the system to reduce perceived runtime according to "Component web_server took a long time for an operation" warnings.
- - button.press: hallway_bedroom_fan_up
- device_id: radio_control_device
- - platform: template
- id: hallway_bedroom_fan_speed_2
- name: Hallway Bedroom Fan Speed 2
- icon: "mdi:fan-speed-2"
- on_press:
- - button.press: hallway_bedroom_fan_off
- - delay: 10ms
- - button.press: hallway_bedroom_fan_up
- - delay: 10ms
- - button.press: hallway_bedroom_fan_up
- device_id: radio_control_device
- - platform: template
- id: hallway_bedroom_fan_speed_3
- name: Hallway Bedroom Fan Speed 3
- icon: "mdi:fan-speed-3"
- on_press:
- - button.press: hallway_bedroom_fan_up
- - delay: 10ms
- - button.press: hallway_bedroom_fan_up
- - delay: 10ms
- - button.press: hallway_bedroom_fan_up
- device_id: radio_control_device
- - platform: template
- id: hallway_bedroom_fan
- name: Hallway Bedroom Fan
- icon: "mdi:fan"
- on_press:
- - lambda: |-
- std::vector<int> timings{453,-344,459,-352,403,-414,371,-422,409,-390,375,-424,375,-424,407,-388,409,-388,377,-422,409,-392,411,-5172,803,-414,435,-746,413,-800,837,-356,821,-380,429,-774,825,-380,837,-354,435,-744,443,-772,447,-750,815,-398,413,-756,843,-368,451,-736,847,-368,821,-382,421,-784,415,-778,415,-770,443,-776,429,-784,415,-752,457,-746,837,-354,841,-384,821,-354,841,-382,409,-776,441,-776,811,-358,445,-754,817,-400,841,-342,425,-786,449,-754,411,-770,441,-774,431,-778,391,-808,409,-778,419,-772,445,-754,449,-756,431,-784,389,-806,409,-776,819,-386,447,-752,413,-768,451,-760,837,-366,833,-362,839,-382,831,-326,847,-382,819,-364,839,-382,819,-364,443,-770,805,-386,839,-352,817,-390,445,-748,411,-800,411,-25638,429,-358,461,-324,467,-352,441,-350,441,-354,445,-354,443,-356,443,-352,477,-320,447,-356,443,-354,477,-5134,835,-348,453,-776,439,-754,843,-350,855,-350,439,-740,873,-332,821,-386,451,-754,445,-748,447,-754,841,-386,389,-776,805,-444,331,-864,759,-438,745,-452,369,-814,355,-840,409,-816,355,-812,411,-786,385,-812,409,-786,809,-398,817,-380,815,-392,833,-356,423,-778,421,-772,847,-358,415,-778,843,-346,857,-346,423,-800,411,-772,435,-776,391,-812,407,-780,419,-768,441,-752,449,-756,449,-770,417,-786,401,-766,461,-746,449,-748,857,-346,449,-766,417,-752,437,-764,859,-378,797,-364,845,-384,791,-390,857,-354,819,-366,847,-346,853,-378,391,-792,841,-378,823,-366,819,-384,387,-780,447,-782,383};
- id(radio_tx).execute(433920, timings, true);
- device_id: radio_control_device
- - platform: template
- id: hallway_bedroom_fan_up
- name: Hallway Bedroom Fan Up
- icon: "mdi:fan-chevron-up"
- on_press:
- - lambda: |-
- std::vector<int> timings{459,-378,415,-402,377,-420,411,-394,413,-358,411,-388,443,-358,447,-360,415,-388,413,-392,411,-386,413,-5188,805,-378,447,-746,425,-776,835,-382,803,-386,435,-746,841,-356,871,-348,445,-748,427,-772,435,-776,839,-356,451,-748,845,-332,455,-760,845,-366,817,-384,389,-802,449,-748,415,-786,449,-746,413,-768,441,-778,433,-742,871,-356,815,-386,851,-322,841,-388,421,-748,441,-778,847,-324,449,-778,847,-330,841,-380,423,-770,451,-740,447,-750,453,-760,413,-798,413,-772,435,-776,419,-772,445,-742,837,-362,449,-750,449,-760,441,-764,423,-748,453,-762,415,-800,441,-748,435,-778,837,-354,813,-386,849,-322,447,-780,839,-336,851,-376,839,-344,831,-360,849,-384,821,-380,823,-366,809,-380,423,-774,445,-25598,447,-336,473,-324,487,-318,469,-350,439,-352,445,-354,445,-354,443,-354,447,-354,445,-356,441,-354,441,-5172,837,-336,473,-736,443,-766,845,-380,815,-358,417,-786,843,-366,825,-386,417,-768,417,-782,447,-756,805,-394,419,-776,819,-358,465,-748,841,-356,849,-348,423,-770,449,-746,447,-770,415,-784,443,-738,441,-774,433,-780,813,-352,873,-344,837,-364,857,-348,423,-768,441,-776,827,-348,441,-770,823,-382,835,-352,441,-776,411,-768,447,-750,415,-796,439,-742,423,-770,441,-772,447,-740,441,-786,809,-382,439,-756,443,-742,441,-768,441,-776,431,-750,427,-778,435,-752,455,-750,835,-380,839,-350,835,-346,441,-770,807,-382,865,-322,841,-382,835,-362,819,-386,849,-324,843,-386,851,-324,443,-778,415};
- id(radio_tx).execute(433920, timings, true);
- device_id: radio_control_device
- - platform: template
- id: hallway_bedroom_fan_down
- name: Hallway Bedroom Fan Down
- icon: "mdi:fan-chevron-down"
- on_press:
- - lambda: |-
- std::vector<int> timings{459,-376,401,-386,437,-352,443,-354,445,-354,443,-386,409,-356,445,-356,445,-388,407,-386,413,-388,411,-5174,849,-348,447,-742,443,-774,839,-356,853,-322,469,-740,837,-364,857,-354,419,-782,445,-746,441,-754,849,-354,453,-752,853,-344,443,-760,853,-344,837,-380,425,-758,445,-760,421,-756,453,-742,451,-752,453,-758,415,-768,843,-382,817,-358,843,-380,823,-354,445,-756,449,-748,855,-352,423,-774,845,-354,823,-386,439,-744,447,-756,449,-742,445,-752,449,-776,413,-786,419,-782,445,-752,419,-782,841,-334,447,-750,449,-750,437,-768,461,-750,453,-748,419,-770,439,-752,871,-352,455,-748,813,-374,839,-380,395,-788,849,-354,819,-350,877,-354,819,-350,879,-354,823,-356,859,-354,407,-776,863,-354,437,-25574,483,-328,453,-352,463,-350,439,-354,443,-354,445,-354,443,-354,443,-356,443,-356,445,-352,443,-352,445,-5176,825,-354,451,-754,449,-744,873,-330,845,-352,449,-754,845,-352,859,-324,485,-742,419,-776,449,-746,845,-360,451,-756,811,-362,449,-756,843,-370,833,-348,451,-748,489,-720,459,-744,439,-746,441,-774,413,-782,445,-776,807,-364,853,-354,851,-358,813,-384,421,-778,445,-746,843,-354,451,-756,809,-396,841,-344,425,-788,417,-782,411,-768,443,-774,431,-776,421,-778,409,-776,419,-782,445,-748,847,-356,447,-750,413,-770,441,-774,435,-780,451,-720,459,-746,451,-746,819,-410,399,-766,855,-380,829,-328,449,-770,835,-358,841,-384,811,-360,841,-384,815,-358,851,-352,815,-386,449,-756,815,-360,445};
- id(radio_tx).execute(433920, timings, true);
- device_id: radio_control_device
- - platform: template
- name: Master Light
- icon: "mdi:ceiling-fan-light"
- on_press:
- - lambda: |-
- std::vector<int> timings{205,-406,123,-418,125,-190,345,-406,129,-406,129,-184,335,-248,285,-212,341,-208,299,-408,133,-428,103,-416,139,-6230,173,-386,139,-374,177,-174,343,-374,173,-382,141,-206,317,-218,309,-226,327,-202,333,-376,135,-394,139,-416,141,-6226,173,-390,141,-374,177,-180,359,-334,159,-388,165,-212,327,-180,361,-180,327,-218,317,-390,135,-396,139,-378,177,-6224,175,-352,155,-372,161,-216,327,-388,159,-372,163,-182,333,-188,335,-222,335,-186,337,-392,135,-394,139,-416,141,-6226,173,-388,141,-374,175,-180,357,-334,159,-390,167,-212,327,-216,327,-180,327,-216,315,-384,161,-372,163,-372,131,-6278,133,-394,165,-358,165,-178,335,-400,123,-428,137,-198,311,-228,327,-202,333,-204,299,-406,127,-402,163,-372,163,-6216,167,-362,195,-358,165,-178,361,-340,185,-378,167,-174,363,-180,327,-216,325,-218,313,-384,135,-394,139,-380,177,-6224,173,-352,157,-368,193,-184,329,-392,137,-394,169,-178,339,-192,321,-230,327,-204,331,-376,137,-392,175,-380,143,-6226,177,-350,177,-374,177,-182,325,-370,157,-356,197,-174,363,-180,327,-216,327,-216,313,-386,135,-394,139,-382,155,-6242,169,-374,161,-372,163,-182,333,-376,161,-390,129,-240,305,-216,303,-220,317,-230,331,-376,137,-394,137,-382,177,-6224,175,-350,177,-372,177,-180,357,-334,161,-390,165,-212,325,-180,363,-180,327,-218,315,-384,127,-402,163,-374,129,-6256,167,-356,161,-390,165,-208,303,-400,141,-376,153,-188,345,-224,293,-234,331,-204,297,-408,135,-394,139,-416,121,-6236,169,-394,137,-394,141,-208,317,-374,173,-388,141,-208,317,-186,339,-228,327,-204,331,-376,137,-394,139,-380,175,-6230,175,-382,141,-372,177,-180,323,-370,159,-388,165,-212,325,-182,361,-182,325,-218,315,-386,137,-394,139,-380,177,-6226,175,-348,177,-372,177,-180,323,-372,157,-386,167,-210,327,-180,361,-182,325,-218,317,-388,135,-394,139,-380,155,-6226,175,-348,177,-372,177,-180,323,-372,157,-386,167,-210,327,-180,361,-182,325,-218,317,-388,135,-394,139,-380,155};
- id(radio_tx).execute(350000, timings, true);
- device_id: radio_control_device
- - platform: template
- name: Master Fan Off
- icon: "mdi:fan-off"
- on_press:
- - lambda: |-
- std::vector<int> timings{197,-400,127,-378,161,-204,325,-374,155,-380,161,-202,325,-214,325,-216,325,-216,309,-380,129,-404,129,-216,331,-6258,131,-402,127,-382,161,-204,325,-406,123,-380,161,-206,325,-216,325,-216,327,-216,311,-382,137,-392,139,-208,325,-6266,133,-394,135,-394,139,-208,325,-376,175,-386,141,-208,317,-184,341,-226,327,-204,331,-376,137,-392,139,-208,327,-6264,129,-406,131,-372,161,-212,335,-374,165,-358,167,-208,305,-216,333,-190,321,-232,331,-376,137,-394,139,-208,327,-6266,135,-392,135,-394,141,-208,321,-374,175,-386,141,-206,319,-186,339,-228,325,-202,335,-376,137,-394,139,-208,325,-6264,133,-394,135,-394,175,-174,325,-374,173,-388,141,-206,319,-186,339,-228,325,-204,333,-376,135,-394,139,-208,325,-6266,133,-394,135,-394,175,-174,323,-376,173,-388,141,-206,319,-184,341,-226,327,-202,333,-378,135,-394,139,-208,325,-6270,133,-394,137,-394,141,-206,321,-374,175,-386,141,-208,317,-186,339,-228,325,-204,331,-378,135,-394,139,-208,325,-6266,133,-394,135,-394,141,-208,323,-374,175,-386,141,-208,317,-186,339,-228,325,-204,331,-376,135,-394,175,-172,327,-6256,133,-392,169,-360,175,-174,331,-376,157,-372,159,-216,329,-216,315,-212,337,-204,297,-406,137,-394,139,-208,325,-6268,133,-394,137,-394,141,-208,319,-374,175,-386,141,-208,319,-184,339,-228,323,-202,331,-378,137,-394,139,-208,327,-6234,169,-394,135,-396,139,-208,317,-374,175,-386,143,-206,317,-186,339,-228,325,-204,331,-376,137,-394,139,-208,325,-6236,167,-394,137,-394,141,-208,317,-374,175,-386,141,-208,317,-184,341,-226,325,-204,331,-376,137,-394,139,-208,327,-6234,169,-374,163,-372,163,-182,333,-376,161,-390,165,-204,305,-184,335,-218,319,-230,329,-376,135,-394,139,-208,327,-6238,167,-376,161,-372,163,-182,333,-376,159,-390,165,-176,333,-186,335,-218,315,-230,329,-376,137,-392,175,-174,327,-6268,135,-392,137,-394,141,-208,321,-372,175,-384,141,-206,319,-184,341,-226,327,-204,331,-376,135,-394,139,-208,327};
- id(radio_tx).execute(350000, timings, true);
- device_id: radio_control_device
- - platform: template
- name: Master Fan Speed 1
- icon: "mdi:fan-speed-1"
- on_press:
- - lambda: |-
- std::vector<int> timings{207,-362,167,-364,169,-214,327,-372,123,-388,159,-206,361,-180,327,-216,325,-390,129,-372,161,-374,161,-182,333,-6264,139,-368,171,-366,167,-210,303,-402,123,-394,157,-188,343,-204,339,-206,335,-378,135,-394,139,-378,175,-208,311,-6230,169,-394,137,-390,143,-176,345,-372,157,-374,161,-186,351,-214,315,-212,305,-410,135,-396,139,-378,177,-174,343,-6228,169,-394,137,-390,141,-208,315,-404,125,-374,159,-186,353,-214,313,-210,339,-378,135,-394,139,-378,155,-220,313,-6248,165,-342,161,-406,129,-212,333,-374,167,-362,165,-208,305,-216,335,-190,319,-402,135,-394,173,-348,177,-206,313,-6226,167,-394,137,-394,141,-208,317,-374,157,-374,161,-184,353,-214,315,-212,305,-408,137,-394,139,-412,123,-220,315,-6238,167,-374,129,-404,129,-212,335,-374,167,-362,169,-212,327,-180,363,-180,325,-394,137,-394,135,-394,139,-208,325,-6236,169,-394,139,-392,141,-206,317,-372,157,-374,159,-216,325,-214,313,-210,305,-410,135,-394,139,-378,155,-188,345,-6250,135,-392,169,-360,173,-174,329,-376,173,-388,141,-206,319,-186,339,-228,325,-376,135,-394,173,-382,141,-206,313,-6228,167,-394,137,-394,141,-206,319,-372,157,-374,159,-186,355,-212,315,-212,337,-378,135,-396,139,-410,123,-188,347,-6250,133,-394,135,-394,175,-174,325,-374,175,-386,141,-206,319,-216,311,-226,327,-376,137,-394,139,-378,177,-206,313,-6228,161,-372,163,-372,163,-182,333,-376,161,-392,165,-204,305,-216,303,-220,315,-402,135,-394,173,-382,123,-220,315,-6246,135,-392,137,-394,139,-208,325,-372,175,-386,141,-372,175,-368,139,-366,169,-364,169,-362,169,-362,167,-364,169,-6218,177,-336,171,-366,167,-180,363,-340,153,-378,161,-390,167,-358,167,-362,167,-364,167,-364,167,-364,167,-364,169,-6208,177,-338,171,-368,169,-182,363,-340,153,-376,161,-392,165,-360,167,-362,167,-364,167,-364,167,-362,167,-362,167,-6222,177,-334,171,-364,167,-216,327,-340,153,-380,161,-390,165,-360,167,-360,167,-362,169,-362,167,-364,167,-364,167};
- id(radio_tx).execute(350000, timings, true);
- device_id: radio_control_device
- - platform: template
- name: Master Fan Speed 2
- icon: "mdi:fan-speed-2"
- on_press:
- - lambda: |-
- std::vector<int> timings{293,-276,187,-380,163,-212,327,-370,123,-414,131,-206,325,-216,327,-214,325,-394,135,-394,137,-210,303,-414,127,-6232,165,-392,135,-392,137,-212,307,-420,137,-388,139,-206,321,-216,311,-228,293,-406,137,-392,139,-242,293,-378,157,-6250,131,-404,129,-400,127,-228,305,-404,137,-400,137,-214,321,-216,325,-216,327,-356,171,-394,133,-214,307,-398,137,-6246,137,-394,139,-380,155,-220,313,-392,135,-394,139,-206,325,-218,313,-228,293,-406,135,-392,139,-242,293,-414,139,-6240,137,-394,139,-376,177,-174,343,-372,155,-406,139,-208,299,-220,315,-228,295,-406,137,-394,137,-208,327,-410,125,-6260,131,-392,135,-394,169,-214,303,-394,137,-390,139,-206,321,-216,311,-228,293,-406,135,-394,173,-174,327,-378,157,-6260,133,-392,137,-392,137,-212,339,-392,137,-388,141,-206,319,-218,309,-228,293,-408,135,-394,137,-208,327,-378,157,-6260,131,-392,135,-394,169,-178,339,-392,137,-392,139,-206,321,-218,311,-226,295,-408,135,-394,139,-208,325,-378,173,-6246,139,-390,141,-374,177,-174,341,-372,155,-370,173,-210,297,-220,315,-228,295,-406,135,-392,139,-208,327,-378,157,-6250,131,-392,169,-360,169,-214,305,-400,137,-392,139,-206,321,-218,311,-226,295,-406,135,-394,139,-208,327,-378,155,-6254,131,-394,167,-360,169,-214,303,-398,137,-392,139,-206,321,-216,311,-228,293,-406,137,-394,137,-208,327,-378,157,-6260,131,-392,135,-394,169,-178,339,-392,137,-390,139,-208,321,-216,311,-228,293,-408,135,-394,139,-208,327,-408,125,-6262,131,-392,135,-394,135,-212,339,-392,139,-388,139,-206,321,-216,311,-226,295,-406,137,-394,139,-208,327,-376,157,-6232,165,-394,135,-394,137,-212,305,-384,157,-406,129,-372,163,-374,161,-372,159,-376,161,-384,129,-392,131,-394,167,-6202,177,-370,139,-370,169,-216,327,-370,123,-414,129,-392,129,-396,165,-362,167,-364,167,-362,167,-364,167,-364,167,-6220,141,-368,171,-366,167,-216,327,-370,123,-382,161,-390,129,-394,167,-362,167,-362,167,-364,167,-364,167,-362,167};
- id(radio_tx).execute(350000, timings, true);
- device_id: radio_control_device
- - platform: template
- name: Master Fan Speed 3
- icon: "mdi:fan-speed-3"
- on_press:
- - lambda: |-
- std::vector<int> timings{231,-360,169,-360,171,-178,339,-394,137,-392,141,-208,319,-184,341,-226,295,-406,135,-212,307,-422,125,-404,129,-6258,133,-394,137,-394,135,-214,343,-376,137,-392,139,-208,321,-216,311,-228,327,-374,137,-212,337,-392,139,-388,141,-6232,175,-382,121,-384,177,-174,325,-414,137,-386,141,-206,321,-216,309,-226,295,-408,135,-212,339,-388,125,-372,161,-6262,133,-370,157,-378,161,-202,327,-376,157,-372,155,-222,325,-214,325,-218,325,-360,135,-212,339,-390,125,-404,129,-6232,165,-394,137,-394,135,-214,341,-378,135,-394,139,-208,321,-218,309,-226,325,-376,135,-248,303,-390,125,-374,161,-6232,163,-396,137,-394,135,-214,307,-408,137,-392,139,-208,321,-218,311,-226,295,-406,135,-248,301,-392,125,-372,161,-6264,131,-394,137,-394,135,-212,343,-378,135,-394,139,-206,323,-216,311,-228,293,-408,135,-212,339,-390,125,-372,163,-6250,131,-396,173,-358,171,-180,345,-380,137,-394,139,-206,321,-218,311,-228,293,-406,137,-212,337,-390,125,-406,129,-6264,133,-394,135,-394,135,-214,309,-408,137,-394,139,-206,323,-216,311,-228,293,-406,135,-248,305,-390,125,-406,129,-6252,131,-400,127,-382,159,-206,363,-338,153,-378,161,-206,327,-214,325,-216,327,-394,135,-214,305,-400,137,-392,139,-6238,175,-344,177,-372,175,-174,307,-402,155,-398,125,-218,313,-204,341,-206,301,-408,137,-210,307,-418,127,-404,129,-6258,131,-396,137,-392,135,-214,345,-376,127,-402,129,-216,329,-214,317,-212,305,-410,137,-212,307,-416,125,-374,161,-6230,165,-394,135,-394,135,-214,309,-408,137,-394,139,-206,321,-216,311,-228,295,-406,135,-210,339,-390,125,-404,127,-6258,133,-394,139,-394,135,-214,345,-376,127,-402,129,-216,329,-214,315,-214,305,-410,137,-212,305,-418,125,-406,129,-6232,165,-394,135,-394,137,-214,307,-408,137,-390,139,-208,321,-218,309,-228,293,-408,135,-212,339,-390,125,-372,161,-6224,165,-360,169,-394,133,-214,307,-404,137,-390,139,-374,175,-368,139,-400,139,-366,167,-366,167,-362,167,-364,167};
- id(radio_tx).execute(350000, timings, true);
- device_id: radio_control_device
Advertisement
Add Comment
Please, Sign In to add comment