Skip to content

Commit b0df906

Browse files
authored
Merge pull request #76 from Legion2/refactoring
Refactoring for next release
2 parents a5b6b3c + d360a16 commit b0df906

File tree

8 files changed

+8
-6
lines changed

8 files changed

+8
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* Lighting Node CORE
1919
* LS100 Smart Lighting Controller
2020

21-
![Overview](docs/Overview.png)
21+
![Overview](extra/images/overview.png)
2222

2323
# Getting started
2424

@@ -46,20 +46,20 @@ If you have an Arduino Uno or Mega, see the [other guide](https://github.com/Leg
4646

4747
1. Open the example "LightingNodePRO", you can find it in Arduino IDE in the File menu->Examples->Corsair Lighting Protocol->LightingNodePRO or in the [examples directory](examples) if you download this project.
4848

49-
![open example sketch](docs/open-example.png)
49+
![open example sketch](extra/images/open-example.png)
5050
1. Follow [these steps](https://github.com/Legion2/CorsairLightingProtocolBoards#how-to-use-these-boards-in-arduino) to install the CLP Boards and upload the sketch to your Arduino.
5151
1. Do the wiring.
5252
For more information on [how to wire the leds](https://github.com/FastLED/FastLED/wiki/Wiring-leds) and [how to set up the LEDs in the code](https://github.com/FastLED/FastLED/wiki/Basic-usage#setting-up-the-leds) see the links.
5353

54-
![the wiring](docs/board-wiring.jpg)
54+
![the wiring](extra/images/board-wiring.jpg)
5555
1. Verify that your device works as expected.
5656
Open the Windows settings->devices->Other devices.
5757
Somewhere in the list of devices, there should be a device called "Lighting Node PRO".
5858
1. Now open [iCUE](https://www.corsair.com/icue) there should be the "Lighting Node PRO".
5959

6060
## Use the Lighting Node PRO
6161

62-
![iCUE RGB Strip example](docs/iCUE.jpg)
62+
![iCUE RGB Strip example](extra/images/iCUE.jpg)
6363

6464
In iCUE open the "Lighting Setup" tab of the Lighting Node PRO(LNP) and set for both Lighting Channels the device to "RGB Light Strip" and the amount to a tenth of the LEDs you have.
6565
iCUE groups the LEDs into groups of ten.

examples/HoodLoader2UnoMegaController/HoodLoader2UnoMegaController.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
#include <CorsairLightingProtocol.h>
1717
#include <FastLED.h>
1818

19-
#define CHANNEL_LED_COUNT 96
19+
// Hint: The Arduino Uno does not have as much memory as the Arduino Mega, it may be that problems occur when a higher value is set here.
20+
#define CHANNEL_LED_COUNT 60
2021

2122
#define DATA_PIN_CHANNEL_1 2
2223
#define DATA_PIN_CHANNEL_2 3

extra/doxygen.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -926,7 +926,7 @@ EXAMPLE_RECURSIVE = YES
926926
# that contain images that are to be included in the documentation (see the
927927
# \image command).
928928

929-
IMAGE_PATH = docs
929+
IMAGE_PATH = extra/images
930930

931931
# The INPUT_FILTER tag can be used to specify a program that doxygen should
932932
# invoke to filter for each input file. Doxygen will invoke the filter program
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

keywords.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ Command KEYWORD3
3939
FanCurve KEYWORD3
4040
LEDChannel KEYWORD3
4141
LEDGroup KEYWORD3
42+
SegmentScaling KEYWORD3
4243

4344
#######################################
4445
# Constants (LITERAL1)

0 commit comments

Comments
 (0)