802 10: Set low power mode

This program shows how to set different low power states in XBee-802.15.4 modules * Pin Hibernate (SM = 1): XBee is put to sleep and is wake up by setting a pin high and low * Pin Hibernate (SM = 2): The same as before, but more consumption and faster wake up

Required Materials

1 x Waspmote PRO 1 x Battery 1 x MiniUSB wire 1 x XBee-802.15.4 module

Notes

- The battery has to be connected. - This example can be executed in Waspmote v12 and Waspmote v15

Code

/*  
 *  ------ [802_10] - set low power state in XBee module  -------- 
 *  
 *  Explanation: This program shows how to set different low power states 
 *  in XBee-802.15.4 modules
 *   Pin Hibernate (SM = 1):  XBee is put to sleep and is wake up by setting 
 *                            a pin high and low
 *   Pin Hibernate (SM = 2):  The same as before, but more consumption and faster
 *                            wake up 
 *
 *  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 Gascón 
 *  Implementation:    Yuri Carmona
 */

#include 


void setup()
{  
  // init USB port
  USB.ON();
  USB.println(F("Sleep mode example"));  


  // switch on the XBee module
  xbee802.ON(); 
  
  // enable awake mode before managing the module
  // this is done to make sure the module is not in
  // sleep mode when we try to manage it
  xbee802.wake();    
  
  // set sleep mode
  xbee802.setSleepMode(1); 
  
  // check flag
  if( xbee802.error_AT == 0 )
  {
    USB.println(F("sleep mode set"));
  }
  else
  {
    USB.println(F("Error while setting sleep mode")); 
  }
  USB.println();
  
}


void loop()
{
  ////////////////////////////////////
  // 1. Set sleep mode
  ////////////////////////////////////
    
  // 1.1. put XBee to sleep
  xbee802.sleep();  
  USB.println(F("1. XBee in sleep mode"));
  
  // 1.2. set red LED during sleep time 
  USB.println(F("RED LED switched on"));
  Utils.setLED(LED0, LED_ON);
  
  // 1.3. wait 20 seconds in sleep mode  
  USB.println(F("While XBee is in sleep mode --> wait for 20 seconds...\n"));
  delay(20000);  


  ////////////////////////////////////
  // 2. Wake up the XBee module
  ////////////////////////////////////
  
  // 2.1. wake XBee up
  xbee802.wake();  
  USB.println(F("2. XBee wakes-up"));  
  
  // 2.2. switch LED off when leaving sleep mode
  USB.println(F("RED LED switched off"));
  Utils.setLED(LED0, LED_OFF);
 
  // 2.3. wait 5 seconds
  USB.println(F("While XBee is in normal mode --> wait for 5 seconds...\n"));
  delay(5000);
}

Output

H#
 Sleep mode example
 sleep mode set


 1. XBee in sleep mode
 RED LED switched on
 While XBee is in sleep mode --> wait for 20 seconds...


 2. XBee wakes-up
 RED LED switched off
 While XBee is in normal mode --> wait for 5 seconds...
 ...

Last updated