Skip to content

Commit 426c48b

Browse files
committed
fixed special characters in comments
1 parent a25a8c3 commit 426c48b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

hardware/Limitless.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,14 @@ const unsigned char RGBWSetColorToWhiteGroup4[3]={0xCB,0x0,0x55}; //SET COLOR TO
8989
unsigned char RGBWSetBrightnessLevel[3]={0x4E,0,0x55};
9090
//LIMITLESSLED RGBW DIRECT BRIGHTNESS SETTING is by a 3BYTE COMMAND: (First send the Group ON for the group you want to set the brightness for. You send the group ON command 100ms before sending the 4E 00 55)
9191
//Byte1: 0x4E (decimal: 78)
92-
//Byte2: 0�00 to 0xFF (full brightness 0x3B)
93-
//Byte3: Always 0�55 (decimal: 85)
92+
//Byte2: 0x00 to 0xFF (full brightness 0x3B)
93+
//Byte3: Always 0x55 (decimal: 85)
9494

9595
unsigned char RGBWSetColor[3]={0x40,0,0x55};
9696
//LIMITLESSLED RGBW COLOR SETTING is by a 3BYTE COMMAND: (First send the Group ON for the group you want to set the color for. You send the group ON command 100ms before sending the 40)
97-
//Byte1: 0�40 (decimal: 64)
98-
//Byte2: 0�00 to 0xFF (255 colors) Color Matrix Chart [COMING SOON]
99-
//Byte3: Always 0�55 (decimal: 85)
97+
//Byte1: 0x40 (decimal: 64)
98+
//Byte2: 0x00 to 0xFF (255 colors) Color Matrix Chart [COMING SOON]
99+
//Byte3: Always 0x55 (decimal: 85)
100100

101101
//White LEDs
102102
const unsigned char WhiteBrightnessUp[3] = { 0x3C, 0x0, 0x55 };

hardware/WOL.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ bool CWOL::SendWOLPacket(const unsigned char *pPacket)
101101

102102
bind(udpSocket, (struct sockaddr*)&udpClient, sizeof(udpClient));
103103

104-
/** make the packet as shown above **/
104+
/** make the packet as shown above **/
105105

106106
/** set server end point (the broadcast addres)**/
107107
udpServer.sin_family = AF_INET;

0 commit comments

Comments
 (0)