Skip to content

Commit d84ae2f

Browse files
Swapped the values of the Zero and One Space
1 parent dcd6e59 commit d84ae2f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/ir_BluestarHeavy.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// @brief Support for BluestarHeavy protocol
44

55
// Supports:
6-
// Brand: Bluestar, Model: TODO add device and remote
6+
// Brand: Bluestar, Model: D716LXM0535A2400313 (Remote)
77

88
#include "IRrecv.h"
99
#include "IRsend.h"
@@ -12,8 +12,8 @@
1212
const uint16_t kBluestarHeavyHdrMark = 4912;
1313
const uint16_t kBluestarHeavyBitMark = 465;
1414
const uint16_t kBluestarHeavyHdrSpace = 5058;
15-
const uint16_t kBluestarHeavyOneSpace = 1548;
16-
const uint16_t kBluestarHeavyZeroSpace = 572;
15+
const uint16_t kBluestarHeavyOneSpace = 572;
16+
const uint16_t kBluestarHeavyZeroSpace = 1548;
1717
const uint16_t kBluestarHeavyFreq = 38000;
1818
const uint16_t kBluestarHeavyOverhead = 3;
1919

@@ -25,7 +25,7 @@ const uint16_t kBluestarHeavyOverhead = 3;
2525
/// e.g.
2626
/// @code
2727
/// uint8_t data[kBluestarHeavyStateLength] =
28-
/// {0xD5,0xFE,0xD7,0x4F,0xFA,0x5F,0xFA,0x5F,0xFF,0x7F,0x5C,0xFD,0xDC};
28+
/// {0x2A,0x00,0x20,0xD0,0x05,0xA0,0x05,0xA0,0x00,0x80,0xBA,0x02,0x23};
2929
/// @endcode
3030
/// @param[in] nbytes Nr. of bytes of data in the array.
3131
/// @param[in] repeat Nr. of times the message is to be repeated.

0 commit comments

Comments
 (0)