The XBEE S2C, manufactured by Digi International (Part ID: XB24CAUIS-001), is a wireless communication module that utilizes the Zigbee protocol. This module is designed for creating mesh networks, making it an ideal choice for Internet of Things (IoT) applications. It offers reliable and low-power data transmission, which is essential for various applications such as home automation, industrial control, and remote monitoring.
Parameter | Value |
---|---|
Protocol | Zigbee |
Frequency | 2.4 GHz |
Data Rate | Up to 250 kbps |
Supply Voltage | 2.1V to 3.6V |
Transmit Current | 45 mA (typical) |
Receive Current | 31 mA (typical) |
Sleep Current | < 1 µA |
Operating Temperature | -40°C to 85°C |
Range | Up to 120 meters (indoor) |
Antenna | Integrated PCB antenna |
Pin | Name | Description |
---|---|---|
1 | VCC | Power supply (2.1V to 3.6V) |
2 | DOUT | UART Data Out |
3 | DIN/CONFIG | UART Data In / Configuration |
4 | DIO12 | Digital I/O 12 |
5 | RESET | Module Reset (Active Low) |
6 | RSSI | Received Signal Strength Indicator |
7 | PWM0 | PWM Output 0 |
8 | PWM1 | PWM Output 1 |
9 | DIO11 | Digital I/O 11 |
10 | DIO10 | Digital I/O 10 |
11 | DIO9 | Digital I/O 9 |
12 | DIO8 | Digital I/O 8 |
13 | DIO7 | Digital I/O 7 |
14 | VREF | Voltage Reference for A/D inputs |
15 | DIO6 | Digital I/O 6 |
16 | DIO5 | Digital I/O 5 |
17 | DIO4 | Digital I/O 4 |
18 | DIO3 | Digital I/O 3 |
19 | DIO2 | Digital I/O 2 |
20 | DIO1 | Digital I/O 1 |
21 | DIO0/AD0 | Digital I/O 0 / Analog Input 0 |
22 | GND | Ground |
#include <SoftwareSerial.h>
// Define RX and TX pins for SoftwareSerial
SoftwareSerial XBee(2, 3); // RX, TX
void setup() {
// Start the hardware serial communication
Serial.begin(9600);
// Start the software serial communication
XBee.begin(9600);
}
void loop() {
if (XBee.available()) {
// Read data from XBee and send it to Serial Monitor
char data = XBee.read();
Serial.print(data);
}
if (Serial.available()) {
// Read data from Serial Monitor and send it to XBee
char data = Serial.read();
XBee.print(data);
}
}
No Communication Between Modules:
Weak Signal Strength:
Module Not Responding:
By following this documentation, users can effectively integrate the XBEE S2C module into their projects, ensuring reliable and efficient wireless communication.