Skip to content

Commit

Permalink
increase delay + add an address
Browse files Browse the repository at this point in the history
  • Loading branch information
jamisonderek committed Aug 23, 2024
1 parent 5a6d100 commit 90609a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infrared_controller.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ void infrared_controller_send(InfraredController* controller) {

InfraredMessage message = {
.protocol = InfraredProtocolNEC,
.address = 0x00,
.address = 0x42,
.command = (controller->team == TeamRed) ? IR_COMMAND_RED_TEAM : IR_COMMAND_BLUE_TEAM};

FURI_LOG_I(
Expand Down Expand Up @@ -161,7 +161,7 @@ bool infrared_controller_receive(InfraredController* controller) {

infrared_worker_rx_start(controller->worker);

furi_delay_ms(50);
furi_delay_ms(250);

infrared_worker_rx_stop(controller->worker);

Expand Down

0 comments on commit 90609a3

Please sign in to comment.