Skip to content

Commit ac97c12

Browse files
authored
Merge pull request #1608 from arduino/karlsoderby/giga-d7-note
[GIGA R1 WiFi] Note on D7
2 parents 46c22a8 + 0ae7d60 commit ac97c12

File tree

1 file changed

+11
-0
lines changed
  • content/hardware/10.mega/boards/giga-r1-wifi/tutorials/cheat-sheet

1 file changed

+11
-0
lines changed

content/hardware/10.mega/boards/giga-r1-wifi/tutorials/cheat-sheet/cheat-sheet.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -974,6 +974,17 @@ The reference voltage of all digital pins is 3.3V.
974974

975975
The logic for `LED_BUILTIN` is reversed if compared to the behavior of, for example, the **Arduino UNO** board. What this means is that if you write HIGH to `LED_BUILTIN`, the LED will turn off, and on respectively if you write LOW.
976976

977+
#### D7 Pin
978+
979+
By default, the digital pin 7 (D7) provides a voltage of ~1.65 V.
980+
981+
To disable this pin, you need to configure it as an output and set it to a `LOW` state.
982+
983+
```arduino
984+
pinMode(7, OUTPUT);
985+
digitalWrite(7, LOW);
986+
```
987+
977988
### DAC Pins
978989

979990
The **GIGA R1** also has two DAC pins, A12 & A13, that can act as genuine analog output pins which means they are even more capable than PWM pins.

0 commit comments

Comments
 (0)