File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
content/hardware/05.pro-solutions/solutions-and-kits/edge-control/tutorials/user-manual Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -963,9 +963,19 @@ void loop()
963
963
964
964
The Edge Control let you manage the power state of several internal components, so energy efficient applications could be achieved using this board.
965
965
966
+ To power on or off a power rail the `Power.on(<rail>)` and `Power.off(<rail>)` function is used.
967
+
966
968
The different commands and controllable power rails will be specified in the list below:
967
969
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
+ ```
968
977
978
+ ** Every power rail from above can be turned off using the ` Power.off(<rail>) ` function.**
969
979
970
980
## Edge Control Enclosure Kit
971
981
You can’t perform that action at this time.
0 commit comments