From f76141853f671717532db7ccb9527cca6d3d15f9 Mon Sep 17 00:00:00 2001 From: Hannes Siebeneicher Date: Tue, 23 Jan 2024 13:41:29 +0100 Subject: [PATCH 1/2] Update cheat-sheet.md --- .../boards/uno-r4-minima/tutorials/cheat-sheet/cheat-sheet.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/hardware/02.hero/boards/uno-r4-minima/tutorials/cheat-sheet/cheat-sheet.md b/content/hardware/02.hero/boards/uno-r4-minima/tutorials/cheat-sheet/cheat-sheet.md index c661c665ef..cad7af15fc 100644 --- a/content/hardware/02.hero/boards/uno-r4-minima/tutorials/cheat-sheet/cheat-sheet.md +++ b/content/hardware/02.hero/boards/uno-r4-minima/tutorials/cheat-sheet/cheat-sheet.md @@ -209,8 +209,8 @@ The reference voltage of all digital pins is 5 V. The UNO R4 Minima has a total of four LEDs, three of which are programmable: - **ON** - power LED, cannot be programmed. - `LED_BUILTIN` - classic "built-in LED", attached to pin 13. -- `RX_LED` - LED labelled "RX" on the board. -- `TX_LED` - LED labelled "TX" on the board. +- `LED_RX` - LED labelled "RX" on the board. +- `LED_TX` - LED labelled "TX" on the board. To control these, define them as outputs and write desired state. The below example blinks each LED every second. From b5cf9d59d94e820bd648236576308f68992de7c9 Mon Sep 17 00:00:00 2001 From: Hannes Siebeneicher Date: Tue, 23 Jan 2024 13:44:26 +0100 Subject: [PATCH 2/2] Update cheat-sheet.md --- .../boards/uno-r4-minima/tutorials/cheat-sheet/cheat-sheet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/hardware/02.hero/boards/uno-r4-minima/tutorials/cheat-sheet/cheat-sheet.md b/content/hardware/02.hero/boards/uno-r4-minima/tutorials/cheat-sheet/cheat-sheet.md index cad7af15fc..8e54837202 100644 --- a/content/hardware/02.hero/boards/uno-r4-minima/tutorials/cheat-sheet/cheat-sheet.md +++ b/content/hardware/02.hero/boards/uno-r4-minima/tutorials/cheat-sheet/cheat-sheet.md @@ -212,7 +212,7 @@ The UNO R4 Minima has a total of four LEDs, three of which are programmable: - `LED_RX` - LED labelled "RX" on the board. - `LED_TX` - LED labelled "TX" on the board. -To control these, define them as outputs and write desired state. The below example blinks each LED every second. +To control these, define them as outputs and write the desired state. The below example blinks each LED every second. ```arduino void setup(){