-
Sara Damiano replied to the topic XBee Networks of Mayfly Loggers – 900Mhz in the forum Mayfly Data Logger 5 years, 5 months ago
@jkirchoff – drive the pin level with the digitalWrite(#, level) function.
If you’re using a Mayfly, the XBee’s sleep request pin is attached to the Mayfly pin 23. So to wake the bee, send data, and put it to sleep all you needs is:
digitalWrite(23, HIGH);
Serial1.print(“some text);
// more print statements as desired
digitalWrite(23, LOW);Use…[Read more]