Skip to content

Commit 0633987

Browse files
committed
User Manual writing commit 20
1 parent 0b6adef commit 0633987

File tree

1 file changed

+10
-0
lines changed
  • content/hardware/05.pro-solutions/solutions-and-kits/edge-control/tutorials/user-manual

1 file changed

+10
-0
lines changed

content/hardware/05.pro-solutions/solutions-and-kits/edge-control/tutorials/user-manual/content.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -963,9 +963,19 @@ void loop()
963963
964964
The Edge Control let you manage the power state of several internal components, so energy efficient applications could be achieved using this board.
965965
966+
To power on or off a power rail the `Power.on(<rail>)` and `Power.off(<rail>)` function is used.
967+
966968
The different commands and controllable power rails will be specified in the list below:
967969
970+
```cpp
971+
Power.on(PWR_VBAT); // turns on the 12V power rails for the "Latching Outputs"
972+
Power.on(PWR_3V3); // turns on the 3.3V power rail for the micro SD Card (default ON)
973+
Power.on(PWR_19V); // turns on the 19V power rail for the 4-20mA sensors reference
974+
Power.on(PWR_MKR1); // turns on the MKR board connected to slot 1
975+
Power.on(PWR_MKR2); // turns on the MKR board connected to slot 2
976+
```
968977

978+
**Every power rail from above can be turned off using the `Power.off(<rail>)` function.**
969979

970980
## Edge Control Enclosure Kit
971981

0 commit comments

Comments
 (0)