Skip to content

Commit 6745861

Browse files
Applied changes to avoid warning that were encountered while running testing script
1 parent dc9f9b0 commit 6745861

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ir_BluestarHeavy.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ void IRsend::sendBluestarHeavy(const uint8_t data[], const uint16_t nbytes, cons
4949
kBluestarHeavyBitMark, kBluestarHeavyOneSpace,
5050
kBluestarHeavyBitMark, kBluestarHeavyZeroSpace,
5151
kBluestarHeavyHdrMark, kDefaultMessageGap,
52-
data + pos, 13, // Bytes
52+
data + pos, nbytes, // Bytes
5353
kBluestarHeavyFreq, true, kNoRepeat, kDutyDefault);
54-
pos += 13; // Adjust by how many bytes of data we sent
54+
pos += nbytes; // Adjust by how many bytes of data we sent
5555
}
5656
}
5757
#endif // SEND_BLUESTARHEAVY

0 commit comments

Comments
 (0)