Dear,
I’m trying to sleep/wake up one xbee.
I’m using X2e Wifi, Router, 5 EP.
All S2C Pro; API2. EP are SM5 on Arduino Uno, (DTR/Xbee <–> Pin 9/Uno)
X2e sent a packet to each EP (one after one) to get data.
I’m looking for sleep one EP, and after wake to to anderstand how it’s work.
I’m trying this:
void setup(){
pinMode(XBEE_sleepPin, OUTPUT);
}
void xbeesleep() {
digitalWrite(XBEE_sleepPin,HIGH);
}
void xbeewake() {
digitalWrite(XBEE_sleepPin,LOW);
}
But there is no effect, no change: EP can receive and Send data. Why ?
Best regards.