Skip to content

Commit 4f28bf7

Browse files
committed
missing word in comment
1 parent 9380b2b commit 4f28bf7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

wled00/src/dependencies/dmx/SparkFunDMX.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ static int currentChannel = 0;
4141
// Some new MCUs (-S2, -C3) don't have HardwareSerial(2)
4242
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 2, 0)
4343
#if SOC_UART_NUM < 3
44-
#error DMX output is not possible on your MCU, as it not have HardwareSerial(2)
44+
#error DMX output is not possible on your MCU, as it doesn't have HardwareSerial(2)
4545
#endif
4646
#endif
4747

wled00/src/dependencies/dmx/SparkFunDMX.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ Distributed as-is; no warranty is given.
2626
class SparkFunDMX {
2727
public:
2828
void initWrite(int maxChan);
29-
#if !defined(DMX_SEND_ONLY)
29+
#if !defined(DMX_SEND_ONLY)
3030
void initRead(int maxChan);
3131
uint8_t read(int Channel);
32-
#endif
32+
#endif
3333
void write(int channel, uint8_t value);
3434
void update();
3535
private:

0 commit comments

Comments
 (0)