You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/software_overview-arduino.md
+12-96Lines changed: 12 additions & 96 deletions
Original file line number
Diff line number
Diff line change
@@ -295,101 +295,6 @@ While users are free to choose any Arduino library that provides support for MAX
295
295
296
296
297
297
298
-
### WS2812 RGB LED
299
-
Users are free to choose any Arduino library that provides support for WS2812 LEDs. However, we recommend the [FastLED Arduino library](https://github.com/FastLED/FastLED/); as it has been tested and verified to work with the RGB LED on the RA6M5 Thing Plus.
300
-
301
-
302
-
!!! warning
303
-
While support for the new Renesas Arduino boards has not been officially released for the FastLED Arduino library, the hardware modifications have been integrated into the GitHub repository. Therefore, users can manually download and install the FastLED Arduino library for *unofficial* support of the Renesas Arduino boards.
304
-
305
-
306
-
<divclass="grid"markdown>
307
-
308
-
<divmarkdown>
309
-
310
-
!!! tip "Manually Download the Arduino Library"
311
-
For users who would like to manually download and install the library, the `*.zip` file can be accessed from the [GitHub repository](https://github.com/FastLED/FastLED/) or downloaded by clicking the button below.
312
-
313
-
<center>
314
-
[:octicons-download-16:{ .heart } Download the Arduino Library](https://github.com/FastLED/FastLED/archive/refs/heads/master.zip){ .md-button .md-button--primary }

325
-
</figure>
326
-
327
-
---
328
-
329
-
**Installing an Arduino Library**</a>
330
-
331
-
</div>
332
-
333
-
</div>
334
-
335
-
336
-
!!! abstract "Add Support for the RA6M5 Thing Plus"
337
-
In addition to manually installing the Arduino library, users will also need to integrate the RA6M5 Thing Plus into the FastLED Arduino library with the [porting instructions](https://github.com/FastLED/FastLED/blob/master/PORTING.md). This requires users to include the {++highlighted lines++} before {==line 94==} in the [`fastpin_arm_renesas.h`](https://github.com/FastLED/FastLED/blob/master/src/platforms/arm/renesas/fastpin_arm_renesas.h#L94) file of the FastLED Arduino library:
This information is accurate as of April 2024; however, it may become irrelevant in the future *(once a release is published, with support for the Renesas Arduino boards and RA6M5 Thing Plus)*. At which point, users may disregard this note and/or request for this information to be removed by [filing an issue](../github/file_issue).
376
-
377
-
378
-
379
-
!!! tip "How to Define Parameters"
380
-
While using the FastLED Arduino library, users need to define the following parameters to the **WS2812 RGB LED** included on the board. However, if additional LEDs are connected externally to the board, then the appropriate values should be provided for the Arduino library.
381
-
382
-
**`#define NUM_LEDS 1`**
383
-
: There is only one WS2812 LED on the board
384
-
385
-
**`#define DATA_PIN LED_RGB`**
386
-
: Declare which pin is connected to the WS2812 LED. On the RA6M5 Thing Plus, it is defined as `D13` or `RGB_LED` in the Arduino core for GPIO `P105`.
387
-
388
-
**`#define LED_TYPE WS2812`**
389
-
: Declare the LED type for the library; the RA6M5 Thing Plus only includes `WS2812` RGB LED on the board.
390
-
391
-
392
-
<!-- Original Instructions (adjust snippet in "software_overview-codeless" when restoring)
393
298
### WS2812 RGB LED
394
299
While users are free to choose any Arduino library that provides support for WS2812 LEDs, we recommend the [FastLED Arduino library](https://github.com/FastLED/FastLED/). It has been tested and verified to work with the RGB LED on the RA6M5 Thing Plus. The [FastLED Arduino library](https://github.com/FastLED/FastLED/) can be installed from the **Library Manager** in the Arduino IDE by searching for:
395
300
@@ -419,9 +324,20 @@ While users are free to choose any Arduino library that provides support for WS2
419
324
</div>
420
325
421
326
</div>
422
-
-->
423
327
424
328
329
+
??? tip "How to Define Parameters"
330
+
While using the FastLED Arduino library, users need to define the following parameters to the **WS2812 RGB LED** included on the board. However, if additional LEDs are connected externally to the board, then the appropriate values should be provided for the Arduino library.
331
+
332
+
**`#define NUM_LEDS 1`**
333
+
: There is only one WS2812 LED on the board
334
+
335
+
**`#define DATA_PIN LED_RGB`**
336
+
: Declare which pin is connected to the WS2812 LED. On the RA6M5 Thing Plus, it is defined as `D13` or `RGB_LED` in the Arduino core for GPIO `P105`.
337
+
338
+
**`#define LED_TYPE WS2812`**
339
+
: Declare the LED type for the library; the RA6M5 Thing Plus only includes `WS2812` RGB LED on the board.
0 commit comments