diff --git a/README.md b/README.md index f5cd4df..ad09ebb 100644 --- a/README.md +++ b/README.md @@ -83,3 +83,17 @@ cmake .. ``` Then, open the newly created solution file located here: `build\async_rgb_led_analyzer.sln` + + +## Output Frame Format + +### Frame Type: `"pixel"` + +| Property | Type | Description | +| :--- | :--- | :--- | +| `index` | int | The index along the LED strip. Index 0 is the first LED | +| `red` | int | The red channel, [0-255] | +| `green` | int | The green channel, [0-255] | +| `blue` | int | The blue channel, [0-255] | + +Represents a single RGB pixel value diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 13aaacd..3c74c5d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -82,7 +82,9 @@ jobs: artifact: AnalyzerLibLinux - download: current artifact: AnalyzerLibWin - patterns: '*.dll' + patterns: | + *.dll + *.pdb - download: current artifact: AnalyzerLibMac - script: |