Skip to content

Commit

Permalink
Applied changes to avoid warning that were encountered while running …
Browse files Browse the repository at this point in the history
…testing script
  • Loading branch information
harshbhosale01 committed Jul 24, 2024
1 parent dc9f9b0 commit 6745861
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ir_BluestarHeavy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ void IRsend::sendBluestarHeavy(const uint8_t data[], const uint16_t nbytes, cons
kBluestarHeavyBitMark, kBluestarHeavyOneSpace,
kBluestarHeavyBitMark, kBluestarHeavyZeroSpace,
kBluestarHeavyHdrMark, kDefaultMessageGap,
data + pos, 13, // Bytes
data + pos, nbytes, // Bytes
kBluestarHeavyFreq, true, kNoRepeat, kDutyDefault);
pos += 13; // Adjust by how many bytes of data we sent
pos += nbytes; // Adjust by how many bytes of data we sent
}
}
#endif // SEND_BLUESTARHEAVY
Expand Down

0 comments on commit 6745861

Please sign in to comment.