This program shows how to set RTC time from Meshlium settings
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_16] - send packets -------- * * Explanation: This program shows how to set RTC time from Meshlium * settings * * 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// Destination MAC address//////////////////////////////////////////char MESHLIUM_ADDRESS[]="0013A200409E1346"; //////////////////////////////////////////// define variableuint8_t error;voidsetup(){// init USB portUSB.ON();USB.println(F("Setting RTC time from Meshlium settings"));// init RTC RTC.ON();// init XBeexbee802.ON();}voidloop(){ // set RTC time error =xbee802.setRTCfromMeshlium(MESHLIUM_ADDRESS);// check flagif( error ==0 ) {USB.print(F("SET RTC ok. ")); }else {USB.print(F("SET RTC error. ")); } USB.print(F("RTC Time:"));USB.println(RTC.getTime());delay(5000);}