Power 05: I/O power supply
This example shows how to set up the power supply lines in the Waspmote I/O sockets
Required Materials
1 x Waspmote 1 x MiniUSB wire 1 x Battery
Notes
This example can be executed in Waspmote v12 and Waspmote v15
Code
/*
* ------ [PWR_5] - I/O Power Supply management --------
*
* Explanation: This example shows how to set up the power supply lines
* in the Waspmote I/O sockets
*
* Copyright (C) 2016 Libelium Comunicaciones Distribuidas S.L.
* http://www.libelium.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*
* Version: 3.0
* Design: David Gascon
* Implementation: Yuri Carmona
*/
void setup()
{
USB.ON();
USB.println(F("PWR_5 example"));
}
void loop()
{
///////////////////////////////////////////////////////
// 1. switch on
///////////////////////////////////////////////////////
USB.println(F("Switch on power supply lines"));
PWR.setSensorPower(SENS_3V3, SENS_ON);
PWR.setSensorPower(SENS_5V, SENS_ON);
// delay 10 secs
delay(10000);
///////////////////////////////////////////////////////
// 2. switch off
///////////////////////////////////////////////////////
USB.println(F("Switch off power supply lines"));
PWR.setSensorPower(SENS_3V3, SENS_OFF);
PWR.setSensorPower(SENS_5V, SENS_OFF);
// delay 10 secs
delay(10000);
}
Output
H#
PWR_5 example
Switch on power supply lines
Switch off power supply lines
Switch on power supply lines
Switch off power supply lines
Last updated